/* ====================
   CSS Variables
   ==================== */
:root {
    --primary: #F97316;
    --primary-dark: #EA580C;
    --primary-light: #FFEDD5;
    --secondary: #1F2937;
    --dark: #111827;
    --light: #FEF3E2;
    --cream: #FFF7ED;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ====================
   Motion & Animation Keyframes
   ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatLeftRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

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

    100% {
        background-position: 200% center;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(249, 115, 22, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(249, 115, 22, 0.6), 0 0 40px rgba(249, 115, 22, 0.2);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: var(--gray-200);
    }

    50% {
        border-color: var(--primary);
    }
}

/* Scroll reveal base classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ====================
   Reset & Base
   ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ====================
   Buttons
   ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: capitalize;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
}

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

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

.btn-light:hover {
    background: var(--cream);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* ====================
   Navigation
   ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

/* ====================
   Hero Section
   ==================== */
@keyframes subtleGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes cinematicGlow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(249, 115, 22, 0.08), 0 0 100px rgba(249, 115, 22, 0.04);
    }

    50% {
        box-shadow: 0 0 100px rgba(249, 115, 22, 0.12), 0 0 150px rgba(249, 115, 22, 0.06);
    }
}

@keyframes floatingParticle {
    0% {
        transform: translateY(100vh) translateX(var(--tx));
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) translateX(calc(var(--tx) + 100px));
        opacity: 0;
    }
}

@keyframes reelsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hero {
    padding: 120px 0 20px;
    background: linear-gradient(135deg, var(--cream) 0%, #FFF8F0 50%, var(--cream) 100%);
    background-size: 200% 200%;
    animation: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: none;
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.4);
    animation: none;
}

.particle:nth-child(1) {
    --tx: 10%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    --tx: -5%;
    left: 25%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    --tx: 8%;
    left: 40%;
    animation-duration: 16s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    --tx: -8%;
    left: 55%;
    animation-duration: 17s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    --tx: 12%;
    left: 70%;
    animation-duration: 19s;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    --tx: -6%;
    left: 85%;
    animation-duration: 16s;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    --tx: 9%;
    left: 15%;
    animation-duration: 17s;
    animation-delay: 1.5s;
}

.particle:nth-child(8) {
    --tx: -7%;
    left: 60%;
    animation-duration: 18s;
    animation-delay: 2.5s;
}

.hero-reels-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.reels-scroll {
    display: flex;
    animation: reelsScroll 40s linear infinite;
    width: 200%;
}

.reel-card {
    width: 200px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    min-height: 80vh;
}

/* Hero Left – Fanned Cards Column */
.hero-left {
    flex: 0 0 56%;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 0;
    padding-top: 20px;
}

.hero-left>.hero-stat-badge,
.hero-left>.hero-reels-fan {
    position: relative;
    z-index: 2;
}

.hero-left>.hero-stat-badge {
    z-index: 20;
}

.hero-right {
    flex: 0 0 38%;
    padding-left: 80px;
    z-index: 5;
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-stat-badge {
    position: absolute;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-badge--top {
    top: 0;
    left: 0;
}

.hero-stat-badge--bottom {
    top: 70px;
    left: 0;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

/* Hero Right – Headline Column */
.hero-right {
    flex: 0 0 45%;
    padding-left: 40px;
    z-index: 5;
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-headline {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-headline-accent {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



/* ====================
   Section Headers
   ==================== */
/* ====================
    Hero Reel Videos – Fanned Card Stack
    ==================== */
.hero-reels-fan {
    position: relative;
    width: 380px;
    height: 420px;
    margin: 0;
    transition: none;
    filter: drop-shadow(0 20px 60px rgba(15, 23, 42, 0.08));
    --reel-rotation-base: -44deg;
    --reel-rotation-step: 14deg;
    --reel-translation-base: -110px;
    --reel-translation-step: 28px;
}

.hero-reels-fan:hover {
    transform: none;
}

.reel-card-wrapper {
    position: absolute;
    width: 190px;
    height: 320px;
    border-radius: 22px;
    background: var(--white);
    padding: 6px;
    box-shadow: none;
    transition: none;
    transform-origin: bottom center;
    --rotation: calc(var(--reel-rotation-base) + var(--i) * var(--reel-rotation-step));
    --tx: calc(var(--reel-translation-base) + var(--i) * var(--reel-translation-step));
    transform: translateX(var(--tx)) rotate(var(--rotation));
    left: 20%;
    bottom: 20px;
    z-index: calc(var(--i));
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.reel-card-wrapper:hover {
    transform: translateX(var(--tx)) rotate(var(--rotation));
}

.reel-card-wrapper .reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-reels-fan {
        width: 320px;
        height: 360px;
        margin-top: 30px;
        --reel-translation-base: -80px;
        --reel-translation-step: 22px;
        --reel-rotation-step: 12deg;
    }

    .reel-card-wrapper {
        width: 150px;
        height: 260px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .hero-reels-fan {
        width: 280px;
        height: 300px;
        margin-top: 24px;
        --reel-translation-base: -56px;
        --reel-translation-step: 16px;
        --reel-rotation-step: 10deg;
    }

    .reel-card-wrapper {
        width: 120px;
        height: 210px;
        border-radius: 14px;
        padding: 4px;
    }
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
}

/* ====================
   Brand Statement Section
   ==================== */
.brand-statement-wrapper {
    position: relative;
    z-index: 5;
    padding: 60px 0;
    text-align: center;
}

.brand-statement-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -1px;
}



/* ====================
   Our Works – Video Marquee
   ==================== */
@keyframes worksMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.works-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 30px;
}

.works-marquee-track {
    display: flex;
    gap: 24px;
    animation: worksMarquee 25s linear infinite;
    width: max-content;
}

.works-marquee-wrapper:hover .works-marquee-track {
    animation-play-state: paused;
}

.works-video-card {
    flex: 0 0 auto;
    width: 220px;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    padding: 5px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.works-video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.works-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    .works-video-card {
        width: 160px;
        height: 284px;
        border-radius: 16px;
    }

    .works-marquee-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .works-video-card {
        width: 130px;
        height: 230px;
        border-radius: 14px;
        padding: 4px;
    }

    .works-marquee-track {
        gap: 12px;
    }
}

/* ====================
   Services Section
   ==================== */
.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 20;
}

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

.service-card {
    padding: 30px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.2);
    border-color: var(--primary);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--primary);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-icon i {
    font-size: 22px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ====================
   Case Studies Section
   ==================== */
.case-studies {
    padding: 80px 0;
    background: var(--cream);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.case-study-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.12);
}

.case-study-content {
    padding: 20px;
}

.case-study-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.case-study-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-study-stats .stat {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.case-study-stats i {
    color: var(--gray-400);
    font-size: 14px;
}

/* ====================
   Client Logos Section
   ==================== */
.client-logos {
    padding: 60px 0;
    background: var(--light);
    text-align: center;
    overflow: hidden;
}

.logos-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-marquee-wrapper {
    position: relative;
    width: 100%;
}

.logos-marquee {
    overflow: hidden;
    width: 100%;
}

.logos-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.logos-marquee:hover .logos-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--light), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--light), transparent);
}

