:root {
    --primary: #FED41D;
    --primary-dark: #e5bf1a;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: rgba(0, 0, 0, 0.85);
    --header-height: 80px;
    --font-main: 'Oswald', sans-serif;
    --font-alt: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    --card-bg: #111111;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.accent-text {
    color: var(--primary);
}

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

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: var(--dark-bg);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo img {
    height: 50px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

/* Nav */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-list a {
    color: rgba(255, 255, 255, 0.85);
    /* Greyish white tint */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-list a:hover {
    color: var(--primary);
}

.nav-list a:hover::after {
    width: 100%;
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-header {
    background: var(--primary);
    color: var(--black);
    font-size: 0.9rem;
}

.btn-header:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.85);
    /* Matching header greyish tint */
    border-radius: 3px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-side-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
    z-index: 5;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero.show-content .hero-side-overlay {
    opacity: 1;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100%;
    padding-left: 200px;
    /* Restored preferred 200px padding */
}

.hero-content {
    max-width: 600px;
    z-index: 10;
    text-align: left;
    margin-top: 60px; /* Shifts content slightly lower */
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom:
        1.5rem;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(
        to right,
        var(--primary) 20%,
        #fff09e 50%, /* Bright glow version of primary */
        var(--primary) 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite; /* Slower, more elegant sweep */
    text-shadow: none;
}

.hero-subtitle {
    font-size:
        1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-trust {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 2rem 0;
}

.mobile-nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
}

.mobile-nav-list .mobile-cta {
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* --- Animations --- */

/* Page Load Cascade */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay);
}

.animate-on-load.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Elements Animation */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay);
}

