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

/* Marca: fondo navy + oro metálico (logo Ven7as) */
:root {
    --color-bg: #121b26;
    --color-bg-deep: #0a141c;
    --color-bg-elevated: #1a2530;
    --gold-highlight: #e6d5a7;
    --gold-mid: #c5a059;
    --gold-shadow: #8c6d3f;
    --champagne: #d4c29d;
    --text-on-light: #1e2a35;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: var(--color-bg);
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
/* ============================================
   INTRO OVERLAY - ENTRANCE ANIMATION
   ============================================ */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlayExit 0.8s ease-in-out forwards;
    animation-delay: 2s;
}

.intro-overlay.hidden {
    pointer-events: none;
}

.intro-overlay__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.intro-overlay__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.intro-overlay__logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    animation: logoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(100%);
}

.intro-overlay__logo-accent {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #e6d5a7 0%, #c5a059 45%, #8c6d3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(100%);
}

.intro-overlay__line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c5a059, #e6d5a7, #c5a059, transparent);
    animation: lineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

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

@keyframes lineExpand {
    to {
        width: 150px;
    }
}

@keyframes overlayExit {
    0% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 100% 0);
        visibility: hidden;
    }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
}

.header__wrapper {

    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header__logo-icon {
    width: 48px;
    height: 40px;
    flex-shrink: 0;
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header__logo-accent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c5a059;
    letter-spacing: -0.5px;
}

.header__logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header__logo-img--white {
    filter: brightness(0) invert(1);
}

.header__logo:hover .header__logo-img {
    transform: scale(1.05);
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header__nav-link:hover {
    opacity: 0.8;
}

.header__nav-arrow {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.header__cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: 60px;
    background-color: #c5a059;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 99;
    transition: background-color 0.3s ease;
    border-radius: 8px 0 0 8px;
}

.header__cta:hover {
    background-color: #8c6d3f;
}

/* ============================================
   HERO SECTION - INNOVATIVE DESIGN
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Hero Background - Clean & Dynamic */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: var(--color-bg);
}

.hero__gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Spotlight principal - esquina superior derecha */
        conic-gradient(from 200deg at 85% 15%, 
            transparent 0deg,
            rgba(197, 160, 89, 0.05) 30deg,
            rgba(212, 180, 120, 0.12) 60deg,
            rgba(197, 160, 89, 0.08) 90deg,
            transparent 120deg
        ),
        /* Spotlight secundario - esquina inferior izquierda */
        conic-gradient(from 45deg at 10% 90%, 
            transparent 0deg,
            rgba(205, 170, 105, 0.04) 20deg,
            rgba(180, 140, 80, 0.08) 45deg,
            rgba(205, 170, 105, 0.04) 70deg,
            transparent 90deg
        ),
        /* Gradiente base */
        linear-gradient(135deg, var(--color-bg-deep) 0%, var(--color-bg) 40%, var(--color-bg-deep) 100%);
}

/* Aurora Wave Effect */
.hero__orb {
    position: absolute;
    pointer-events: none;
}

.hero__orb--1 {
    top: 0;
    right: 0;
    width: 70%;
    height: 60%;
    background: 
        radial-gradient(ellipse 100% 80% at 100% 0%, 
            rgba(195, 150, 85, 0.06) 0%, 
            rgba(200, 165, 100, 0.04) 30%,
            transparent 60%
        );
    animation: auroraShift 8s ease-in-out infinite;
}

.hero__orb--2 {
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: 
        radial-gradient(ellipse 100% 100% at 0% 100%, 
            rgba(188, 145, 82, 0.05) 0%, 
            rgba(140, 109, 63, 0.03) 40%,
            transparent 70%
        );
    animation: auroraShift 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
    top: 20%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(255, 255, 255, 0.02) 0%, 
            transparent 50%
        );
    animation: auroraShift 12s ease-in-out infinite;
}

@keyframes auroraShift {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Accent Lines - Rayos de luz definidos */
.hero__grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__grid-lines::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 5%;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(205, 170, 105, 0.4) 20%,
        rgba(230, 213, 167, 0.6) 50%,
        rgba(205, 170, 105, 0.4) 80%,
        transparent 100%
    );
    transform: rotate(25deg);
    animation: rayPulse 4s ease-in-out infinite;
}

.hero__grid-lines::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 20%;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(197, 160, 89, 0.2) 30%,
        rgba(215, 185, 130, 0.35) 50%,
        rgba(197, 160, 89, 0.2) 70%,
        transparent 100%
    );
    transform: rotate(25deg);
    animation: rayPulse 4s ease-in-out infinite 1s;
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Subtle Noise Texture */
.hero__noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Accent Glow Lines - Clean & Sharp */
.hero__glow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(197, 160, 89, 0.8) 15%,
        rgba(212, 180, 120, 1) 50%,
        rgba(197, 160, 89, 0.8) 85%,
        transparent 100%
    );
    box-shadow: 
        0 0 8px rgba(205, 170, 105, 0.6),
        0 0 20px rgba(205, 170, 105, 0.3);
}

.hero__glow-line--1 {
    width: 300px;
    top: 30%;
    right: 10%;
    transform: rotate(-45deg);
    animation: lineSlide 6s ease-in-out infinite;
}

.hero__glow-line--2 {
    width: 200px;
    bottom: 25%;
    left: 5%;
    transform: rotate(30deg);
    animation: lineSlide 8s ease-in-out infinite 2s;
}

@keyframes lineSlide {
    0%, 100% { 
        opacity: 0.4;
        transform: translateX(0) rotate(-45deg);
    }
    50% { 
        opacity: 1;
        transform: translateX(20px) rotate(-45deg);
    }
}

/* Floating Shapes */
.hero__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
}

.hero__shape--diamond {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 15%;
    background: linear-gradient(135deg, rgba(205, 170, 105, 0.6) 0%, rgba(220, 200, 160, 0.3) 100%);
    transform: rotate(45deg) scale(0);
    animation: shapeReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatShape 8s ease-in-out infinite;
    animation-delay: 2.5s, 3.3s;
    box-shadow: 0 0 30px rgba(205, 170, 105, 0.4);
}

.hero__shape--ring {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 10%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    animation: shapeReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatShape 10s ease-in-out infinite;
    animation-delay: 2.7s, 3.5s;
}

.hero__shape--cross {
    width: 20px;
    height: 20px;
    top: 60%;
    right: 25%;
    transform: scale(0);
    animation: shapeReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatShape 7s ease-in-out infinite;
    animation-delay: 2.9s, 3.7s;
}

@keyframes shapeReveal {
    to {
        transform: rotate(45deg) scale(1);
    }
}

.hero__shape--cross::before,
.hero__shape--cross::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
}

.hero__shape--cross::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.hero__shape--cross::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.hero__shape--dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
}

.hero__shape--dot-1 {
    top: 15%;
    left: 25%;
    animation: dotReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatShape 6s ease-in-out infinite;
    animation-delay: 3s, 3.5s;
}

.hero__shape--dot-2 {
    top: 45%;
    left: 8%;
    animation: dotReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatShape 8s ease-in-out infinite;
    animation-delay: 3.2s, 3.7s;
}

.hero__shape--dot-3 {
    bottom: 35%;
    right: 8%;
    animation: dotReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatShape 9s ease-in-out infinite;
    animation-delay: 3.4s, 3.9s;
}

@keyframes dotReveal {
    to {
        transform: scale(1);
    }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(45deg); opacity: 1; }
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 10rem 4rem 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Label */
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;

    border-radius: 50px;

    animation: heroEntranceSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 2.3s;
    opacity: 0;
    transform: translateY(40px);
}

.hero__label-icon {
    color: #c5a059;
    font-size: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 3s;
}

.hero__label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

/* Hero Title */
.hero__title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero__title-line {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -3px;
    animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100%) rotateX(-20deg);
    transform-origin: top center;
}

.hero__title-line:nth-child(1) { animation-delay: 2.4s; }
.hero__title-line:nth-child(2) { animation-delay: 2.6s; }
.hero__title-line:nth-child(3) { animation-delay: 2.8s; }

.hero__title-line--accent {
    background: linear-gradient(135deg, #e6d5a7 0%, #c5a059 45%, #8c6d3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero__title-line--accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 8px;
    background: linear-gradient(90deg, rgba(205, 170, 105, 0.4) 0%, transparent 100%);
    border-radius: 4px;
    z-index: -1;
    animation: underlineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.2s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

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

@keyframes heroEntranceScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Subtitle */
.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: heroEntranceSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3s;
    opacity: 0;
    transform: translateY(30px);
}

/* CTA Buttons */
.hero__cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: heroEntranceSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.2s;
    opacity: 0;
    transform: translateY(30px);
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero__btn--primary {
    background: linear-gradient(135deg, #c5a059 0%, #8c6d3f 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4), 0 0 60px rgba(197, 160, 89, 0.2);
    border: none;
}

.hero__btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.5), 0 0 80px rgba(197, 160, 89, 0.3);
}

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

