/* ============================
   Openshield Modern Website
   Color Theme:
   Primary: #e74c3c (Red)
   Dark: #222222
   Text: #333333 / #666666
   Light BG: #f7f7f7
   ============================ */

:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --dark: #222222;
    --text: #333333;
    --text-light: #666666;
    --light-bg: #f7f7f7;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-info span {
    margin-right: 20px;
    opacity: 0.9;
}

.top-info i {
    color: var(--primary);
    margin-right: 5px;
}

.top-social a {
    color: var(--white);
    margin-left: 12px;
    transition: var(--transition);
}

.top-social a:hover { color: var(--primary); }

/* Header & Nav */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    min-width: 240px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.08;
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.bg-light { background: var(--light-bg); }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card .card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .card-body {
    padding: 24px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-card .read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card .read-more i {
    margin-left: 4px;
    transition: var(--transition);
}

.service-card .read-more:hover i {
    transform: translateX(4px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.vm-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.vm-card p {
    color: var(--text-light);
}

/* Catalogues */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.catalogue-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.catalogue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.catalogue-card .pdf-icon {
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.catalogue-card .pdf-icon i {
    font-size: 4rem;
    margin-bottom: 10px;
}

.catalogue-card .pdf-icon span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalogue-card .card-body {
    padding: 24px;
}

.catalogue-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.catalogue-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* PDF Viewer */
.pdf-viewer-container {
    background: var(--dark);
    min-height: 100vh;
    padding: 20px 0;
}

.pdf-viewer-header {
    background: var(--white);
    padding: 16px 0;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.pdf-viewer-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-viewer-header h2 {
    font-size: 1.2rem;
    color: var(--dark);
}

.pdf-frame {
    width: 100%;
    height: 85vh;
    border: none;
    border-radius: var(--radius);
    background: var(--white);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-location {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.contact-location:last-child {
    border-bottom: none;
}

.contact-location h3 {
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-list i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 134, 60, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.map-container {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.service-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: fit-content;
}

.service-sidebar h3 {
    background: var(--dark);
    color: var(--white);
    padding: 18px 24px;
    font-size: 1.1rem;
}

.service-sidebar ul {
    list-style: none;
}

.service-sidebar li a {
    display: block;
    padding: 14px 24px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    font-size: 0.95rem;
}

.service-sidebar li a:hover,
.service-sidebar li a.active {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 28px;
}

.service-main h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-main p {
    color: var(--text-light);
    margin-bottom: 16px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-banner .btn-dark {
    background: var(--dark);
    color: var(--white);
}

.cta-banner .btn-dark:hover {
    background: var(--white);
    color: var(--dark);
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-logo {
    height: 50px;
    margin-top: 20px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Admin Styles */
.admin-body {
    background: #f0f2f5;
    font-family: 'Inter', sans-serif;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 30px 0;
    overflow-y: auto;
}

.admin-sidebar .logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.admin-sidebar .logo h2 {
    font-size: 1.3rem;
    color: var(--primary);
}

.admin-sidebar .logo span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.admin-nav li a i {
    width: 24px;
    margin-right: 8px;
}

.admin-main {
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.admin-header h1 {
    font-size: 1.6rem;
    color: var(--dark);
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    font-size: 0.95rem;
}

.admin-table tr:hover td {
    background: var(--light-bg);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-primary { background: rgba(225, 134, 60, 0.15); color: var(--primary); }

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-danger {
    background: #dc3545;
    color: var(--white);
}

.btn-danger:hover { background: #c82333; }

.btn-success {
    background: #28a745;
    color: var(--white);
}

.btn-success:hover { background: #218838; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 134, 60, 0.1);
    border-radius: 10px;
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
}

.stat-card span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
}

.login-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 420px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 8px;
    color: var(--dark);
}

.login-box p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ============================
   MODERN RESPONSIVE DESIGN
   ============================ */

/* Tablet adjustments */
@media (max-width: 992px) {
    .hero-inner,
    .about-grid,
    .contact-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero { padding: 100px 0 80px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-image { order: -1; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar { order: 2; }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .admin-main {
        margin-left: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Top Bar - Clean stacked layout */
    .top-bar {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .top-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
        width: 100%;
    }
    
    .top-info span {
        margin-right: 0;
        white-space: nowrap;
    }
    
    .top-social {
        display: none; /* Hide social on mobile to save space */
    }
    
    /* Header & Nav */
    .navbar {
        height: 64px;
    }
    
    .logo img {
        height: 44px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 70px 24px 24px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: var(--transition);
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }
    
    .nav-menu a::after { display: none; }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2.5px;
        background: var(--dark);
        border-radius: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .dropdown > a i {
        float: right;
        margin-top: 4px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 8px 16px;
        min-width: auto;
        background: transparent;
    }
    
    .dropdown.active .dropdown-menu { display: block; }
    
    .dropdown-menu li { border: none; }
    
    .dropdown-menu a {
        padding: 10px 0;
        font-size: 0.9rem;
        color: var(--text-light);
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 50px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        display: none; /* Hide hero image on small mobile to focus on text */
    }
    
    /* Sections */
    .section { padding: 50px 0; }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card .card-image {
        height: 160px;
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    /* VM Cards */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vm-card {
        padding: 28px 24px;
    }
    
    /* Catalogues */
    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalogue-card .pdf-icon {
        height: 180px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    .contact-location {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .map-container iframe {
        height: 280px;
    }
    
    /* Service Detail */
    .service-main h1 {
        font-size: 1.6rem;
    }
    
    .service-sidebar h3 {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .service-sidebar li a {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    /* CTA Banner */
    .cta-banner {
        padding: 50px 20px;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h3 {
        margin-bottom: 14px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    
    /* Admin */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .login-box {
        padding: 32px 24px;
        margin: 20px;
    }
    
    .admin-card {
        padding: 18px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .top-info {
        flex-direction: column;
        gap: 4px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
}