/* ====================
   Creators Section
   ==================== */
.creators {
    padding: 80px 0;
    background: var(--white);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.creator-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.creator-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25);
}

.creator-card:hover .creator-image img {
    transform: scale(1.08);
}

.creator-image {
    width: 100%;
    overflow: hidden;
}

.creator-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* ====================
   Stats Section
   ==================== */
.stats {
    padding: 60px 0;
    background: var(--secondary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    animation: glowPulse 3s ease-in-out infinite;
}

.stat-item p {
    font-size: 15px;
    color: var(--gray-400);
}

/* ====================
   Team Members Section
   ==================== */
.team-members {
    padding: 80px 0;
    background: #fff7f0;
}

.team-members-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-top: 30px;
}

.team-member-card {
    flex: 0 0 220px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.75);
}

.team-member-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.team-member-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 16px 16px 6px;
}

.team-member-card span {
    display: block;
    margin: 0 16px 18px;
    color: var(--gray-600);
    font-size: 13px;
}

.team-members-grid::-webkit-scrollbar {
    height: 8px;
}

.team-members-grid::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.4);
    border-radius: 999px;
}

.team-members-grid::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 860px) {
    .team-member-card {
        flex: 0 0 190px;
    }
}

@media (max-width: 620px) {
    .team-members-grid {
        gap: 16px;
    }

    .team-member-card {
        flex: 0 0 160px;
    }
}

/* ====================
   Testimonials Section
   ==================== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.15);
    transform: translateY(-5px);
}

.stars {
    color: #FFB800;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 12px;
    color: var(--gray-600);
}

/* ====================
   CTA Section
   ==================== */
.cta-section {
    padding: 60px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary));
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: floatUpDown 6s ease-in-out infinite;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================
   Careers Section
   ==================== */
.careers {
    padding: 80px 0;
    background: var(--cream);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.career-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--gray-200);
}

.career-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.2);
    border-color: var(--primary);
}

.career-card:hover .career-icon {
    transform: scale(1.15);
    background: var(--primary);
}

.career-card:hover .career-icon i {
    color: var(--white);
}

.career-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.career-icon i {
    font-size: 24px;
    color: var(--primary);
}

.career-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.career-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ====================
   Contact Section
   ==================== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    text-align: left;
    font-size: 32px;
}

.contact-desc {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 18px;
    color: var(--primary);
    width: 20px;
    margin-top: 3px;
}

.contact-item span {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.social-link i {
    font-size: 18px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 50px;
    color: #22C55E;
    margin-bottom: 15px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-success p {
    color: var(--gray-600);
}

/* ====================
   Footer
   ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--gray-400);
    font-size: 16px;
    transition: var(--transition);
}

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

/* ====================
   WhatsApp Float Button
   ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    animation: pulse 2s ease-in-out infinite, fadeInUp 0.6s ease-out 1.5s both;
}

.whatsapp-float:hover {
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ====================
   Responsive Design
   ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-left,
    .hero-right {
        flex: 1;
        width: 100%;
        padding-left: 0;
    }

    .hero-headline {
        font-size: 48px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .case-studies-grid,
    .creators-grid,
    .careers-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .partner-logo {
        height: 36px;
        max-width: 140px;
    }

    .logos-marquee-track {
        gap: 40px;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}