.hero__btn--primary:hover .hero__btn-icon {
    transform: translateX(4px);
}

.hero__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero__btn-icon-play {
    font-size: 0.65rem;
    opacity: 0.8;
}

/* UNESCO Badge */
.hero__unesco-badge {
    display: flex;
    justify-content: flex-end;
    margin-right: .5rem;
    animation: heroEntranceSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.4s;
    opacity: 0;
    transform: translateY(20px);
}

.hero__unesco-badge-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero__unesco-badge-img:hover {
    opacity: 1;
}

/* Floating Stats */
.hero__floating-stats {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.hero__stat-card {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    text-align: right;
    animation: statsEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    transition: all 0.3s ease;
}

.hero__stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(205, 170, 105, 0.3);
    transform: translateX(-10px);
}

.hero__stat-card--1 { animation-delay: 3.4s; }
.hero__stat-card--2 { animation-delay: 3.55s; }
.hero__stat-card--3 { animation-delay: 3.7s; }

@keyframes statsEntrance {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Programs Strip */
.hero__programs-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 2rem 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    animation: programsReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.8s;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero__programs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__program-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.hero__program-pill:hover {
    transform: translateY(-2px);
}

.hero__program-pill:hover .hero__program-name {
    color: #c5a059;
}

.hero__program-pill--she-he:hover .hero__program-name {
    color: #d4c29d;
}

.hero__program-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.hero__program-tag {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.hero__program-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: scrollIndicatorReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 4s;
    opacity: 0;
    transform: translateY(20px);
}

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

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(205, 170, 105, 0.8) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
    animation-delay: 4.5s;
}

@keyframes scrollPulse {
    0%, 100% { 
        transform: scaleY(1);
        opacity: 0.8;
    }
    50% { 
        transform: scaleY(0.6);
        opacity: 0.4;
    }
}

.hero__scroll-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}


/* ============================================
   RESPONSIVE - INTRO OVERLAY
   ============================================ */
