/*
Theme Name: Service AC
Theme URI: serviceacindramayu.com
Author: Your Name
Author URI: https://www.facebook.com/mandala.admaja
Description: A clean and modern WordPress theme for AC service businesses with side navigation drawer.
Version: 1.1
Tags: one-column, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready, side-navigation
Text Domain: sarana-service-ac
*/

:root {
    --primary-color: #007040; /* Hijau tua */
    --secondary-color: #1a1a1a; /* Hitam */
    --accent-color: #009944; /* Hijau terang */
    --text-dark: #333333;
    --text-light: #6b7280;
    --bg-light: #f5f5f5; /* Abu-abu terang */
    --success-color: #009944; /* Hijau terang untuk tombol sukses */
    --warning-color: #d97706;
    --drawer-width: 320px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-bottom: 80px;
    overflow-x: hidden;
}

/* Header Styles with Side Navigation Drawer */
.header {
    background: var(--primary-color);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
    min-height: 60px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: white !important;
    text-decoration: none;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.navbar-brand:hover {
    color: #e0e0e0 !important;
    text-decoration: none;
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Desktop Navigation */
.desktop-nav .navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    list-style: none;
}

.desktop-nav .nav-item {
    position: relative;
}

.desktop-nav .nav-link {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link:focus {
    color: #e0e0e0 !important;
    text-decoration: none;
}

/* Dropdown for desktop */
.desktop-nav .dropdown-menu {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.desktop-nav .dropdown-item {
    color: white;
    padding: 0.5rem 1rem;
}

.desktop-nav .dropdown-item:hover {
    background: var(--accent-color);
    color: white;
}

/* Menu Toggle Button for Mobile */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 16px;
    justify-content: space-between;
}

.menu-toggle-icon span {
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Side Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--drawer-width);
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1050;
    overflow-y: auto;
    border-left: 3px solid var(--primary-color);
}

.nav-drawer.open {
    right: 0;
}

.drawer-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.drawer-brand {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

.drawer-brand:hover {
    color: #e0e0e0;
    text-decoration: none;
}

.drawer-brand i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.drawer-content {
    padding: 2rem 0;
}

.drawer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav-item {
    margin-bottom: 0.5rem;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0 25px 25px 0;
    margin-right: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drawer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
    background: linear-gradient(135deg, rgba(0, 112, 64, 0.1) 0%, rgba(0, 153, 68, 0.05) 100%);
    color: var(--primary-color);
    transform: translateX(10px);
    text-decoration: none;
}

.drawer-nav-link:hover::before,
.drawer-nav-link.active::before {
    transform: scaleY(1);
}

.drawer-nav-link i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Submenu styles */
.drawer-nav-item.has-children > .drawer-nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.drawer-nav-item.has-children.open > .drawer-nav-link::after {
    transform: rotate(180deg);
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 112, 64, 0.02);
}

.drawer-nav-item.has-children.open .drawer-submenu {
    max-height: 500px;
}

.drawer-submenu-link {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.drawer-submenu-link::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.drawer-submenu-link:hover {
    color: var(--primary-color);
    background: rgba(0, 112, 64, 0.05);
    padding-left: 4rem;
    text-decoration: none;
}

.drawer-submenu-link:hover::before {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.3);
}

/* Contact Section in Drawer */
.drawer-contact {
    margin: 2rem 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.drawer-contact h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-align: left;
}

.drawer-contact-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.drawer-contact-item:last-child {
    margin-bottom: 0;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Styles - Updated for drawer compatibility */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
    padding: 0;
    margin-top: 0;
}

.hero .container-fluid {
    padding: 0;
}

.hero-content {
    padding: 2rem 0;
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.hero-content:hover .hero-title {
    color: #1e4d72;
}

.hero-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Button Styles */
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp:focus {
    outline: 3px solid rgba(44, 90, 160, 0.3);
    outline-offset: 2px;
}

.btn-telephone {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-telephone:hover {
    background: #495057;
    border-color: #495057;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
    text-decoration: none;
}

.btn-telephone:focus {
    outline: 3px solid rgba(44, 90, 160, 0.3);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 153, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 68, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

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

.btn-secondary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.btn-secondary:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* Image Styles */
.hero-image {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    opacity: 0;
    animation: fadeInImage 1s ease-out 0.5s forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(44, 90, 160, 0.05));
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Ensure content is above background shapes */
.hero-content, .hero-image {
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Why Choose Us */
.why-choose {
    background: var(--bg-light);
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.feature-box .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Price Table */
.price-table {
    padding: 80px 0;
}

.table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
    padding: 80px 0;
}

.faq .accordion-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    border-radius: 10px !important;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.faq .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    border: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.faq .accordion-body {
    padding: 1.5rem;
    background: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

.faq .accordion-button::after {
    filter: invert(1);
}

.faq .accordion-button:not(.collapsed)::after {
    filter: invert(0);
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 112, 64, 0.25);
}

.contact-info {
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

/* CTA Section */
.cta {
    background: var(--primary-color) !important;
}

/* Styling untuk gambar di Portofolio */
.portfolio .card-img-top {
    width: 100%;
    height: auto;
    display: block;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Mobile Sticky Footer Overlay */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow-x: hidden;
}

.mobile-sticky-footer .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 5px 0;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-sticky-footer .footer-item:hover {
    text-decoration: none;
}

/* Warna spesifik untuk ikon dan teks */
.mobile-sticky-footer .footer-item:nth-child(1) {
    color: #ff9800; /* Oranye */
}
.mobile-sticky-footer .footer-item:nth-child(2) {
    color: #e0e0e0; /* Abu-abu terang */
}
.mobile-sticky-footer .footer-item:nth-child(3) {
    color: #4caf50; /* Hijau */
}
.mobile-sticky-footer .footer-item:nth-child(4) {
    color: #ef5350; /* Merah */
}

/* Responsive Design */
@media (max-width: 991.98px) {
    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show menu toggle on mobile */
    .menu-toggle {
        display: flex !important;
    }
    
    /* Hero section responsiveness */
    .hero-image {
        height: 50vh;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-whatsapp, .btn-telephone {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    /* Show desktop nav on large screens */
    .desktop-nav {
        display: flex !important;
    }
    
    /* Hide menu toggle on desktop */
    .menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .faq .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq .accordion-body {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp, .btn-telephone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Mobile drawer full width on very small screens */
@media (max-width: 480px) {
    .nav-drawer {
        width: 100vw;
        right: -100vw;
    }
    
    :root {
        --drawer-width: 100vw;
    }
    
    .drawer-header {
        padding: 1rem;
    }
    
    .drawer-brand {
        font-size: 1.1rem;
    }
    
    .drawer-contact {
        margin: 1.5rem 1rem;
        padding: 1rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .nav-drawer,
    .nav-overlay,
    .drawer-nav-link,
    .drawer-submenu,
    .menu-toggle-icon span,
    .hero-img {
        transition: none;
        animation: none;
    }
}

/* Focus styles for better accessibility */
.drawer-nav-link:focus,
.drawer-submenu-link:focus,
.drawer-close:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-drawer {
        border-left: 5px solid var(--primary-color);
    }
    
    .drawer-nav-link:hover,
    .drawer-nav-link.active {
        background: var(--primary-color);
        color: white;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .nav-drawer {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        color: #ffffff;
    }
    
    .drawer-nav-link {
        color: #e5e5e5;
    }
    
    .drawer-submenu-link {
        color: #b3b3b3;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-drawer,
    .nav-overlay,
    .mobile-sticky-footer,
    .whatsapp-float,
    .menu-toggle {
        display: none !important;
    }
    
    .hero-bg-shapes {
        display: none;
    }
    
    .hero {
        background: white !important;
    }
    
    body {
        padding-bottom: 0;
        overflow-x: visible;
    }
}

/* Animation for drawer open/close on reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .nav-drawer.open {
        animation: slideInRight 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
}

@keyframes slideInRight {
    from {
        right: -100%;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

/* Loading state for drawer content */
.drawer-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-light);
}

/* Error state for drawer */
.drawer-error {
    padding: 1.5rem;
    text-align: center;
    color: #dc3545;
    background: #f8d7da;
    margin: 1rem;
    border-radius: 8px;
}