.hero.show-content .animate-hero {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .btn-header {
        display: none;
        /* Hide top CTA on mobile, keep it in burger menu */
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-container {
        padding-left: 40px;
    }

    .hero-content {
        max-width: 80%;
    }

    .hero-video {
        object-position: 75% center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-container {
        padding-left: 20px;
    }

    .hero-content {
        max-width: 95%;
    }

    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* --- Why Choose Us Section --- */
.why-section {
    padding: 100px 0; /* Added bottom padding for space between sections */
    background-color: var(--black);
    font-family: var(--font-alt);
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.section-title .accent-text {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--card-bg);
    padding: 32px 24px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(254, 212, 29, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(254, 212, 29, 0.05);
}

.card-icon {
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card:hover .card-icon {
    transform: scale(1.15);
}

.card-icon i {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Responsive Why Section */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-section {
        padding: 60px 0; /* Added bottom padding for mobile */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .why-card {
        padding: 24px;
    }
}

/* --- Services Section --- */
.services-section {
    padding: 70px 0 100px 0;
    background-color: #0a0a0a; /* Subtle grey to distinguish from other black sections */
    font-family: var(--font-alt);
    overflow: hidden; /* Added to prevent horizontal overflow */
}

.services-header-container {
    margin-bottom: 60px;
}

.services-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.service-panel {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.service-panel.clone {
    display: none; /* Hide clones on desktop */
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    transition: var(--transition);
    z-index: 1;
}

.service-panel:hover .panel-overlay,
.service-panel.active .panel-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.panel-vertical-text {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 5;
    transition: var(--transition);
    white-space: nowrap;
}

.service-panel:hover .panel-vertical-text,
.service-panel.active .panel-vertical-text {
    color: var(--primary);
    opacity: 0; /* Hide vertical text when active to show full content */
    transform: translateY(-50%) rotate(-180deg) translateX(-20px);
}

.panel-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.service-panel:hover .panel-content,
.service-panel.active .panel-content {
    opacity: 1;
    transform: translateY(0);
}

.service-panel:hover,
.service-panel.active {
    flex: 3;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.panel-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

/* Mobile Swipe Indicator */
.mobile-swipe-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
    color: var(--primary);
    font-weight: 600;
}

.arrow-wrapper {
    display: flex;
    align-items: center;
    animation: bounceRight 1.5s infinite ease-in-out;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-container {
        height: 70vh;
    }
    
    .panel-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0 0 0;
    }
    
    .services-container {
        display: flex;
        width: 100vw;
        max-width: none;
        overflow-x: auto !important;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 0 16px;
        height: auto;
        min-height: 500px;
        border-radius: 0;
    }
    
    .services-container::-webkit-scrollbar {
        display: none;
    }
    
    .service-panel,
    .service-panel.active {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
        border-radius: 20px;
        transition: none;
        padding: 30px 20px;
        display: flex; /* Ensure panels are visible on mobile */
    }

    .service-panel.clone {
        display: flex; /* Show clones on mobile */
    }

    .service-panel:hover {
        flex: 0 0 100%;
    }
    
    .panel-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .panel-content {
        opacity: 1;
        transform: none;
    }

    .panel-vertical-text {
        display: none;
    }
    
    .mobile-swipe-indicator {
        display: flex;
    }
    
    .panel-title {
        font-size: 1.75rem;
    }
}

/* --- How It Works Section --- */
.how-section {
    padding: 100px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.how-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: 2px;
    color: var(--white);
    font-family: var(--font-main);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.step-box {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    background-color: var(--card-bg);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    margin-bottom: 24px;
}

.how-step.active .step-box {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    box-shadow: 0 0 40px rgba(254, 212, 29, 0.25);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-main);
}

.step-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 250px;
    font-family: var(--font-alt);
}

/* Connector Line */
.how-line {
    position: absolute;
    top: 32px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .how-section {
        padding: 50px 0 70px 0;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .how-line {
        display: none;
    }

    .how-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-box {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 100px 0 0 0;
    background-color: var(--black);
    font-family: var(--font-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Column: Callout Cards */
.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.callout-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.callout-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(254, 212, 29, 0.05);
    border-color: rgba(254, 212, 29, 0.2);
}

.callout-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.callout-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.callout-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.callout-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    font-style: italic;
}

/* Right Column: Main Pricing Card */
.main-pricing-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(254, 212, 29, 0.08);
    border-color: rgba(254, 212, 29, 0.3);
}

.main-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    font-family: var(--font-alt);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.price-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.item-name {
    font-size: 1.05rem;
    color: var(--white);
    white-space: nowrap;
}

.item-separator {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 0 12px;
    height: 1px;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.main-card-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
    width: 100%;
}

.main-card-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(254, 212, 29, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 24px; /* Added margin for CTA */
}

.pricing-cta {
    display: inline-flex;
    justify-content: center;
    width: auto;
    border-radius: 40px;
    margin-top: 32px; /* Increased margin for the left column layout */
    padding: 18px 40px;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0 0 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-pricing-card {
        padding: 32px 24px;
    }

    .main-card-title {
        font-size: 1.5rem;
    }

    .item-name {
        font-size: 0.95rem;
    }
}

/* --- Service Area Section --- */
.area-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: var(--font-main);
}

.area-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    font-family: var(--font-alt);
}

.district-list-container {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.district-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.district-list li {
    font-size: 1.05rem;
    color: var(--white);
    position: relative;
    padding-left: 20px;
    font-family: var(--font-alt);
}

.district-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.area-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(254, 212, 29, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    max-width: 500px;
}

.area-note i {
    color: var(--primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.area-note p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-family: var(--font-alt);
}

.area-map-container {
    position: relative;
}

.map-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.map-card:hover {
    transform: scale(1.02);
}

.map-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .area-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .area-map-container {
        order: 2;
    }
    
    .area-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .area-section {
        padding: 60px 0;
    }
    
    .area-title {
        font-size: 2rem;
    }
    
    .district-list-container {
        gap: 40px;
    }
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 100px 0;
    background-color: var(--black);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background: #111111;
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none; /* Removes link underline */
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 212, 29, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(254, 212, 29, 0.05);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    font-family: var(--font-main);
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    font-family: var(--font-alt);
}

.recommend-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.recommend-badge i {
    width: 14px;
    height: 14px;
}

.review-text {
    font-family: var(--font-alt);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- FAQ (DUK) Section --- */
.faq-section {
    padding: 100px 0 0 0;
    background-color: var(--black);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #111;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    background-color: #161616;
    border-color: rgba(254, 212, 29, 0.1);
    box-shadow: 0 0 30px rgba(254, 212, 29, 0.03);
}

.faq-header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    padding-right: 20px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 24px 24px 24px;
}

.faq-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: var(--font-alt);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 0 0;
    }
    
    .faq-header {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 20px 20px 20px;
    }
}

/* --- Final CTA Section --- */
.final-cta {
    padding: 120px 0;
    background-color: var(--black);
    border-top: 1px solid rgba(254, 212, 29, 0.05);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: var(--font-main);
    text-align: center;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.5;
    font-family: var(--font-alt);
    text-align: center;
}

.final-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-left {
    justify-self: start;
}

.footer-logo img {
    height: 60px; /* Larger logo */
    width: auto;
    display: block; /* Removes baseline gap */
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

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

.footer-nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-alt);
}

.footer-nav-list a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-alt);
}

.footer-right {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.social-icon-link {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link i {
    width: 22px;
    height: 22px;
    transition: var(--transition);
}

.social-icon-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.created-by {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-alt);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.created-by a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.created-by a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-left, .footer-center, .footer-right {
        justify-self: center;
        align-self: center;
    }

    .footer-right {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 110px; /* Even larger logo for mobile */
    }

    .footer-nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 30px;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: row; /* Keep them together as requested */
        justify-content: space-between;
        align-items: center;
        font-size: 0.75rem; /* Smaller text to fit in one row */
    }

    .created-by, .copyright {
        font-size: 0.75rem;
    }

    .footer-socials {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* --- Footer Visibility Helpers --- */
@media (min-width: 993px) {
    .mobile-only {
        display: none !important;
    }
}
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}