@media (max-width: 768px) {
    .intro-overlay__logo-text,
    .intro-overlay__logo-accent {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .intro-overlay__line {
        animation: lineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 0.8s;
    }
    
    @keyframes lineExpand {
        to {
            width: 100px;
        }
    }
}

/* ============================================
   RESPONSIVE - HERO
   ============================================ */
@media (max-width: 1400px) {
    .hero__content {
        padding: 8rem 3rem 2rem;
    }
    
    .hero__title-line {
        font-size: clamp(2.5rem, 7vw, 4.8rem);
    }
    
    .hero__floating-stats {
        right: 3rem;
    }
    
    .hero__stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .header__wrapper {
        padding: 0 2rem;
    }
    
    .hero__content {
        padding: 7rem 2rem 2rem;
    }
    
    .hero__title-line {
        font-size: clamp(2.2rem, 6vw, 4.5rem);
        letter-spacing: -2px;
    }
    
    .hero__floating-stats {
        right: 2rem;
        gap: 1rem;
    }
    
    .hero__stat-card {
        padding: 1.25rem 1.5rem;
    }
    
    .hero__stat-number {
        font-size: 1.75rem;
    }
    
    .hero__programs-strip {
        padding: 2rem;
    }
    
    .hero__scroll-indicator {
        left: 2rem;
    }
    
    .programs {
        padding: 5rem 2rem;
    }
    
    .programs__header {
        margin-bottom: 3.5rem;
    }
    
    .programs__grid {
        gap: 1.75rem;
    }
}

@media (max-width: 968px) {
    .header__nav-list {
        gap: 1.5rem;
    }
    
    .header__nav-link {
        font-size: 0.875rem;
    }
    
    .hero__title-line {
        font-size: clamp(2rem, 5.5vw, 3.5rem);
    }
    
    .hero__floating-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding: 0 2rem;
    }

    .hero__programs-strip {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 0.5rem;
        padding: 1.5rem 2rem 1.25rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .hero__stat-card {
        text-align: center;
        animation: heroEntranceSlide 1s ease forwards;
        transform: translateY(30px);
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    /* Background para 968px */
    .hero__gradient-bg {
        background: 
            /* Spotlight superior - movido a la derecha */
            conic-gradient(from 195deg at 90% 12%, 
                transparent 0deg,
                rgba(197, 160, 89, 0.06) 30deg,
                rgba(212, 180, 120, 0.12) 60deg,
                rgba(197, 160, 89, 0.06) 90deg,
                transparent 120deg
            ),
            conic-gradient(from 40deg at 12% 88%, 
                transparent 0deg,
                rgba(205, 170, 105, 0.04) 20deg,
                rgba(180, 140, 80, 0.08) 45deg,
                rgba(205, 170, 105, 0.04) 70deg,
                transparent 90deg
            ),
            linear-gradient(135deg, var(--color-bg-deep) 0%, var(--color-bg) 40%, var(--color-bg-deep) 100%);
    }
    
    .hero__orb--1 {
        width: 75%;
        height: 55%;
    }
    
    .hero__orb--2 {
        width: 55%;
        height: 45%;
    }
    
    .hero__glow-line--1 {
        width: 280px;
        right: 8%;
    }
    
    .hero__glow-line--2 {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .header__wrapper {
        padding: 0 1.5rem;
    }
    
    .header__cta {
        height: 100px;
        width: 50px;
        font-size: 0.6875rem;
    }
    
    .header__nav-list {
        gap: 1rem;
    }
    
    .header__nav-item:nth-child(n+3) {
        display: none;
    }
    
    .hero__content {
        padding: 6rem 1.5rem 2rem;
    }
    
    .hero__title-line {
        font-size: clamp(1.8rem, 8vw, 3rem);
        letter-spacing: -1px;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero__btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__floating-stats {
        padding: 0 1.5rem;
        gap: 0.75rem;
    }
    
    .hero__stat-card {
        padding: 1rem 1.25rem;
        flex: 1;
        min-width: 140px;
    }
    
    .hero__stat-number {
        font-size: 1.5rem;
    }
    
    .hero__stat-label {
        font-size: 0.65rem;
    }
    
    .hero__programs-strip {
        padding: 1.5rem;
    }
    
    .hero__programs-container {
        gap: 0.75rem 1rem;
    }
    
    .hero__program-pill {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }
    
    .hero__program-divider {
        display: none;
    }
    
    /* Background adaptations for tablet */
    .hero__gradient-bg {
        background: 
            /* Spotlight principal - movido a la derecha */
            conic-gradient(from 195deg at 95% 15%, 
                transparent 0deg,
                rgba(197, 160, 89, 0.07) 30deg,
                rgba(212, 180, 120, 0.14) 60deg,
                rgba(197, 160, 89, 0.07) 90deg,
                transparent 120deg
            ),
            /* Spotlight secundario */
            conic-gradient(from 45deg at 15% 85%, 
                transparent 0deg,
                rgba(205, 170, 105, 0.05) 20deg,
                rgba(180, 140, 80, 0.1) 45deg,
                rgba(205, 170, 105, 0.05) 70deg,
                transparent 90deg
            ),
            linear-gradient(135deg, var(--color-bg-deep) 0%, var(--color-bg) 40%, var(--color-bg-deep) 100%);
    }
    
    .hero__orb--1 {
        width: 80%;
        height: 50%;
        top: 0;
        right: -10%;
    }
    
    .hero__orb--2 {
        width: 60%;
        height: 40%;
        bottom: 0;
        left: -10%;
    }
    
    .hero__orb--3 {
        width: 50%;
        height: 35%;
        top: 30%;
        left: 25%;
    }
    
    /* Rayos de luz adaptados */
    .hero__grid-lines::before {
        right: 0%;
        width: 2px;
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(205, 170, 105, 0.5) 20%,
            rgba(230, 213, 167, 0.7) 50%,
            rgba(205, 170, 105, 0.5) 80%,
            transparent 100%
        );
    }
    
    .hero__grid-lines::after {
        right: 15%;
        width: 1px;
    }
    
    /* Glow lines más visibles */
    .hero__glow-line--1 {
        width: 250px;
        top: 25%;
        right: 5%;
    }
    
    .hero__glow-line--2 {
        width: 180px;
        bottom: 20%;
        left: 0%;
    }
    
    /* Formas geométricas */
    .hero__shape--diamond {
        width: 25px;
        height: 25px;
        top: 15%;
        right: 10%;
    }
    
    .hero__shape--ring {
        width: 50px;
        height: 50px;
        bottom: 20%;
        left: 5%;
    }
    
    .hero__shape--cross {
        top: 55%;
        right: 20%;
    }
    
    .programs {
        height: auto;
        min-height: 100vh;
        padding: 3rem 2rem;
    }
    
    .programs {
        padding: 5rem 2rem;
    }
    
    .programs__gradient-bg {
        background: 
            radial-gradient(ellipse 80% 60% at -10% 0%, 
                rgba(197, 160, 89, 0.1) 0%, 
                transparent 50%
            ),
            radial-gradient(ellipse 70% 60% at 110% 100%, 
                rgba(140, 109, 63, 0.08) 0%, 
                transparent 50%
            ),
            #f5f3ee;
    }
    
    .programs__pattern {
        background-size: 60px 60px;
    }
    
    .programs__deco--1 {
        width: 80px;
        height: 80px;
        top: 5%;
    }
    
    .programs__deco--2 {
        width: 120px;
        height: 120px;
    }
    
    .programs__deco--3,
    .programs__deco--4 {
        display: none;
    }
    
    .programs__geo--3 {
        display: none;
    }
    
    .programs__header {
        margin-bottom: 2.5rem;
    }
    
    /* Reveal Grid Responsive - Tablet */
    .programs__header {
        margin-bottom: 4rem;
    }
    
    .programs__header-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .programs__reveal {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .reveal__item,
    .reveal__item:nth-child(even) {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    
    .reveal__item:nth-child(even) .reveal__card-inner {
        align-items: flex-start;
    }
    
    .reveal__number span {
        font-size: 5rem;
    }
    
    .reveal__title {
        font-size: 1.75rem;
    }
    
    .programs__floating-stats {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 4rem;
    }
    
    .programs__bg-num {
        font-size: 12rem;
    }
    
    .programs__lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .header__logo-text,
    .header__logo-accent {
        font-size: 1.25rem;
    }
    
    .header__logo-img {
        height: 32px;
    }
    
    .header__nav-item:nth-child(n+2) {
        display: none;
    }
    
    .hero__content {
        padding: 5rem 1rem 2rem;
    }
    
    .hero__label {
        padding: 0.5rem 1rem;
    }
    
    .hero__label-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .hero__title-line {
        font-size: clamp(1.6rem, 9vw, 2.5rem);
    }
    
    .hero__subtitle {
        font-size: 0.95rem;
    }
    
    .hero__unesco-badge-img {
        height: 60px;
    }
    
    .hero__floating-stats {
        padding: 0 1rem;
        flex-direction: column;
    }
    
    .hero__stat-card {
        width: 100%;
        text-align: center;
    }
    
    .hero__programs-strip {
        padding: 1.25rem 1rem;
    }

    .hero__programs-container {
        justify-content: center;
    }
    
    .hero__program-name {
        font-size: 0.8rem;
    }
    
    /* Background adaptations for mobile */
    .hero__gradient-bg {
        background: 
            /* Spotlight principal - movido a la derecha para móvil */
            conic-gradient(from 190deg at 95% 10%, 
                transparent 0deg,
                rgba(197, 160, 89, 0.1) 25deg,
                rgba(212, 180, 120, 0.18) 55deg,
                rgba(197, 160, 89, 0.1) 85deg,
                transparent 110deg
            ),
            /* Spotlight secundario */
            conic-gradient(from 30deg at 20% 90%, 
                transparent 0deg,
                rgba(205, 170, 105, 0.06) 15deg,
                rgba(180, 140, 80, 0.12) 40deg,
                rgba(205, 170, 105, 0.06) 65deg,
                transparent 80deg
            ),
            /* Gradiente central para dar profundidad */
            radial-gradient(ellipse 80% 50% at 70% 20%, 
                rgba(197, 160, 89, 0.05) 0%, 
                transparent 60%
            ),
            linear-gradient(160deg, var(--color-bg-deep) 0%, var(--color-bg) 50%, var(--color-bg-deep) 100%);
    }
    
    .hero__orb--1 {
        width: 100%;
        height: 45%;
        top: 0;
        right: -20%;
        background: 
            radial-gradient(ellipse 100% 80% at 100% 0%, 
                rgba(195, 150, 85, 0.07) 0%, 
                rgba(200, 165, 100, 0.04) 30%,
                transparent 60%
            );
    }
    
    .hero__orb--2 {
        width: 80%;
        height: 40%;
        bottom: 0;
        left: -15%;
        background: 
            radial-gradient(ellipse 100% 100% at 0% 100%, 
                rgba(188, 145, 82, 0.05) 0%, 
                rgba(140, 109, 63, 0.03) 40%,
                transparent 70%
            );
    }
    
    .hero__orb--3 {
        display: none;
    }
    
    /* Rayos de luz para móvil */
    .hero__grid-lines::before {
        right: -5%;
        width: 2px;
        transform: rotate(20deg);
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(205, 170, 105, 0.6) 25%,
            rgba(230, 213, 167, 0.8) 50%,
            rgba(205, 170, 105, 0.6) 75%,
            transparent 100%
        );
    }
    
    .hero__grid-lines::after {
        right: 10%;
        width: 1px;
        transform: rotate(20deg);
        background: linear-gradient(180deg, 
            transparent 0%, 
            rgba(197, 160, 89, 0.3) 30%,
            rgba(215, 185, 130, 0.5) 50%,
            rgba(197, 160, 89, 0.3) 70%,
            transparent 100%
        );
    }
    
    /* Glow lines visibles en móvil */
    .hero__glow-line--1 {
        display: block;
        width: 200px;
        height: 2px;
        top: 20%;
        right: -5%;
        transform: rotate(-35deg);
    }
    
    .hero__glow-line--2 {
        display: block;
        width: 150px;
        height: 2px;
        bottom: 25%;
        left: -3%;
        transform: rotate(25deg);
    }
    
    /* Formas geométricas visibles */
    .hero__shape {
        opacity: 0.5;
    }
    
    .hero__shape--diamond {
        width: 20px;
        height: 20px;
        top: 12%;
        right: 8%;
    }
    
    .hero__shape--ring {
        width: 40px;
        height: 40px;
        bottom: 28%;
        left: 5%;
    }
    
    .hero__shape--cross {
        width: 15px;
        height: 15px;
        top: 50%;
        right: 15%;
    }
    
    .hero__shape--dot-1 {
        top: 8%;
        left: 15%;
    }
    
    .hero__shape--dot-2 {
        top: 40%;
        left: 3%;
    }
    
    .hero__shape--dot-3 {
        bottom: 40%;
        right: 5%;
    }
    
    /* Noise más sutil */
    .hero__noise {
        opacity: 0.1;
    }
    
    .programs {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1.5rem;
    }
    
    .programs {
        padding: 4rem 1.25rem;
    }
    
    .programs__gradient-bg {
        background: 
            radial-gradient(ellipse 100% 50% at 0% 0%, 
                rgba(197, 160, 89, 0.08) 0%, 
                transparent 40%
            ),
            radial-gradient(ellipse 80% 50% at 100% 100%, 
                rgba(140, 109, 63, 0.06) 0%, 
                transparent 40%
            ),
            #f5f3ee;
    }
    
    .programs__pattern {
        background-size: 50px 50px;
        opacity: 0.25;
    }
    
    .programs__deco {
        display: none;
    }
    
    .programs__geo {
        display: none;
    }
    
    .programs__circle--3 {
        display: none;
    }
    
    .programs__header {
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .programs__title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-left: 0;
    }
    
    .programs__description {
        margin-left: 0;
    }
    
    /* Reveal Grid Responsive - Mobile */
    .programs__header {
        margin-bottom: 3rem;
        text-align: left;
    }
    
    .programs__header-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        letter-spacing: -1px;
    }
    
    .programs__header-title br {
        display: none;
    }
    
    .programs__header-desc {
        font-size: 0.95rem;
    }
    
    .programs__reveal {
        gap: 3rem;
    }
    
    .reveal__item {
        gap: 0.5rem;
    }
    
    .reveal__number span {
        font-size: 3.5rem;
    }
    
    .reveal__card-inner {
        padding: 1.75rem;
        border-radius: 20px;
    }
    
    .reveal__title {
        font-size: 1.4rem;
    }
    
    .reveal__subtitle {
        font-size: 0.9rem;
    }
    
    .reveal__desc {
        font-size: 0.875rem;
    }
    
    .reveal__btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .programs__floating-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .floating-stat {
        flex-direction: row;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
    }
    
    .programs__bg-num {
        display: none;
    }
}


/* ============================================
   PROGRAMS SECTION - LIGHT THEME WITH BRAND COLORS
   Marca: oro #c5a059, bronce #8c6d3f
   ============================================ */
.programs {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 4rem 8rem 4rem;
    background: #f5f3ee;
    z-index: 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Programs Background - Rich & Dynamic */
.programs__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.programs__gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Resplandor oro superior */
        radial-gradient(ellipse 70% 60% at -10% -10%, 
            rgba(197, 160, 89, 0.12) 0%, 
            transparent 50%
        ),
        /* Resplandor bronce inferior */
        radial-gradient(ellipse 80% 70% at 110% 110%, 
            rgba(140, 109, 63, 0.1) 0%, 
            transparent 50%
        ),
        /* Subtle center glow */
        radial-gradient(ellipse 50% 50% at 50% 50%, 
            rgba(140, 109, 63, 0.03) 0%, 
            transparent 70%
        ),
        #f5f3ee;
}

/* Geometric Pattern Overlay */
.programs__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%238c6d3f' stroke-width='0.3' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

/* Decorative Elements */
.programs__deco {
    position: absolute;
    pointer-events: none;
}

.programs__deco--1 {
    top: 8%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatDeco 8s ease-in-out infinite;
}

.programs__deco--2 {
    bottom: 15%;
    right: 8%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(140, 109, 63, 0.12) 0%, rgba(140, 109, 63, 0.04) 100%);
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    animation: floatDeco 10s ease-in-out infinite reverse;
}

.programs__deco--3 {
    top: 50%;
    left: -3%;
    width: 100px;
    height: 200px;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.08) 0%, transparent 100%);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.programs__deco--4 {
    top: 20%;
    right: -2%;
    width: 80px;
    height: 160px;
    background: linear-gradient(180deg, rgba(140, 109, 63, 0.06) 0%, transparent 100%);
    border-radius: 50%;
    transform: rotate(15deg);
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Geometric SVG Elements */
.programs__geo {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.programs__geo--1 {
    top: 15%;
    right: 15%;
    width: 80px;
    height: 80px;
    color: #8c6d3f;
    opacity: 0.15;
    animation: rotateGeo 20s linear infinite;
}

.programs__geo--2 {
    bottom: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    color: #c5a059;
    opacity: 0.12;
    animation: rotateGeo 25s linear infinite reverse;
}

.programs__geo--3 {
    top: 40%;
    right: 5%;
    width: 50px;
    height: 50px;
    color: #8c6d3f;
    opacity: 0.1;
    animation: rotateGeo 15s linear infinite;
}

@keyframes rotateGeo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Decorative Circles */
.programs__circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.programs__circle--1 {
    top: 25%;
    right: 20%;
    width: 12px;
    height: 12px;
    background: #c5a059;
    opacity: 0.6;
    animation: pulseDot 3s ease-in-out infinite;
}

.programs__circle--2 {
    bottom: 30%;
    left: 15%;
    width: 8px;
    height: 8px;
    background: #8c6d3f;
    opacity: 0.5;
    animation: pulseDot 4s ease-in-out infinite 1s;
}

.programs__circle--3 {
    top: 60%;
    left: 25%;
    width: 6px;
    height: 6px;
    background: #c5a059;
    opacity: 0.4;
    animation: pulseDot 3.5s ease-in-out infinite 0.5s;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

/* Programs Container */
.programs__container {
    position: relative;
    max-width: 1400px;
    margin:8rem  auto 0 auto;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.programs__header {
    margin-bottom: 4rem;
    text-align: center;
}

.programs__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(140, 109, 63, 0.08);
    border: 1px solid rgba(140, 109, 63, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.programs__label-line {
    width: 8px;
    height: 8px;
    background: #8c6d3f;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.programs__label-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8c6d3f;
}

.programs__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1e2a35;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(40px);
}

.programs__title-accent {
    color: #c5a059;
}

.programs__description {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.7;
    color: #666680;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

/* ============================================
   PROGRAMS ROWS - BLUR REVEAL DESIGN
   ============================================ */

/* Programs Header */
.programs__header {
    position: relative;
    z-index: 15;
    text-align: left;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
}

.programs__header-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(140, 109, 63, 0.06);
    border: 1px solid rgba(140, 109, 63, 0.12);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8c6d3f;
}

.programs__header-dot {
    width: 8px;
    height: 8px;
    background: #8c6d3f;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.programs__header-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1e2a35;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.programs__header-accent {
    color: #c5a059;
}

.programs__header-desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.7;
    color: #666680;
    max-width: 500px;
}

/* Programs Rows Container */
.programs__rows {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

/* Individual Program Row */
.program-row {
    position: relative;
    display: grid;
    grid-template-columns: 16px 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Blur Reveal Effect - Initial State */
.program-row__content,
.program-row__arrow {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-60px);
}

/* Indicator Square */
.program-row__indicator {
    width: 16px;
    height: 16px;
    background: var(--row-color, #8c6d3f);
    border-radius: 3px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Content Area */
.program-row__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1e2a35;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.program-row__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: #666680;
    max-width: 700px;
    transition: color 0.4s ease;
}

/* Arrow */
.program-row__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.program-row__arrow svg {
    width: 28px;
    height: 28px;
    color: #8c6d3f;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Effects */
.program-row:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background: rgba(140, 109, 63, 0.02);
    margin: 0 -1.5rem;
    padding: 2.5rem 1.5rem;
}

.program-row:hover .program-row__title {
    color: #8c6d3f;
}

.program-row:hover .program-row__indicator {
    transform: scale(1.3) rotate(45deg);
}

.program-row:hover .program-row__arrow svg {
    color: #c5a059;
    transform: translateX(8px);
}

/* Active/Revealed State */
.program-row.revealed .program-row__indicator {
    opacity: 1;
    transform: scale(1);
}

.program-row.revealed .program-row__content {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.program-row.revealed .program-row__arrow {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* Same Animation for All Rows - No staggered delays */
.program-row.revealed .program-row__content { transition-delay: 0s; }
.program-row.revealed .program-row__arrow { transition-delay: 0.1s; }

/* Word by Word Blur Reveal Effect */
.program-row__title .word,
.program-row__desc .word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row.revealed .program-row__title .word,
.program-row.revealed .program-row__desc .word {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* Programs Rows - Responsive */
@media (max-width: 1200px) {
    .programs {
        padding: 6rem 3rem 1rem 3rem;
    }
    
    .programs__header {
        margin-bottom: 4rem;
    }
    
    .program-row {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .program-row:hover {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 968px) {
    .programs {
        padding: 5rem 2rem 1rem 2rem;
    }
    
    .programs__header {
        margin-bottom: 3rem;
    }
    
    .program-row {
        grid-template-columns: 12px 1fr auto;
    gap: 1.5rem;
        padding: 1.75rem 0;
    }
    
    .program-row__indicator {
        width: 12px;
        height: 12px;
    }
    
    .program-row__arrow {
        width: 40px;
        height: 40px;
    }
    
    .program-row__arrow svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .programs {
        padding: 4rem 1.5rem 1rem 1.5rem;
    }
    
    .programs__header {
        margin-bottom: 2.5rem;
    }
    
    .programs__header-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .program-row {
        grid-template-columns: 10px 1fr 36px;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .program-row__indicator {
        width: 10px;
        height: 10px;
        border-radius: 2px;
    }
    
    .program-row__title {
        font-size: 1.2rem;
    }
    
    .program-row__desc {
        font-size: 0.875rem;
    }
    
    .program-row__arrow {
        width: 36px;
        height: 36px;
    }
    
    .program-row__arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .program-row:hover {
        margin: 0 -1rem;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .programs {
        padding: 3rem 1rem 1rem 1rem;
    }
    
    .programs__header-label {
        padding: 0.4rem 1rem;
        font-size: 0.6rem;
    }
    
    .programs__header-title {
        font-size: 1.75rem;
    }
    
    .programs__header-desc {
        font-size: 0.9rem;
    }
    
    .program-row {
        grid-template-columns: 8px 1fr 32px;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }
    
    .program-row__indicator {
        width: 8px;
        height: 8px;
    }
    
    .program-row__title {
        font-size: 1.1rem;
    }
    
    .program-row__desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .program-row__arrow {
        width: 32px;
        height: 32px;
    }
    
    .program-row__arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .program-row:hover {
        margin: 0 -0.75rem;
        padding: 1.25rem 0.75rem;
    }
}

/* ============================================
   PROGRAM ACCORDION STYLES
   ============================================ */
.program-accordion {
    border-bottom: 1px solid rgba(140, 109, 63, 0.08);
}

/* Accordion Reveal Animation */
.program-accordion .program-row__indicator {
    opacity: 0;
    transform: scale(0);
}

.program-accordion .program-row__content {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-60px);
}

.program-accordion .program-accordion__toggle {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.program-accordion.revealed .program-row__indicator {
    opacity: 1;
    transform: scale(1);
}

.program-accordion.revealed .program-row__content {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.program-accordion.revealed .program-accordion__toggle {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Word by Word Blur Reveal Effect for Accordions */
.program-accordion .program-row__title .word,
.program-accordion .program-row__desc .word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-accordion.revealed .program-row__title .word,
.program-accordion.revealed .program-row__desc .word {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.program-accordion:last-child {
    border-bottom: none;
}

.program-accordion__header {
    display: grid;
    grid-template-columns: 16px 1fr 48px;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-accordion__header:hover {
    padding-left: 1rem;
}

.program-accordion__header:hover .program-row__title {
    color: #8c6d3f;
}

.program-accordion__toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 109, 63, 0.05);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-accordion__toggle svg {
    width: 20px;
    height: 20px;
    color: #8c6d3f;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-accordion.active .program-accordion__toggle {
    background: #8c6d3f;
    transform: rotate(45deg);
}

.program-accordion.active .program-accordion__toggle svg {
    color: #ffffff;
}

.program-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    opacity: 0;
    padding: 0 0 0 2.5rem;
}

.program-accordion.active .program-accordion__panel {
    max-height: 500px;
    opacity: 1;
    padding: 0 0 2rem 2.5rem;
}

/* Program Subitem Styles */
.program-subitem {
    display: grid;
    grid-template-columns: 44px 1fr 36px;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(140, 109, 63, 0.03);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.program-subitem:last-child {
    margin-bottom: 0;
}

.program-subitem:hover {
    background: rgba(140, 109, 63, 0.08);
    border-color: rgba(140, 109, 63, 0.12);
    transform: translateX(8px);
}

.program-subitem__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sub-color, #8c6d3f);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.program-subitem__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1) brightness(2);
}

.program-subitem__icon svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.program-subitem:hover .program-subitem__icon {
    transform: scale(1.1) rotate(-5deg);
}

.program-subitem__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.program-subitem__name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e2a35;
    transition: color 0.3s ease;
}

.program-subitem:hover .program-subitem__name {
    color: #8c6d3f;
}

.program-subitem__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666680;
    line-height: 1.4;
}

.program-subitem__arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.program-subitem__arrow svg {
    width: 18px;
    height: 18px;
    color: #c5a059;
}

.program-subitem:hover .program-subitem__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Subitem variant */
.program-subitem--cta {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(197, 160, 89, 0.03) 100%);
    border: 1px dashed rgba(197, 160, 89, 0.3);
}

.program-subitem--cta:hover {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.08) 100%);
    border-color: #c5a059;
}

/* Accordion Responsive */
@media (max-width: 768px) {
    .program-accordion__header {
        grid-template-columns: 12px 1fr 40px;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .program-accordion__toggle {
        width: 40px;
        height: 40px;
    }
    
    .program-accordion__toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .program-accordion__panel {
        padding-left: 1.5rem;
    }
    
    .program-accordion.active .program-accordion__panel {
        padding: 0 0 1.5rem 1.5rem;
    }
    
    .program-subitem {
        grid-template-columns: 38px 1fr 32px;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .program-subitem__icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .program-subitem__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .program-subitem__name {
        font-size: 1rem;
    }
    
    .program-subitem__desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .program-accordion__header {
        grid-template-columns: 10px 1fr 36px;
        gap: 0.75rem;
    }
    
    .program-accordion__toggle {
        width: 36px;
        height: 36px;
    }
    
    .program-accordion__panel {
        padding-left: 1rem;
    }
    
    .program-accordion.active .program-accordion__panel {
        padding: 0 0 1rem 1rem;
    }
    
    .program-subitem {
        grid-template-columns: 32px 1fr;
        gap: 0.5rem;
    }
    
    .program-subitem__arrow {
        display: none;
    }
    
    .program-subitem__icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .program-subitem__icon svg {
        width: 16px;
        height: 16px;
    }
    
    .program-subitem__name {
        font-size: 0.95rem;
    }
    
    .program-subitem__desc {
        font-size: 0.75rem;
    }
}

/* ============================================
   CLIENTS MARQUEE SECTION
   ============================================ */
.clients {
    position: relative;
    width: 100%;
    padding: 4rem 0 4rem 0;

    overflow: hidden;
    z-index: 10;
}

.clients__container {
    width: 100%;
}

.clients__header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

.clients__label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #666680;
    text-transform: uppercase;
}

.clients__marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients__marquee::before,
.clients__marquee::after
{
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients__marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f5f3ee 0%, transparent 100%);
}

.clients__marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f5f3ee 0%, transparent 100%);
}

.clients__track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: clientsScroll 180s linear infinite;
    width: max-content;
}

@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients__logo {
    flex-shrink: 0;
    width: 240px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.clients__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.clients__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Clients Responsive */
@media (max-width: 768px) {
    .clients {
        padding: 3rem 0;
    }
    
    .clients__header {
        margin-bottom: 2rem;
    }
    
    .clients__label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .clients__track {
        gap: 2rem;
    }
    
    .clients__logo {
        width: 100px;
        height: 50px;
    }
    
    .clients__marquee::before,
    .clients__marquee::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .clients {
        padding: 2rem 0;
    }
    
    .clients__track {
        gap: 1.5rem;
        animation-duration: 70s;
    }
    
    .clients__logo {
        width: 80px;
        height: 40px;
    }
    
    .clients__marquee::before {
        width: 50px;
    }
}

/* Program Cards - Light Theme with Brand Colors */
.program-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(140, 109, 63, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.02);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8c6d3f 0%, #c5a059 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 100% 0%, rgba(140, 109, 63, 0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.program-card:hover {
    border-color: rgba(140, 109, 63, 0.15);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(140, 109, 63, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.05);
}

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

.program-card:hover::after {
    background: radial-gradient(circle at 100% 0%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
}

.program-card__number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(140, 109, 63, 0.06);
    line-height: 1;
    pointer-events: none;
}

.program-card__label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8c6d3f;
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(140, 109, 63, 0.08);
    border-radius: 20px;
}

.program-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    padding: 14px;
    background: linear-gradient(135deg, #8c6d3f 0%, #a07845 100%);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(140, 109, 63, 0.25);
}

.program-card:hover .program-card__icon {
    background: linear-gradient(135deg, #c5a059 0%, #dcc090 100%);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.3);
    transform: scale(1.08) rotate(-3deg);
}

.program-card__icon svg {
    width: 100%;
    height: 100%;
}

.program-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e2a35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.program-card:hover .program-card__title {
    color: #8c6d3f;
}

.program-card__subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c5a059;
    margin-bottom: 1rem;
}

.program-card__description {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666680;
    margin-bottom: 1.5rem;
}

.program-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8c6d3f;
    text-decoration: none;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.program-card__link:hover {
    color: #c5a059;
}

.program-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(140, 109, 63, 0.08);
    border-radius: 50%;
    color: #8c6d3f;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card__link:hover .program-card__arrow {
    background: #c5a059;
    color: #ffffff;
    transform: translateX(4px);
}

/* CTA Card - Special Styling with Coral */
.program-card--cta {
    background: linear-gradient(135deg, #c5a059 0%, #dcc090 100%);
    border: none;
    grid-column: span 1;
}

.program-card--cta::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%
    );
    opacity: 1;
}

.program-card--cta:hover {
    box-shadow: 
        0 20px 50px rgba(197, 160, 89, 0.35),
        0 8px 16px rgba(197, 160, 89, 0.2);
}

.program-card--cta .program-card__number {
    color: rgba(255, 255, 255, 0.15);
}

.program-card--cta .program-card__label {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.program-card--cta .program-card__icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-card--cta:hover .program-card__icon {
    background: #ffffff;
    color: #c5a059;
}

.program-card--cta .program-card__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.program-card--cta:hover .program-card__title {
    color: #ffffff;
}

.program-card--cta .program-card__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.program-card--cta .program-card__description {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.program-card--cta .program-card__link {
    color: #ffffff;
    border-top-color: rgba(255, 255, 255, 0.2);
}

.program-card--cta .program-card__arrow {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.program-card--cta .program-card__link:hover .program-card__arrow {
    background: #ffffff;
    color: #c5a059;
}

.program-card__link--cta {
    color: #c5a059;
    font-size: 1rem;
}

.program-card__link--cta:hover {
    color: #ffffff;
}

/* ============================================
   GALLERY - CINEMATIC MARQUEE SECTION
   ============================================ */
.gallery {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 10rem 0;
    background: #0d141c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background */
.gallery__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gallery__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(140, 109, 63, 0.06) 0%, transparent 50%);
}

/* Marquee Wrapper */
.gallery__marquee-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Giant Text */
.gallery__text {
    padding: 0 4rem;
    margin-bottom: 2rem;
}

.gallery__heading {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
}

.gallery__heading-word {
    color: #ffffff;
    opacity: 0;
    transform: translateY(100px) rotateX(45deg);
    transform-origin: bottom center;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__heading-word--outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
}

.gallery__heading-word.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Marquee Container */
.gallery__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.gallery__track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 90s linear infinite;
}

.gallery__track--reverse {
    animation: marqueeScrollReverse 85s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Pause on hover */
.gallery__marquee:hover .gallery__track {
    animation-play-state: paused;
}

/* Individual Slides */
.gallery__slide {
    position: relative;
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #1e2a35;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.gallery__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery__slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.4s ease;
    z-index: 3;
    pointer-events: none;
}

.gallery__slide:hover {
    transform: scale(1.08) translateY(-10px);
    z-index: 20;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(197, 160, 89, 0.2);
}

.gallery__slide:hover::before {
    opacity: 1;
}

.gallery__slide:hover::after {
    border-color: rgba(197, 160, 89, 0.5);
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__slide:hover img {
    transform: scale(1.15);
}

/* CTA Button */
.gallery__cta {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 0 4rem;
}

.gallery__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.gallery__cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c5a059 0%, #dcc090 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.gallery__cta-btn:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3);
}

.gallery__cta-btn:hover::before {
    opacity: 1;
}

.gallery__cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.gallery__cta-btn:hover svg {
    transform: translate(5px, -5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery {
        padding: 8rem 0;
    }
    
    .gallery__heading {
        font-size: clamp(3rem, 10vw, 7rem);
        letter-spacing: -2px;
    }
    
    .gallery__slide {
        width: 350px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 6rem 0;
    }
    
    .gallery__text {
        padding: 0 1.5rem;
    }
    
    .gallery__heading {
        font-size: clamp(2.5rem, 12vw, 5rem);
        gap: 0.25rem 1rem;
        letter-spacing: -1px;
    }
    
    .gallery__slide {
        width: 280px;
        height: 200px;
        border-radius: 12px;
    }
    
    .gallery__cta {
        padding: 0 1.5rem;
        margin-top: 3rem;
    }
    
    .gallery__cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery__heading {
        font-size: clamp(2rem, 14vw, 3.5rem);
    }
    
    .gallery__heading-word--outline {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    }
    
    .gallery__slide {
        width: 220px;
        height: 160px;
    }
    
    .gallery__track {
        gap: 1rem;
    }
}

/* ============================================
   ABOUT SECTION - STAGGERED TEXT + VIDEO
   ============================================ */
.about {
    position: relative;
    width: 100%;
    min-height: 150vh;
    background: #f5f3ee;
    overflow: hidden;
}

/* Container */
.about__container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Text Section - Sticky */
.about__text-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
}

/* Stagger Wrapper */
.about__stagger-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

/* Stagger Lines */
.about__stagger-line {
    overflow: hidden;
}

.about__word {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.95;
    color: #1e2a35;
    letter-spacing: -4px;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Initial offset positions */
.about__stagger-line--1 .about__word {
    transform: translateX(-200px);
}

.about__stagger-line--2 .about__word {
    transform: translateX(150px);
}

.about__stagger-line--3 .about__word {
    transform: translateX(-50px);
}

/* Description */
.about__description {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.8;
    color: #666680;
    max-width: 650px;
    opacity: 0;
    transform: translateY(40px);
}

/* Video Section */
.about__video-section {
    position: relative;
    padding: 0 0 6rem;
    margin-top: -10rem;
    opacity: 0;
    transform: translateY(60px);
}

.about__video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #1e2a35;
    box-shadow: 
        0 80px 160px rgba(0, 0, 0, 0.15),
        0 40px 80px rgba(0, 0, 0, 0.1);
}

.about__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__video-container:hover .about__video {
    transform: scale(1.03);
}

/* Video Overlay */
.about__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 5;
}

.about__video-container.playing .about__video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Play Button */
.about__play-btn {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about__play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.about__play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2a35;
}

.about__play-icon svg {
    width: 40px;
    height: 40px;
    margin-left: 6px;
}

/* About Responsive */
@media (max-width: 1440px) {
    .about__word {
        font-size: clamp(3.5rem, 8vw, 7rem);
        letter-spacing: -3px;
    }
    
    .about__video-section {
        margin-top: 0;
    }
}

@media (max-width: 1200px) {
    .about__container {
        padding: 0 3rem;
    }
    
    .about__word {
        font-size: clamp(3rem, 7vw, 5.5rem);
        letter-spacing: -2px;
    }
}

@media (max-width: 768px) {
    .about {
        min-height: 180vh;
    }
    
    .about__container {
        padding: 0 1.5rem;
    }
    
    .about__word {
        font-size: clamp(2.5rem, 12vw, 5rem);
        letter-spacing: -2px;
    }
    
    .about__stagger-line--1 .about__word {
        transform: translateX(-100px);
    }
    
    .about__stagger-line--2 .about__word {
        transform: translateX(80px);
    }
    
    .about__stagger-line--3 .about__word {
        transform: translateX(-30px);
    }
    
    .about__description {
        font-size: 1rem;
    }
    
    .about__video-container {
        border-radius: 16px;
    }
    
    .about__play-btn {
        width: 80px;
        height: 80px;
    }
    
    .about__play-icon svg {
        width: 28px;
        height: 28px;
        margin-left: 4px;
    }
}

@media (max-width: 480px) {
    .about {
        min-height: 160vh;
    }
    
    .about__container {
        padding: 0 1rem;
    }
    
    .about__word {
        font-size: clamp(2rem, 14vw, 3.5rem);
        letter-spacing: -1px;
    }
    
    .about__stagger-line--1 .about__word {
        transform: translateX(-60px);
    }
    
    .about__stagger-line--2 .about__word {
        transform: translateX(50px);
    }
    
    .about__stagger-line--3 .about__word {
        transform: translateX(-20px);
    }
    
    .about__play-btn {
        width: 60px;
        height: 60px;
    }
    
    .about__play-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal__container {
    position: relative;
    z-index: 1001;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal__container {
    transform: scale(1);
}

.video-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-modal__close svg {
    width: 20px;
    height: 20px;
}

.video-modal__video-wrapper {
    width: 100%;
    height: 100%;
}

.video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
}

@media (max-width: 1400px) {
    .hero-gallery__container {
        aspect-ratio: 16 / 10;
    }
    
    .hero-gallery__center {
        width: 55%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .hero-gallery__window {
        width: 30%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .hero-gallery__window--7 {
        width: 24%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 1200px) {
    .hero-gallery {
        padding: 4rem 2rem;
    }
    
    .hero-gallery__container {
        aspect-ratio: 16 / 11;
    }
    
    .hero-gallery__center {
        width: 65%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .hero-gallery__window {
        width: 32%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .hero-gallery__window--7 {
        width: 25%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .hero-gallery {
        padding: 4rem 1.5rem;
    }
    
    .hero-gallery__container {
        aspect-ratio: 9 / 16;
        max-width: 100%;
    }
    
    .hero-gallery__center {
        width: 65%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .hero-gallery__window {
        width: 22%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .hero-gallery__window--1 {
        top: 3%;
        left: 3%;
    }
    
    .hero-gallery__window--2 {
        top: 3%;
        right: 3%;
    }
    
    .hero-gallery__window--3 {
        top: 50%;
        left: 3%;
        transform: translateY(-50%);
    }
    
    .hero-gallery__window--4 {
        top: 50%;
        right: 3%;
        transform: translateY(-50%);
    }
    
    .hero-gallery__window--5 {
        bottom: 3%;
        left: 8%;
    }
    
    .hero-gallery__window--6 {
        bottom: 3%;
        right: 8%;
    }
    
    .hero-gallery__window--7 {
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 16%;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {


    .hero-gallery {
        padding: 3rem 1rem;
    }
    
    .hero-gallery__container {
        aspect-ratio: 9 / 16;
        max-width: 100%;
    }
    
    .hero-gallery__center {
        width: 70%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .hero-gallery__window {
        width: 20%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    
    .hero-gallery__window--1 {
        top: 2%;
        left: 2%;
    }
    
    .hero-gallery__window--2 {
        top: 2%;
        right: 2%;
    }
    
    .hero-gallery__window--3 {
        top: 50%;
        left: 2%;
        transform: translateY(-50%);
    }
    
    .hero-gallery__window--4 {
        top: 50%;
        right: 2%;
        transform: translateY(-50%);
    }
    
    .hero-gallery__window--5 {
        bottom: 2%;
        left: 6%;
    }
    
    .hero-gallery__window--6 {
        bottom: 2%;
        right: 6%;
    }
    
    .hero-gallery__window--7 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 14%;
        aspect-ratio: 4 / 3;
    }
    
    .video-modal__container {
        width: 95%;
        border-radius: 8px;
    }
    
    .video-modal__close {
        width: 36px;
        height: 36px;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .video-modal__close svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   TESTIMONIALS SECTION - Stories Layout
   ============================================ */

.testimonials {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a2530 0%, #121b26 50%, #0d141c 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* Background */
.testimonials__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.testimonials__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(140, 109, 63, 0.2) 0%, transparent 50%);
}

.testimonials__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
}

.testimonials__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.testimonials__bg-glow--1 {
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(197, 160, 89, 0.3);
    animation: glowPulse 6s ease-in-out infinite;
}

.testimonials__bg-glow--2 {
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(140, 109, 63, 0.4);
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* Container */
.testimonials__container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.testimonials__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header */
.testimonials__header {
    margin-bottom: 0;
}

.testimonials__title {
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonials__title-line {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.testimonials__title-line--accent {
    color: #c5a059;
    text-shadow: 0 0 40px rgba(197, 160, 89, 0.4);
}

/* Testimonial List */
.testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonials__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
}

.testimonials__item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.testimonials__item.active {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.3);
}

.testimonials__item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
    margin-top: 2px;
}

.testimonials__item-icon svg {
    width: 100%;
    height: 100%;
}

.testimonials__item.active .testimonials__item-icon,
.testimonials__item:hover .testimonials__item-icon {
    color: #c5a059;
}

.testimonials__item-content {
    display: block;
}

.testimonials__item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    display: inline;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.testimonials__item.active .testimonials__item-name {
    color: #c5a059;
}

.testimonials__item-company {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    display: inline;
}

.testimonials__item-company::before {
    content: '·';
    margin: 0 0.4rem;
    color: rgba(255, 255, 255, 0.4);
}

.testimonials__item.active .testimonials__item-company {
    color: rgba(197, 160, 89, 0.7);
}

.testimonials__item.active .testimonials__item-company::before {
    color: rgba(197, 160, 89, 0.5);
}

.testimonials__item-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    display: block;
    margin-top: 0.25rem;
}

/* Phone Wrapper */
.testimonials__phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.testimonials__phone {
    position: relative;
}

/* Phone Frame */
.testimonials__phone-frame {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a2a 0%, #0f0f18 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonials__phone:hover .testimonials__phone-frame {
    transform: translateY(-15px) rotateY(-5deg) rotateX(5deg);
}

.testimonials__phone-speaker {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #2a2a3a;
    border-radius: 3px;
    z-index: 10;
}

.testimonials__phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
}

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

.testimonials__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.testimonials__video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, pointer-events 0s ease 0.3s;
    z-index: 2;
}

.testimonials__video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

.testimonials__play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__play-btn:hover {
    background: #c5a059;
    border-color: #c5a059;
    transform: scale(1.1);
}

.testimonials__play-btn svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    transform: translateX(3px);
}

/* Phone Shadow */
.testimonials__phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(15px);
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials__container {
        padding: 0 3rem;
        gap: 3rem;
    }
    
    .testimonials__phone-frame {
        width: 260px;
        height: 540px;
    }
    
}

@media (max-width: 968px) {
    .testimonials {
        padding: 6rem 0 5rem;
    }
    
    .testimonials__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .testimonials__content {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .testimonials__header {
        text-align: center;
    }
    
    .testimonials__title {
        align-items: center;
    }
    
    .testimonials__phone-wrapper {
        order: 0;
    }
    
    .testimonials__phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 44px;
    }
    
    .testimonials__list {
        max-width: 500px;
    }
    
    .testimonials__item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .testimonials__phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 38px;
        padding: 10px;
    }
    
    .testimonials__phone-screen {
        border-radius: 30px;
    }
    
    .testimonials__phone-speaker {
        width: 60px;
        height: 5px;
        top: 16px;
    }
    
    .testimonials__title-line {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .testimonials__item {
        padding: 0.875rem 1rem;
    }
    
    .testimonials__item-name {
        font-size: 0.95rem;
    }
    
    .testimonials__item-quote {
        font-size: 0.85rem;
    }
    
    .testimonials__play-btn {
        width: 60px;
        height: 60px;
    }
    
    .testimonials__play-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 5rem 0 4rem;
    }
    
    .testimonials__container {
        padding: 0 1.25rem;
        gap: 2.5rem;
    }
    
    .testimonials__phone-frame {
        width: 180px;
        height: 380px;
        border-radius: 34px;
        padding: 8px;
    }
    
    .testimonials__phone-screen {
        border-radius: 28px;
    }
    
    .testimonials__phone-speaker {
        width: 50px;
        height: 4px;
        top: 14px;
    }
    
    .testimonials__content {
        gap: 2rem;
    }
    
    .testimonials__list {
        gap: 0.5rem;
    }
    
    .testimonials__item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .testimonials__item-icon {
        width: 20px;
        height: 20px;
    }
    
    .testimonials__play-btn {
        width: 50px;
        height: 50px;
    }
    
    .testimonials__play-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 0;
    background: #0d141c;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Effects */
.contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(140, 109, 63, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
}

.contact__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px, 60px 60px;
}

.contact__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.contact__bg-glow--1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(140, 109, 63, 0.3);
    animation: glowPulse 8s ease-in-out infinite;
}

.contact__bg-glow--2 {
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(197, 160, 89, 0.25);
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Container */
.contact__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Left Content */
.contact__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c5a059;
    text-transform: uppercase;
}

.contact__label-dot {
    width: 8px;
    height: 8px;
    background: #c5a059;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.contact__title {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact__title-line {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -2px;
}

.contact__title-line--accent {
    color: #c5a059;
    text-shadow: 0 0 60px rgba(197, 160, 89, 0.4);
}

.contact__description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

/* Stats */
.contact__stats {
    display: flex;
    gap: 3rem;
}

.contact__stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8c6d3f;
    line-height: 1;
}

.contact__stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Form Wrapper */
.contact__form-wrapper {
    position: relative;
}

.contact__form {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 30%,
        rgba(140, 109, 63, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 70%,
        transparent 100%
    );
    border-radius: 24px 24px 0 0;
}

.contact__form-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact__form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact__form-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Form Grid */
.contact__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__field--full {
    grid-column: 1 / -1;
}

.contact__label-field {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.contact__input,
.contact__select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.contact__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact__input:focus,
.contact__select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #8c6d3f;
    box-shadow: 0 0 0 3px rgba(140, 109, 63, 0.2);
}

.contact__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.contact__select option {
    background: #1e2a35;
    color: #ffffff;
    padding: 1rem;
}

/* Submit Button */
.contact__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #c5a059 0%, #dcc090 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.contact__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
}

.contact__submit:active {
    transform: translateY(0);
}

.contact__submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact__submit:hover .contact__submit-icon {
    transform: translateX(4px);
}

.contact__submit-icon svg {
    width: 20px;
    height: 20px;
}

/* Privacy Text */
.contact__privacy {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact__privacy a {
    color: #8c6d3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact__privacy a:hover {
    color: #c5a059;
}

/* Contact Responsive */
@media (max-width: 1200px) {
    .contact__container {
        padding: 0 3rem;
        gap: 4rem;
    }
    
    .contact__title-line {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .contact__form {
        padding: 2.5rem;
    }
}

@media (max-width: 968px) {
    .contact {
        padding: 6rem 0;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .contact__content {
        text-align: center;
        align-items: center;
    }
    
    .contact__description {
        max-width: 100%;
    }
    
    .contact__stats {
        justify-content: center;
    }
    
    .contact__form {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact__form {
        padding: 2rem;
    }
    
    .contact__form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact__field--full {
        grid-column: 1;
    }
    
    .contact__stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .contact__stat {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact__container {
        padding: 0 1.25rem;
    }
    
    .contact__title-line {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        letter-spacing: -1px;
    }
    
    .contact__form {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .contact__form-title {
        font-size: 1.25rem;
    }
    
    .contact__input,
    .contact__select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact__submit {
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   BLOG SECTION - MAGAZINE STYLE
   ============================================ */

.blog {
    position: relative;
    width: 100%;
    padding: 10rem 0;
    background: #f5f3ee;
    overflow: hidden;
}

/* Background */
.blog__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blog__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(140, 109, 63, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
}

.blog__bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(140, 109, 63, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(140, 109, 63, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Container */
.blog__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 1;
}

/* Header */
.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    gap: 2rem;
}

.blog__header-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog__label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8c6d3f;
    text-transform: uppercase;
}

.blog__label-line {
    width: 40px;
    height: 2px;
    background: #8c6d3f;
}

.blog__title {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5rem;
    align-items: baseline;
}

.blog__title-word {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1e2a35;
    letter-spacing: -3px;
}

.blog__title-word--outline {
    color: transparent;
    -webkit-text-stroke: 2px #1e2a35;
    text-stroke: 2px #1e2a35;
}

/* View All Button */
.blog__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e2a35;
    text-decoration: none;
    border: 2px solid rgba(26, 26, 46, 0.15);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.blog__view-all:hover {
    background: #1e2a35;
    color: #ffffff;
    border-color: #1e2a35;
    transform: translateY(-2px);
}

.blog__view-all svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.blog__view-all:hover svg {
    transform: translate(3px, -3px);
}

/* Grid - 3 Cards Layout */
.blog__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    min-height: 600px;
}

/* Loading State */
.blog__loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 400px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
}

.blog__loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #c5a059;
    border-radius: 50%;
    animation: blogSpin 1s linear infinite;
}

@keyframes blogSpin {
    to { transform: rotate(360deg); }
}

.blog__empty,
.blog__error {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
    padding: 4rem 2rem;
}

.blog__error small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Card Base */
.blog__card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.blog__card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Featured Card - Left side, spans 2 rows */
.blog__card--featured {
    grid-row: span 2;
}

/* Vertical Cards - Right side, stack - Same style as featured */
.blog__card--vertical {
    position: relative;
    min-height: 280px;
}

.blog__card--vertical .blog__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog__card--vertical .blog__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #ffffff;
    background: transparent;
}

.blog__card--vertical .blog__card-overlay {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Card Image */
.blog__card-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.blog__card--featured .blog__card-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.blog__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.blog__card--featured .blog__card-overlay {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.blog__card:hover .blog__card-overlay {
    opacity: 1;
}

/* Card Content */
.blog__card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog__card--featured .blog__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: #ffffff;
}

/* Vertical cards - white text styles */
.blog__card--vertical .blog__card-title {
    color: #ffffff;
    font-size: 1.15rem;
}

.blog__card--vertical:hover .blog__card-title {
    color: #c5a059;
}

.blog__card--vertical .blog__card-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
}

.blog__card--vertical .blog__card-date,
.blog__card--vertical .blog__card-read {
    color: rgba(255, 255, 255, 0.6);
}

.blog__card--vertical .blog__card-category--coral {
    background: #c5a059;
    color: #ffffff;
}

.blog__card--vertical .blog__card-category--blue {
    background: #8c6d3f;
    color: #ffffff;
}

/* Category */
.blog__card-category {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
}

.blog__card-category--coral {
    background: rgba(197, 160, 89, 0.15);
    color: #c5a059;
}

.blog__card-category--blue {
    background: rgba(140, 109, 63, 0.15);
    color: #8c6d3f;
}

.blog__card--featured .blog__card-category--coral {
    background: #c5a059;
    color: #ffffff;
}

.blog__card--featured .blog__card-category--blue {
    background: #8c6d3f;
    color: #ffffff;
}

/* Title */
.blog__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1e2a35;
    transition: color 0.3s ease;
}

.blog__card--featured .blog__card-title {
    font-size: 1.75rem;
    color: #ffffff;
    line-height: 1.3;
}


.blog__card:hover .blog__card-title {
    color: #8c6d3f;
}

.blog__card--featured:hover .blog__card-title {
    color: #c5a059;
}

/* Excerpt */
.blog__card-excerpt {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Meta */
.blog__card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.blog__card-date,
.blog__card-read {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Number Decoration */
.blog__card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-stroke: 1px rgba(255, 255, 255, 0.15);
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.blog__card--vertical .blog__card-number {
    font-size: 3.5rem;
}

.blog__card:hover .blog__card-number {
    transform: translateX(-10px) scale(1.1);
    -webkit-text-stroke: 1px rgba(197, 160, 89, 0.3);
    text-stroke: 1px rgba(197, 160, 89, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .blog__container {
        padding: 0 3rem;
    }
    
    .blog__grid {
        gap: 1.5rem;
    }
    
    .blog__card-number {
        font-size: 4rem;
    }
    
    .blog__card--vertical .blog__card-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .blog {
        padding: 6rem 0;
    }
    
    .blog__container {
        padding: 0 2rem;
    }
    
    .blog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .blog__title-word {
        font-size: clamp(2.5rem, 8vw, 4rem);
        letter-spacing: -2px;
    }
    
    .blog__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    
    .blog__card--featured {
        grid-row: span 1;
        min-height: 400px;
    }
    
    .blog__card--vertical {
        min-height: 320px;
    }
    
    .blog__card-number {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog__title-word {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .blog__title-word--outline {
        -webkit-text-stroke: 1.5px #1e2a35;
        text-stroke: 1.5px #1e2a35;
    }
    
    .blog__card--featured .blog__card-content,
    .blog__card--vertical .blog__card-content {
        padding: 1.5rem;
    }
    
    .blog__card--featured .blog__card-title {
        font-size: 1.35rem;
    }
    
    .blog__card--vertical .blog__card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 4rem 0;
    }
    
    .blog__container {
        padding: 0 1.25rem;
    }
    
    .blog__label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .blog__view-all {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .blog__card {
        border-radius: 16px;
    }
    
    .blog__card--featured {
        min-height: 350px;
    }
    
    .blog__card--vertical {
        min-height: 280px;
    }
    
    .blog__card--featured .blog__card-title,
    .blog__card--vertical .blog__card-title {
        font-size: 1.1rem;
    }
    
    .blog__card-excerpt {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    width: 100%;
    padding: 6rem 0 2rem;
    background: #0d141c;
    overflow: hidden;
}

/* Background */
.footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(140, 109, 63, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 100% 100%, rgba(197, 160, 89, 0.06) 0%, transparent 50%);
}

.footer__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Container */
.footer__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 1;
}

/* Top Section */
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Brand */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer__logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer__logo-accent {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #c5a059;
    letter-spacing: 1px;
}

.footer__tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

/* Links */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__links-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer__links-list a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__links-list a:hover {
    color: #c5a059;
    transform: translateX(4px);
}

/* Contact */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__phone:hover {
    transform: translateX(4px);
}

.footer__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    color: #c5a059;
    transition: all 0.3s ease;
}

.footer__phone:hover .footer__phone-icon {
    background: #c5a059;
    color: #ffffff;
}

.footer__phone-icon svg {
    width: 20px;
    height: 20px;
}

.footer__phone-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Social */
.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__social-link:hover {
    background: #8c6d3f;
    border-color: #8c6d3f;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(140, 109, 63, 0.3);
}

.footer__social-link svg {
    width: 22px;
    height: 22px;
}

/* Divider */
.footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    margin-bottom: 2rem;
}

/* Bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer__copyright {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #c5a059;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer__container {
        padding: 0 3rem;
    }
    
    .footer__top {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .footer {
        padding: 5rem 0 2rem;
    }
    
    .footer__container {
        padding: 0 2rem;
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 4rem;
    }
    
    .footer__brand {
        grid-column: span 2;
    }
    
    .footer__tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer__brand {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }
    
    .footer__links {
        text-align: center;
        align-items: center;
    }
    
    .footer__links-list a:hover {
        transform: none;
    }
    
    .footer__contact {
        text-align: center;
        align-items: center;
    }
    
    .footer__phone:hover {
        transform: none;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer__legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 4rem 0 1.5rem;
    }
    
    .footer__container {
        padding: 0 1.25rem;
    }
    
    .footer__logo-text,
    .footer__logo-accent {
        font-size: 1.25rem;
    }
    
    .footer__tagline {
        font-size: 0.9rem;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer__social-link {
        width: 44px;
        height: 44px;
    }
    
    .footer__social-link svg {
        width: 20px;
        height: 20px;
    }
}
