/* ===== COLOR PALETTE - LIGHT MODE DEFAULT ===== */
:root {
    /* Light Mode (Default) - White + Yellow */
    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --bg-accent: #f9f9f9;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    --accent-color: #ffd700;
    --accent-light: #ffed4e;
    --accent-secondary: #0A2647;
    --accent-navy: #87CEEB;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #000000;
        --bg-secondary: #1a1a1a;
        --bg-accent: #242424;
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --text-muted: #a0a0a0;
        --accent-color: #87CEEB;
        --accent-light: #87CEEB;
        --accent-secondary: #0A2647;
        --accent-navy: #87CEEB;
        --border-color: #333333;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    }

    .nav-fixed {
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid #333333;
    }

    .nav-logo {
        color: #ffffff;
    }

    .nav-link {
        color: #ffffff;
    }

    .nav-link:hover {
        color: #0A2647;
        text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
    }

    /* Dark Mode Button & Element Overrides */
    .nav-cta,
    .hero-cta,
    .toggle-btn,
    .pricing-btn,
    .carousel-btn,
    .submit-btn,
    .popular-tag,
    .faq-question-mark {
        background: #87CEEB !important;
        color: #ffffff !important;
    }

    .nav-cta:hover,
    .hero-cta:hover,
    .toggle-btn:hover,
    .pricing-btn:hover,
    .carousel-btn:hover,
    .submit-btn:hover {
        background: #0A2647 !important;
        color: #000000 !important;
    }

    .nav-link::after,
    .work-card::before {
        background: #0A2647 !important;
    }

    .form-group select option:checked {
        background: #87CEEB !important;
        color: #fff !important;
    }
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
}

/* ===== NAVIGATION ===== */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: #ffd700;
}

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

.nav-cta {
    background: #ffd700;
    color: #000000;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    color: #000000;
    background: #ffed4e;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-only {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-pretitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
}

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

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: #ffd700;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    background: #ffed4e;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.25);
}


/* Scroll Indicator */
.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-indicator:hover .arrow-down {
    border-color: var(--accent-light);
    transform: rotate(-45deg) translateY(4px);
}

.arrow-down {
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-color);
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
        opacity: 1;
    }
    50% {
        transform: rotate(-45deg) translateY(8px);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 2rem 3rem;
    }

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

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

/* ===== TRANSFORMATION SHOWCASE ===== */
.transformation-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    border-radius: 0;
}

.transform-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transform-header h2 {
    margin-bottom: 1rem;
}

.transform-header p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.comparison-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.toggle-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    background: #ffd700;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.toggle-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(255, 215, 0, 0.15);
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-btn.switched .toggle-icon {
    transform: rotate(180deg);
}

.comparison-images {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex;
    overflow: hidden;
}

.image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.before-image {
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    color: white;
}

.label-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.label-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .comparison-images {
        aspect-ratio: auto;
        min-height: 400px;
    }

    .image-label {
        padding: 1.5rem;
    }

    .label-text {
        font-size: 1.2rem;
    }
}

/* ===== TRANSFORMATION VALUE SECTION ===== */
.transformation-value {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
}

.value-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.value-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.value-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-point {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.value-point:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 107, 91, 0.1);
    transform: translateY(-2px);
}

.value-point:nth-child(1) { animation-delay: 0.1s; }
.value-point:nth-child(2) { animation-delay: 0.2s; }
.value-point:nth-child(3) { animation-delay: 0.3s; }

.point-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    min-width: 30px;
    margin-top: 0.25rem;
}

.value-point h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.value-point p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.value-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    width: 100%;
    padding: 3rem;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 91, 0.15);
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-icon-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    color: #ffd700;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon-svg circle,
.stat-icon-svg path,
.stat-icon-svg line,
.stat-icon-svg rect {
    stroke: #ffd700 !important;
    fill: #ffd700 !important;
}

.animated-icon {
    animation: float 3s ease-in-out infinite;
}

.animated-icon .bar1 {
    animation: growBar1 2s ease-in-out infinite;
}

.animated-icon .bar2 {
    animation: growBar2 2.2s ease-in-out infinite;
}

.animated-icon .bar3 {
    animation: growBar3 2.4s ease-in-out infinite;
}

.animated-icon .trend-line {
    animation: drawLine 3s ease-in-out infinite;
}

.animated-icon .clock-face {
    animation: spin 8s linear infinite;
}

.animated-icon .hour-hand {
    animation: rotateHour 12s linear infinite;
    transform-origin: 50px 50px;
}

.animated-icon .minute-hand {
    animation: rotateMinute 4s linear infinite;
    transform-origin: 50px 50px;
}

