/* --- Global Styles --- */
:root {
    --bg-color: #000000; 
    --text-primary: #ffffff;
    --text-secondary: #caced3;
    --pink-accent: #ff3399; 
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: var(--body-font);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================
   HEADER & NAVIGATION STYLES (Cleaned & Fixed)
   ========================================= */

/* --- Fixed Transparent Navigation (Desktop) --- */
header.fixed-header {
    width: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Base Header Layout */
.nav-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 45px; 
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links li a:hover { color: var(--pink-accent); }

.desktop-btn {
    display: inline-block;
}

/* --- Mobile Overlay Styles --- */
.mobile-menu-icon {
    display: none; /* Desktop-la hide aagidum */
    color: #ffffff;
    font-size: 28px; 
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden outside the screen initially */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
}

.mobile-overlay.active {
    right: 0; /* Slides in when active */
}

.close-menu-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
}

.overlay-links {
    list-style: none;
    text-align: center;
}

.overlay-links li {
    margin-bottom: 25px;
}

.overlay-links li a {
    font-family: var(--heading-font, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.overlay-links li a:hover {
    color: var(--pink-accent, #ff3399);
}

/* --- Strictly Mobile View Responsive Updates --- */
@media (max-width: 768px) {
    header.fixed-header {
        padding: 15px 0;
    }

    /* Force Nav to keep items in a ROW */
    .nav-wrapper {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Hide desktop links and button */
    .nav-links, .desktop-btn {
        display: none !important; 
    }

    /* Show hamburger icon */
    .mobile-menu-icon {
        display: block !important; 
    }

    .logo-img {
        height: 35px; 
    }
}
/* --- Hero Section Adjustment --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Fixed header irukrathala mela konjam gap kuduthurukan */
    padding: 160px 0 100px 0; 

    background-image: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.4), #000000),
        url('./Assest/background.png'); 
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hero-inner h1 {
    font-family: var(--heading-font);
    font-size: 88px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -4px;
}

.hero-inner h1 span { color: var(--pink-accent); }

.hero-inner p {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 780px;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
}

.btn {
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    border-radius: 50px;
    display: inline-block;
}

.btn-nav {
    background-color: var(--pink-accent);
    color: #ffffff;
    padding: 10px 22px;
    font-size: 14px;
}

.btn-hero { 
    background-color: var(--pink-accent);
    color: #ffffff;
    padding: 18px 45px; 
    font-size: 17px; 
    box-shadow: 0 8px 20px rgba(255, 51, 153, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 18px 40px;
    font-size: 17px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 153, 0.4);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: #fff; }

/* --- Stats Cards --- */
.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 18px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: var(--pink-accent);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.icon-svg {
    width: 24px;
    height: 24px;
}

.pink-glow { color: var(--pink-accent); }
.green-glow { color: #7cfc00; }

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Trusted Badge */
.trusted-badge {
    background: rgba(255, 51, 153, 0.1);
    color: var(--pink-accent);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 51, 153, 0.2);
}

/* --- Responsiveness --- */
@media (max-width: 900px) {
    header.fixed-header { padding: 15px 0; }
    .hero-inner h1 { font-size: 48px; letter-spacing: -2px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .stat-card { min-width: 100%; }
}
/* --- Services Section Styles --- */
.services {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.section-tag {
    display: inline-block;
    color: var(--pink-accent);
    border: 1px solid rgba(255, 51, 153, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    background: rgba(255, 51, 153, 0.05);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ccff00; /* Lime Green from your image */
    margin-bottom: 20px;
}

.section-title span {
    color: #ccff00;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* --- Replicated Service Section --- */
.services {
    padding: 80px 0;
    background-color: #050505; /* Deep Black background */
}

/* Section Typography */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title span {
    color: #ccff00; /* High Contrast Lime Green */
}

/* Card Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* The Service Card Style */
.service-card {
    background: #0f0f0f; /* Slightly lighter than BG */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border like image */
    padding: 40px;
    border-radius: 28px; /* Smooth rounded corners */
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #141414;
}

.service-card.full-width {
    grid-column: span 2;
}

/* Replicated Icon Box */
.service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Pink Icon Style */
.pink-glow {
    background: rgba(255, 51, 153, 0.08); /* Soft pink tint */
    color: #ff3399;
}

/* Green Icon Style */
.green-glow {
    background: rgba(46, 213, 115, 0.08); /* Soft green tint */
    color: #2ed573;
}

.icon-svg {
    width: 26px;
    height: 26px;
}

/* Card Text Styles */
.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #999999; /* Muted text for readability */
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card.full-width {
        grid-column: span 1;
    }
    .section-title {
        font-size: 32px;
    }
}

/* --- Results Section Styles --- */
.results {
    padding: 100px 0;
    text-align: center;
    background-color: #050505;
}

.results-tag {
    display: inline-block;
    color: #2ed573; /* Green tag like your image */
    border: 1px solid rgba(46, 213, 115, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    background: rgba(46, 213, 115, 0.05);
}

.results-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

/* --- Results Section Styles --- */
.results {
    padding: 100px 0;
    text-align: center;
    background-color: #050505;
}

/* Results Icon Wrapper (Icon Background add panniyachu) */
.result-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

/* Specific Glow Backgrounds */
.results .pink-glow {
    background: rgba(255, 51, 153, 0.1); /* Image-la irukura maari light pink background */
    color: #ff3399;
}

.results .green-glow {
    background: rgba(46, 213, 115, 0.1); /* Image-la irukura maari light green background */
    color: #2ed573;
}

.icon-svg {
    width: 22px;
    height: 22px;
}

/* Card Style Replicated */
.result-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
}

.result-number {
    font-family: 'Outfit', sans-serif;
    font-size: 72px; /* Text size exactly big as per your screenshot */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -3px;
}

.pink-text { color: #ff3399; }
.green-text { color: #2ed573; }

.result-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 6px;
}

.result-sub {
    color: #666666;
    font-size: 13px;
    font-weight: 500;
}

/* Section Tag & Heading */
.results-tag {
    display: inline-block;
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 25px;
    background: rgba(46, 213, 115, 0.05);
}

.results-heading {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
}

/* Grid Layout */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* --- How It Works Styles --- */
.how-it-works {
    padding: 100px 0;
    text-align: center;
    background-color: #050505;
}

.section-tag-small {
    display: inline-block;
    color: #ff3399;
    border: 1px solid rgba(255, 51, 153, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title-white {
    font-family: 'Outfit', sans-serif; /* Heading Font Added */
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
}

.section-title-white span {
    color: #ffffff; /* Keeping it white as per image */
}

.section-desc {
    color: #888888;
    max-width: 600px;
    margin: 0 auto 80px;
}

/* Steps Layout */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Icon Box with Badge */
.step-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #050505;
}

.pink-bg-solid { background-color: #ff3399; }
.green-bg-solid { background-color: #2ed573; }

/* Connectors */
.step-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, #ff3399, #2ed573);
    margin-top: 32px;
    opacity: 0.3;
}

/* Background Number Effect (The big 01, 02, 03) */
.step-number-bg {
    font-family: 'Outfit', sans-serif; /* Heading Font Added */
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-content h3 {
    font-family: 'Outfit', sans-serif; /* Heading Font Added */
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-content p {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 60px;
    }
    .step-connector {
        display: none;
    }
    .step-number-bg {
        top: 20px;
    }
}

/* --- Replicated Video Section - Full Cover Matched --- */
/* --- Doctor Stories (Video Section) Responsive Fix --- */
.testimonials {
    padding: 100px 0;
    text-align: center;
    background-color: #050505;
}

.video-grid {
    display: grid;
    /* Intha line thaan mobile responsive-ku mukkiyam */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px;
    margin-top: 50px;
}

.video-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 51, 153, 0.3);
}

/* Full Video Cover Logic */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* Exact 9:16 vertical ratio for YouTube Shorts */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Bottom Details Section */
.video-details {
    padding: 25px;
    text-align: left;
    background: #0f0f0f;
}

.video-details h3 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.video-details p {
    color: #999999;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.yt-link {
    color: #ff3399;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-link svg {
    width: 18px;
    height: 18px;
}

.shorts-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}
/* --- Performance Slider Styles (Existing) --- */
.performance-slider {
    padding: 100px 0;
    background-color: #050505;
    overflow: hidden;
}

.section-tag-pink {
    display: inline-block;
    color: #ff3399;
    border: 1px solid rgba(255, 51, 153, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 25px;
    background: rgba(255, 51, 153, 0.05);
}

.section-title-white {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-title-white span { color: #ffffff; }

.slider-wrapper {
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* Pause on Hover (Existing logic, dim will be handled separately) */
.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Performance Cards (Existing with modifications) */
.perf-card {
    width: 400px;
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 153, 0.2);
}

.perf-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    background: #1a1a1a;
    overflow: hidden;
}

.perf-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dim effect and zoom on hover */
.perf-card:hover .perf-img-box img {
    opacity: 0.4;
    transform: scale(1.05);
}

.growth-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00ff88;
    color: #000;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    z-index: 5;
}

.perf-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
}

.client-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.client-name span {
    display: block;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.result-count {
    text-align: right;
    color: #ff3399;
    font-size: 24px;
    font-weight: 900;
}

.result-count span {
    display: block;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- New Hover Button Style --- */
.view-screenshot-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff3399; /* Agency Pink accent from image */
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    letter-spacing: -0.2px;
}

/* Button visibility on card hover */
.perf-card:hover .view-screenshot-btn {
    opacity: 1;
    visibility: visible;
}

.view-screenshot-btn:hover {
    transform: translate(-50%, -50%) scale(1.03);
    background-color: #ff50a7;
}

/* --- Modal Style (LightBox) --- */
/* Modal Style */
.modal {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 15px;
    border: 3px solid #ff3399; /* Agency Pink theme */
    box-shadow: 0 0 30px rgba(255, 51, 153, 0.3);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover { color: #ff3399; }

/* --- Consultation Section Styles --- */
.consultation-section {
    padding: 100px 0;
    background-color: #050505; /* Black Background like image */
}

/* Outer Wrapper for Form */
.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

/* Label Tag Style */
.form-tag-box { margin-bottom: 20px; }
.section-tag-pink {
    display: inline-block;
    color: #ff3399; /* Pink Color from image */
    border: 1px solid rgba(255, 51, 153, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 51, 153, 0.05);
}

/* Headings replicated from image_e249c2 */
.section-title-white {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-white span { color: #ffffff; }

.section-desc {
    color: #999999;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Content Box replicated from image_e2365e */
.form-content-box {
    background: #0f0f0f; /* Dark Grey Background for Form */
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}

/* Input Fields replicated from image_e2365e */
.form-row { margin-bottom: 25px; }
.form-row label { display: block; color: #888888; font-size: 13px; margin-bottom: 10px; }

.input-container { position: relative; }
.input-container input {
    width: 100%;
    padding: 16px 16px 16px 45px; /* Spacing for icon replicated from image_e2365e */
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.input-container input:focus { border-color: #ff3399; background: #222222; }
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #666666; font-size: 16px; }

/* Submit Button replicated from image_ed949f */
.form-submit-btn {
    width: 100%;
    padding: 20px;
    background: #ff3399; /* Pink Button replicated from image_ed949f */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 51, 153, 0.2);
    margin-top: 10px;
}

.form-submit-btn:hover { background: #e62e8a; transform: translateY(-2px); }

/* Bottom text replicated from image_ed949f */
.form-bottom-info { margin-top: 30px; text-align: center; }
.no-spam-text { color: #666666; font-size: 13px; margin-bottom: 15px; }
.audit-highlight-text { color: #999999; font-size: 14px; line-height: 1.5; }
.audit-highlight-text span { color: #ff3399; font-weight: 700; text-decoration: underline; }


/* --- FAQ Section Styles --- */
.faq-section {
    padding: 100px 0;
    background-color: #050505; /* Black background matched */
    text-align: center;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-heading {
    font-family: 'Outfit', sans-serif !important; /* Strictly Outfit as requested */
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: -1.5px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between cards */
}

.faq-item {
    background: #0f0f0f; /* Dark grey card background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 51, 153, 0.2); /* Subtle pink highlight on hover */
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    color: #666666;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Accordion Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #121212;
    text-align: left;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #999999;
    font-size: 15px;
    line-height: 1.6;
}

/* Active State Logic */
.faq-item.active .faq-answer {
    max-height: 300px; /* Expand height */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #ff3399; /* Pink arrow when active */
}


/* --- Footer Styles --- */
.main-footer {
    background-color: #000000;
    padding: 50px 0 20px 0;
    height:auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 5px;
}

/* Brand Column */
.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-logo span { color: #ff3399; }

.footer-desc {
    color: #999999;
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff3399;
    border-color: #ff3399;
    transform: translateY(-3px);
}

/* Common Column Styles */
.footer-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 15px; }

.footer-links li a {
    color: #888888;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links li a:hover { color: #ff3399; padding-left: 5px; }

/* Contact Column */
.contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    color: #888888;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-info li i { color: #ff3399; font-size: 16px; margin-top: 3px; }

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff3399;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 51, 153, 0.2);
}

.footer-cta-btn:hover {
    background: #e62e8a;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright { color: #888888; font-size: 13px; }

.trusted-by { color: #888888; font-size: 13px; }

.trusted-by span { color: #ff3399; font-weight: 700; }

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}