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

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
body {
    font-family: "Poppins", sans-serif;
    background-color: #000000;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
    background-color: transparent;
    z-index: 1000;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 50;
}

.logo img {
    height: 5vh;
}

/* New right-side container for navigation and button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between nav links and button */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between individual links */
}

/* Enhanced premium navigation links with gold theme */
.nav-links a {
    color: #fff;
    text-decoration: none;
    /* margin: 0 20px; */
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #EDC568;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
    box-shadow: 0 0 8px rgba(237, 197, 104, 0.6);
}

/* Premium gradient contact button */
.contact-btn {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    text-transform: uppercase;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    animation: shimmer 2s infinite;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:active {
    transform: translateY(0) scale(1.02);
}

@keyframes shimmer {
    0%, 100% { background-position: left center; }
    50% { background-position: right center; }
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

/* CSS-only hover support as fallback */
.dropdown-container:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-container:hover .dropdown-button {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.15);
}

.dropdown-container:hover .dropdown-button::before {
    width: 100%;
}

.dropdown-container:hover .dropdown-button .arrow-icon {
    transform: rotate(-180deg);
}

/* Dropdown button premium styling */
.dropdown-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.dropdown-button:hover {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.1);
    transform: translateY(-2px);
}

.dropdown-button:hover::before {
    width: 100%;
    box-shadow: 0 0 8px rgba(237, 197, 104, 0.6);
}

.dropdown-button.active {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.15);
}