.animated-icon .smile {
    animation: smile 2s ease-in-out infinite;
}

.animated-icon .eye {
    animation: blink 3s ease-in-out infinite;
}

.stat-item:hover .stat-icon-svg {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 0 20px rgba(135, 206, 235, 0.6));
    animation: pulse 0.6s ease-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes growBar1 {
    0%, 100% { height: 20px; }
    50% { height: 25px; }
}

@keyframes growBar2 {
    0%, 100% { height: 35px; }
    50% { height: 40px; }
}

@keyframes growBar3 {
    0%, 100% { height: 50px; }
    50% { height: 55px; }
}

@keyframes drawLine {
    0% { stroke-dasharray: 100; stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

@keyframes spin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

@keyframes rotateHour {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateMinute {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes smile {
    0%, 100% { d: path("M 30 50 Q 30 35 50 35 Q 70 35 70 50"); }
    50% { d: path("M 30 50 Q 30 38 50 42 Q 70 38 70 50"); }
}

@keyframes blink {
    0%, 100% { r: 3; opacity: 1; }
    45%, 55% { r: 1; opacity: 0.3; }
}

@keyframes pulse {
    0% { transform: scale(1.15); }
    100% { transform: scale(1.2); }
}

/* Dark Mode SVG Colors */
@media (prefers-color-scheme: dark) {
    .stat-icon-svg circle,
    .stat-icon-svg path,
    .stat-icon-svg line,
    .stat-icon-svg rect {
        stroke: #87CEEB !important;
        fill: #87CEEB !important;
    }

    .stat-icon-svg {
        filter: drop-shadow(0 4px 12px rgba(10, 38, 71, 0.3)) !important;
    }

    .stat-item:hover .stat-icon-svg {
        filter: drop-shadow(0 0 25px rgba(135, 206, 235, 0.7)) !important;
        animation: pulse 0.6s ease-out;
    }
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
    font-weight: 600;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

@media (max-width: 1024px) {
    .value-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .value-content h2 {
        font-size: 2.2rem;
    }

    .stat-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .transformation-value {
        padding: 4rem 2rem;
    }

    .value-container {
        gap: 2rem;
    }

    .value-content h2 {
        font-size: 1.8rem;
    }

    .value-points {
        gap: 1rem;
    }

    .value-point {
        padding: 1rem;
    }

    .visual-card {
        padding: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }
}

/* ===== WORK SECTION ===== */
.work-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.work-header h2 {
    margin-bottom: 1rem;
}

.work-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.work-card {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd700;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover::before {
    transform: scaleX(1);
}

.work-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.work-card.card-1 {
    animation-delay: 0.1s;
}

.work-card.card-2 {
    animation-delay: 0.2s;
}

.work-card.card-3 {
    animation-delay: 0.3s;
}

.work-card.card-4 {
    animation-delay: 0.4s;
}

.work-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.work-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.work-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PROCESS SCROLL SECTION ===== */
.process-scroll-section {
    padding: 8rem 2rem 20rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 150vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
    z-index: 1;
}

.process-scroll-wrapper {
    width: 100%;
    max-width: 900px;
}

.process-header-section {
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-header-top h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.process-header-top p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.process-scroll-container {
    width: 100%;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

.process-scroll-content {
    border-radius: 20px;
    background: var(--bg-secondary);
    border: 2px solid #ffd700;
    box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026, 0 149px 60px #0000000a, 0 233px 65px #00000003;
    padding: 3rem;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}

.process-scroll-content:hover {
    border-color: #0A2647;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.3);
}

/* Dark Mode Process Box */
@media (prefers-color-scheme: dark) {
    .process-scroll-content {
        border-color: #87CEEB;
    }

    .process-scroll-content:hover {
        border-color: #0A2647;
        box-shadow: 0 0 25px rgba(135, 206, 235, 0.5);
    }
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-list-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.process-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 70px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-list-item:hover .process-step-number {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Dark Mode Process Number Glow */
@media (prefers-color-scheme: dark) {
    .process-list-item:hover .process-step-number {
        color: #0A2647;
        text-shadow: 0 0 20px rgba(135, 206, 235, 0.6);
    }
}

.process-step-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.process-step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Light Mode Support */
@media (prefers-color-scheme: light) {
    :root {
        --bg-primary-light: #f5f5f5;
        --bg-secondary-light: #ffffff;
        --text-primary-light: #000000;
        --text-secondary-light: #666666;
        --accent-color-light: #0d2b3e;
        --border-color-light: #e0e0e0;
    }

    .process-scroll-content {
        background: white;
        border-color: var(--accent-color-light);
    }

    .process-step-number {
        color: var(--accent-color-light);
    }

    .process-step-content h3 {
        color: var(--text-primary-light);
    }

    .process-step-content p {
        color: var(--text-secondary-light);
    }

    .process-list-item {
        border-bottom-color: var(--border-color-light);
    }

    .process-header-top h2 {
        color: var(--text-primary-light);
    }

    .process-header-top p {
        color: var(--text-secondary-light);
    }
}

/* ===== SCROLL ANIMATION SECTION (Legacy) ===== */
.scroll-animation-section {
    padding: 8rem 2rem 12rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
    z-index: 1;
}

.scroll-animation-container {
    width: 100%;
    max-width: 900px;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-animation-content {
    border-radius: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026, 0 149px 60px #0000000a, 0 233px 65px #00000003;
    overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}

/* ===== COMBINED APPROACH + SERVICES SECTION ===== */
.combined-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.combined-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.combined-header h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.combined-header p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.combined-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.combined-item {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    color: var(--text-primary);
}

.combined-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.combined-item:nth-child(even) {
    animation-delay: 0.2s;
}

.approach-item {
    position: relative;
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

.item-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.approach-item h4 {
    margin: 0;
    font-weight: 700;
    color: var(--text-primary) !important;
    font-size: 1rem;
    line-height: 1.4;
}

.service-highlight {
    background: rgba(107, 144, 128, 0.08);
    border: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
}

.service-highlight h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1rem;
}

.service-highlight p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.combined-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.metric-card:nth-child(1) {
    animation-delay: 0.3s;
}

.metric-card:nth-child(2) {
    animation-delay: 0.4s;
}

.metric-card:nth-child(3) {
    animation-delay: 0.5s;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.metric-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    margin-bottom: 0;
}

.services-stat {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.service-large {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-large .service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-large .service-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.service-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-item:nth-child(2) {
    animation-delay: 0.1s;
}

.service-item:nth-child(3) {
    animation-delay: 0.2s;
}

.service-item:nth-child(4) {
    animation-delay: 0.3s;
}

.service-item:nth-child(5) {
    animation-delay: 0.4s;
}

.service-item:nth-child(6) {
    animation-delay: 0.5s;
}

.service-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.service-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-large {
        grid-column: 1;
    }
}

/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.results-header h2 {
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.result-item {
    text-align: left;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-secondary);
    border-radius: 8px;
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.result-metric {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.result-client {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    margin-bottom: 3rem;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-accent);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-member {
        grid-template-columns: 1fr;
    }

    .member-photo {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== PRICING SECTION - 3D ROTATING ===== */
.pricing-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-header h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-primary) !important;
}

/* 3D Rotating Carousel */
.pricing-carousel-container {
    max-width: 700px;
    margin: 0 auto;
    perspective: 1000px;
}

.pricing-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.pricing-card-rotated {
    position: absolute;
    width: 380px;
    padding: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s ease,
                filter 0.5s ease;
    opacity: 0;
    transform: translateX(0) translateZ(-400px) rotateY(0deg) scale(0.6);
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    z-index: 1;
}

.pricing-card-rotated.active {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    pointer-events: auto;
    z-index: 10;
    filter: none;
}

.pricing-card-rotated.prev {
    transform: translateX(-300px) translateZ(-250px) rotateY(-35deg) scale(0.85);
    opacity: 0.5;
    z-index: 2;
    filter: brightness(0.75);
}

.pricing-card-rotated.next {
    transform: translateX(300px) translateZ(-250px) rotateY(35deg) scale(0.85);
    opacity: 0.5;
    z-index: 2;
    filter: brightness(0.75);
}

.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-rotated h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.price-subtext {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.price-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.price-list li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #ffd700;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    margin-top: auto;
}

.pricing-btn:hover {
    background: #ffed4e;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.pricing-card-rotated.featured {
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px -15px rgba(255, 215, 0, 0.15);
}

.pricing-card-rotated.featured.active {
    box-shadow: 0 30px 60px -15px rgba(255, 215, 0, 0.2);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 3rem;
    background: #ffd700;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    padding: 0.75rem 1.5rem;
    background: #ffd700;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-btn:hover {
    background: #ffed4e;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


.carousel-indicator {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 50px;
    text-align: center;
}

#currentSlide {
    color: var(--accent-color);
    font-weight: 800;
}

/* ===== OPTIONAL FORM FIELD TAG ===== */
.optional-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.02em;
    margin-left: 0.25rem;
}

/* ===== PREVIEW BUTTON ON PRICING CARDS ===== */
.preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: transparent;
    color: var(--accent-secondary);
    border: 2px solid var(--accent-secondary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.preview-btn:hover {
    background: var(--accent-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 38, 71, 0.25);
}

.preview-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.preview-btn:hover svg {
    transform: scale(1.15);
}

@media (prefers-color-scheme: dark) {
    .preview-btn {
        color: #87CEEB !important;
        border-color: #87CEEB !important;
    }
    .preview-btn:hover {
        background: #87CEEB !important;
        color: #0A2647 !important;
    }
}

/* ===== PREVIEW MODAL ===== */
.preview-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preview-modal.open {
    opacity: 1;
    visibility: visible;
}

.preview-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.preview-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.preview-modal.open .preview-modal-content {
    transform: scale(1) translateY(0);
}

.preview-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.preview-modal-close:hover {
    background: var(--accent-secondary);
    color: #ffffff;
    transform: rotate(90deg);
}

.preview-modal-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 3rem 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.preview-video[src=""],
.preview-video:not([src]) {
    display: none;
}

.preview-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.preview-placeholder svg {
    color: #87CEEB;
    margin-bottom: 0.5rem;
}

.preview-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.preview-placeholder span {
    font-size: 0.9rem;
    color: #a0a0a0;
    max-width: 400px;
}

.preview-placeholder code {
    background: rgba(255, 255, 255, 0.1);
    color: #87CEEB;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.85rem;
}

.preview-modal.has-video .preview-placeholder {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .preview-modal-content {
        padding: 1.5rem 1rem 1rem;
        max-height: 95vh;
    }
    .preview-modal-title {
        font-size: 1.2rem;
        margin-right: 2.5rem;
    }
    .preview-placeholder p {
        font-size: 1rem;
    }
    .preview-placeholder span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .pricing-carousel {
        height: 500px;
    }

    .pricing-card-rotated {
        width: 300px;
        padding: 2rem;
    }

    .pricing-card-rotated.prev {
        transform: translateX(-220px) translateZ(-200px) rotateY(-30deg) scale(0.7);
    }

    .pricing-card-rotated.next {
        transform: translateX(220px) translateZ(-200px) rotateY(30deg) scale(0.7);
    }

    .carousel-controls {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .carousel-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Mobile Responsive */
    .hero {
        padding: 80px 1.5rem 2rem;
    }

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

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

    .transformation-showcase {
        padding: 3rem 1rem;
    }

    .process-scroll-section {
        padding: 4rem 1rem 10rem;
    }

    .results-grid {
        gap: 1.5rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-photo {
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
    }

    .value-container {
        gap: 2rem;
    }

    .stat-showcase {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices (Mobile Phones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 70px 1rem 1.5rem;
    }

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

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .process-scroll-section {
        padding: 2rem 0.5rem 6rem;
    }

    .pricing-carousel {
        height: 420px;
        perspective: 800px;
    }

    .pricing-card-rotated {
        width: 280px;
        padding: 1.5rem;
    }

    .pricing-card-rotated.active {
        transform: translateX(0) rotateY(0deg) scale(1);
    }

    .pricing-card-rotated.prev {
        transform: translateX(-180px) translateZ(-150px) rotateY(-25deg) scale(0.65);
    }

    .pricing-card-rotated.next {
        transform: translateX(180px) translateZ(-150px) rotateY(25deg) scale(0.65);
    }

    .carousel-controls {
        gap: 0.5rem;
    }

    .carousel-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .faq-toggle {
        padding: 1rem 1.2rem;
    }

    .faq-content p {
        padding: 0 1.2rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 16px;
    }

    .submit-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    padding: 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.testimonial:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.faq-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    gap: 1rem;
}

.faq-question-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #ffd700;
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background: var(--bg-accent);
}

.faq-icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-wrapper > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #000 !important;
    background: #fff !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999 !important;
}

.form-group select option {
    color: #000;
    background: #fff;
}

.form-group select option:checked {
    background: #ffd700;
    color: #000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(107, 144, 128, 0.1);
    background: #fff;
    color: #000;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ffd700;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #ffed4e;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -15px rgba(255, 215, 0, 0.25);
}


.submit-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-wrapper {
        max-width: 100%;
    }

    .contact-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .contact-wrapper > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.75rem;
        font-size: 16px;
    }

    .submit-btn {
        padding: 0.75rem;
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }

    .form-success,
    .form-error {
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid #333333;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT ===== */
@media print {
    .nav-fixed,
    .hero-cta,
    .contact-section {
        display: none;
    }
}