.dropdown-button.active::before {
    width: 100%;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.dropdown-button.active .arrow-icon {
    transform: rotate(-180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content a {
    color: white !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* Hero Banner Section */
.products-hero {
    width: 100%;
    height: 400px;
    background-image: url('./assets/service.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 120px;
    color: white;
}

.breadcrumb p {
    font-size: 18px;
    margin-bottom: 10px;
}

.breadcrumb h1 {
    font-size: 48px;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #000000;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.service-card {
    flex: 0 0 calc(16.66% - 20px);
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3), 0 2px 8px rgba(255,215,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    cursor: pointer;
    border: 2px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #B08D57);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,215,0,0.25), 0 5px 15px rgba(0,0,0,0.4);
    border-color: #FFD700;
}

.service-card:hover::before {
    opacity: 0.15;
}

.service-card.active {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    border-color: #FFD700;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255,215,0,0.3), 0 8px 20px rgba(0,0,0,0.5);
}

.service-card.active::before {
    opacity: 0.3;
}

.service-card.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #FFD700;
}

.service-card i {
    font-size: 80px;
    margin-bottom: 15px;
    color: #FFFFFF;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(255,255,255,0.2);
    display: block;
    width: 100%;
    height: 80px;
    line-height: 80px;
    z-index: 2;
    position: relative;
}

.service-card:hover i {
    filter: brightness(0) saturate(100%) invert(77%) sepia(58%) saturate(348%) hue-rotate(12deg) brightness(101%) contrast(101%);
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

.service-card.active i {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    color: #000000;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin: 0;
}

.service-card.active h3 {
    color: #000000;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Rental Returns Section - Updated Layout */
.rental-returns-section {
    padding: 60px 0;
    background-color: #000000;
}

.rental-returns-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section intro with heading and description */
.section-intro {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-intro p {
    font-size: 20px;
    color: #CCCCCC;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Content row with image and text */
.content-row {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 80px;
}

.row-image {
    flex: 0 0 45%;
    max-width: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.row-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: fill;
    border-radius: 15px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 20px;
}

.row-content {
    flex: 0 0 55%;
    background-color: transparent;
    padding: 40px 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row-content h3 {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.row-content p {
    font-size: 18px;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.row-content p:last-child {
    margin-bottom: 0;
}

/* Enhanced benefits list styling */
.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefits-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #FFB800;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 50%;
    border: 2px solid #FFB800;
}

.benefits-list li:hover {
    transform: translateX(5px);
    color: #FFB800;
}

.benefits-list li b {
    color: #FFFFFF;
    font-weight: 600;
}

/* Media Queries */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 60px;
    }
    
    .hero-content {
        padding: 0 60px;
    }
    
    .service-card {
        flex: 0 0 calc(33.33% - 20px);
    }
    
    .row-content {
        padding: 25px;
    }
}

@media (max-width: 1200px) {
    .section-intro h2 {
        font-size: 36px;
    }
    
    .row-content h3 {
        font-size: 28px;
    }
    
    .content-row {
        gap: 40px;
        margin-top: 60px;
    }
}

@media (max-width: 992px) {
    .content-row {
        flex-direction: column;
        gap: 50px;
        margin-top: 50px;
    }
    
    .row-image, .row-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .row-image {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .section-intro h2 {
        font-size: 32px;
    }
    
    .section-intro p {
        font-size: 18px;
    }
    
    .row-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .row-content h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .benefits-list {
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .nav-right {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        gap: 0;
        z-index: 49;
    }

    .nav-right.active {
        left: 0;
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-btn {
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dropdown adjustments for mobile */
    .dropdown-container {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 1;
        visibility: visible;
        border: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-content.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-button {
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content a {
        padding: 10px 20px;
        text-align: center;
        color: white !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .breadcrumb h1 {
        font-size: 36px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .rental-returns-container {
        padding: 0 20px;
    }
    
    .section-intro {
        margin-bottom: 40px;
    }
    
    .section-intro h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .section-intro p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .content-row {
        margin-top: 40px;
        gap: 40px;
    }
    
    .row-content h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .benefits-list li {
        padding-left: 40px;
        margin-bottom: 18px;
        font-size: 16px;
    }
    
    .benefits-list li:before {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }
    
    .row-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 0 0 100%;
    }
    
    .rental-returns-container {
        padding: 0 15px;
    }
    
    .section-intro h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .section-intro p {
        font-size: 15px;
    }
    
    .row-content {
        padding: 15px 0;
    }
    
    .row-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .benefits-list li {
        padding-left: 35px;
        margin-bottom: 15px;
        font-size: 15px;
    }
    
    .benefits-list li:before {
        font-size: 14px;
        width: 22px;
        height: 22px;
    }
    
    .row-image {
        max-width: 350px;
    }
    
    .content-row {
        gap: 30px;
        margin-top: 30px;
    }
}

/* Footer Styles - Updated with dark theme */
.main-footer {
    background-color: #1a1a1a;
    color: white;
    font-weight: 600;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.footer-logo img {
    max-width: 300px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .footer-logo img {
        max-width: 180px;
    }
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex: 1;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-5px);
}

.footer-address {
    max-width: 320px;
    text-align: right;
}

.footer-address a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.footer-address a:hover {
    color: #FFD700;
}

.footer-address a:hover i {
    color: #fff;
}

.footer-address i {
    font-size: 16px;
    margin-top: 5px;
    color: #FFD700;
    transition: color 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.social-icon:hover {
    color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(176, 141, 87, 0.2));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-info {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    color: white;
    font-size: 14px;
}

.dot-separator {
    margin: 0 10px;
}

.copyright {
    margin-left: auto;
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 40px;
        align-items: center;
    }

    .footer-nav .social-icons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .copyright {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 15px;
    }
    
    .dot-separator {
        display: none;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 197, 104, 0.02) 0%, rgba(194, 155, 60, 0.02) 100%);
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #EDC568 0%, #C29B3C 100%);
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: #CCCCCC;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(40, 40, 40, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(237, 197, 104, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 197, 104, 0.1);
}

.faq-item.active {
    border-color: #EDC568;
    box-shadow: 0 8px 30px rgba(237, 197, 104, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(237, 197, 104, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: #EDC568;
}

.faq-item.active .faq-question h3 {
    color: #EDC568;
}

.faq-icon {
    font-size: 16px;
    color: #EDC568;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.3);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

/* Active state animations */
.faq-item.active .faq-answer {
    animation: fadeInContent 0.4s ease-in-out 0.2s both;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .faq-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 17px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
        padding-top: 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-icon {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        padding-top: 18px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .faq-content {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-underline {
        width: 60px;
        height: 3px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .faq-answer p {
        padding: 0 18px 15px 18px;
        padding-top: 15px;
        font-size: 13px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #1A1A1A;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
    }
    
.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #EDC568;
}

.modal .book-visit-form {
    background: none;
    padding: 0;
}

.modal .book-visit-form h3 {
    color: #EDC568;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

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

.modal .form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.modal .form-group input:focus {
    outline: none;
    border-color: #EDC568;
}

.modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal .submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #EDC568;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal .submit-btn:hover {
    background-color: #C29B3C;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal .book-visit-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Premium Sticky Header Functionality */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
    background-color: transparent;
    z-index: 1000;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sticky header states */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 120px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(237, 197, 104, 0.2);
}

.navbar.sticky-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.sticky-visible {
    transform: translateY(0);
    opacity: 1;
    animation: slideDownFade 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth slide down animation */
@keyframes slideDownFade {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo scaling in sticky mode */
.navbar.sticky .logo img {
    height: 4vh;
    transition: height 0.3s ease;
}

/* Responsive sticky header */
@media (max-width: 1200px) {
    .navbar.sticky {
        padding: 12px 40px;
    }
}

@media (max-width: 992px) {
    .navbar.sticky {
        padding: 12px 20px;
    }
    
    .navbar.sticky .logo img {
        height: 3.5vh;
    }
}

@media (max-width: 768px) {
    .navbar.sticky {
        padding: 10px 20px;
    }
    
    .navbar.sticky .logo img {
        height: 3vh;
    }
} 