/* ELUVIA MARKETING - CORE STYLES */
/* Universal brand CSS - loaded on every page */

/* ============================================
   CSS VARIABLES - BRAND COLORS & SPACING
   ============================================ */

   /* CSS VARIABLES */
:root {
    --primary-navy: #263159;
    --primary-magenta: #A61963;
    --secondary-teal: #17A7AF;
    --secondary-orange: #F09300;
    --white: #FFFFFF;
    --off-white: #FAF9F6;
}

:root {
    /* EXACT ELUVIA BRAND COLORS */
    --primary-magenta: #A61963;
    --primary-navy: #263159;
    --secondary-teal: #17A7AF;
    --secondary-orange: #F09300;
    --secondary-dark-teal: #036C7E;
    --secondary-purple: #752574;
    --neutral-light: #E7E5E8;
    --black: #000000;
    --white: #FFFFFF;
    
    /* Section Spacing */
    --section-spacing: 6rem;
    --container-max-width: 1200px;
    
    /* Component Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quattrocento Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: var(--primary-navy);
    font-size: 1.05rem;
    overflow-x: hidden;
    background: #FFFFFF;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Headings - Mirza 500 (NEVER 600 or 700) */
h1, h2, h3 {
    font-family: 'Mirza', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h4, h5, h6 {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.5rem;
    max-width: 75ch;
}

.intro-content p,
.timeline-content p,
.faq-answer-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-magenta);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-purple);
}

p a {
    text-decoration: underline;
    text-decoration-color: rgba(166, 25, 99, 0.3);
    text-underline-offset: 3px;
}

p a:hover {
    text-decoration-color: var(--secondary-purple);
}

/* ============================================
   GRADIENT TEXT (Use ONLY on light backgrounds)
   ============================================ */

.gradient-text {
    background: linear-gradient(135deg, var(--primary-magenta) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--section-spacing) 0;
}


/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   GRIDS
   ============================================ */

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

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

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

/* ============================================
   SPLIT SECTIONS
   ============================================ */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: var(--section-spacing) 0;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    text-align: left;
}

.split-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LISTS
   ============================================ */

.checklist {
    list-style: none;
    margin-top: 2rem;
}

.checklist li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
}

.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-size: 1.2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--secondary-teal);
    outline-offset: 2px;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   NEW BUTTON SYSTEM - Búho, Primary, Secondary, Tertiary
   ============================================ */

/* BÚHO BUTTON - Hero CTAs Only */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(166, 25, 99, 0.5),
                0 0 30px rgba(255, 255, 255, 0.8),
                0 0 50px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(166, 25, 99, 0.6),
                0 0 50px rgba(255, 255, 255, 1),
                0 0 80px rgba(255, 255, 255, 0.7);
}

.buho-eye {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
}

/* Primary Button - Dark Backgrounds */
.btn-primary-dark {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--white);
    color: var(--primary-magenta) !important;
    border: 3px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-dark::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary-dark:hover {
    color: var(--white) !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary-dark:hover::before {
    opacity: 1;
}

/* Primary Button - Light Backgrounds */
.btn-primary-light {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(166, 25, 99, 0.25);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-light:hover::after {
    left: 100%;
}

.btn-primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(166, 25, 99, 0.35);
    filter: brightness(1.05);
}

/* Secondary Button - Dark Background */
.btn-secondary-dark {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: var(--white) !important;
    border: none;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.btn-secondary-dark .arrow-icon {
    width: 20px;
    height: 20px;
    -webkit-mask-image: url('https://cdn.emkt.mx/icons/navigation/icon-arrow-right.svg');
    mask-image: url('https://cdn.emkt.mx/icons/navigation/icon-arrow-right.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: var(--white);
    transition: transform 0.3s ease;
}

.btn-secondary-dark:hover {
    transform: translateX(4px);
}

.btn-secondary-dark:hover .arrow-icon {
    transform: translateX(4px);
}

/* Secondary Button - Light Background */
.btn-secondary-light {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    border: none;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.btn-secondary-light .btn-text {
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-secondary-light .arrow-icon {
    width: 20px;
    height: 20px;
    -webkit-mask-image: url('https://cdn.emkt.mx/icons/navigation/icon-arrow-right.svg');
    mask-image: url('https://cdn.emkt.mx/icons/navigation/icon-arrow-right.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    transition: transform 0.3s ease;
}

.btn-secondary-light:hover {
    transform: translateX(4px);
}

.btn-secondary-light:hover .arrow-icon {
    transform: translateX(4px);
}

/* Tertiary Button - Dark Background */
.btn-tertiary-dark {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-tertiary-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.btn-tertiary-dark:hover::before {
    left: 100%;
}

.btn-tertiary-dark:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Tertiary Button - Light Background */
.btn-tertiary-light {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary-magenta) !important;
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background-clip: padding-box;
}

.btn-tertiary-light::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.btn-tertiary-light:hover {
    background: rgba(166, 25, 99, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(166, 25, 99, 0.1);
}

.btn-tertiary-light:hover::before {
    opacity: 1;
}

/* Button Icons */
.btn-icon {
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .buho-eye {
        width: 30px;
        height: 30px;
    }
    
    .btn-primary-dark,
    .btn-primary-light {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-secondary-dark,
    .btn-secondary-light {
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
    }
    
    .btn-secondary-dark .arrow-icon,
    .btn-secondary-light .arrow-icon {
        width: 16px;
        height: 16px;
    }
    
    .btn-tertiary-dark,
    .btn-tertiary-light {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* ============================================
   HERO COMPONENTS - 15 PRODUCTION HEROES
   Added: December 3, 2025
   ============================================ */

/* Shared Hero Utilities */
.eyebrow {
    display: inline-block;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================================
   HERO 01: ANIMATED GRADIENT
   ============================================ */

.hero-gradient {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-magenta) 0%, var(--secondary-teal) 100%);
    padding: 8rem 2rem 6rem 2rem;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: bgMove 30s ease infinite;
}

@keyframes bgMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-gradient-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-gradient h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-gradient p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ============================================
   HERO 02: NEON GLOW
   ============================================ */

.hero-neon {
    min-height: 90vh;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem 2rem;
}

.neon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(23, 167, 175, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(166, 25, 99, 0.3) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite;
}

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

.neon-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.neon-title {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px rgba(23, 167, 175, 0.8),
        0 0 20px rgba(23, 167, 175, 0.6),
        0 0 30px rgba(23, 167, 175, 0.4);
    margin-bottom: 1.5rem;
}

.neon-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.glass-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glass-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.glass-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   HERO 03: GEOMETRIC STATS
   ============================================ */

.hero-geo {
    min-height: 90vh;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem 2rem;
}

.hero-geo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.geo-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.geo-text {
    text-align: center;
    margin-bottom: 3rem;
}

.geo-text .eyebrow {
    background: rgba(23, 167, 175, 0.2);
    color: var(--secondary-teal);
    border: 1.5px solid rgba(23, 167, 175, 0.6);
}

.geo-text h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.geo-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.geo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tag {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.geo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item strong {
    display: block;
    font-family: 'Mirza', serif;
    font-size: 3rem;
    color: var(--secondary-teal);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   HERO 04: DARK CINEMATIC
   ============================================ */

.hero-cinematic {
    min-height: 90vh;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 5% 6rem 5%;
}

.hero-cinematic::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, transparent 20%, var(--primary-navy) 20%, var(--primary-navy) 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, var(--primary-navy) 20%, var(--primary-navy) 80%, transparent 80%, transparent) 25px 25px;
    background-size: 50px 50px;
    opacity: 0.3;
    animation: starsRotate 200s linear infinite;
}

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

.hero-cinematic-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-cinematic-text .eyebrow {
    background: rgba(240, 147, 0, 0.15);
    color: var(--secondary-orange);
    border: 1.5px solid rgba(240, 147, 0, 0.6);
}

.hero-cinematic-text h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-cinematic-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-cinematic-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-cinematic-card h3 {
    color: white;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

/* ============================================
   HERO 05: MAGAZINE COVER
   ============================================ */

.hero-mag {
    min-height: 90vh;
    background: #FAF9F6;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 5% 6rem 5%;
}

.hero-mag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23263159' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zm60-20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zM30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zM50 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0-5.523-4.477-10-10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mag-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Mirza', serif;
    font-size: 20vw;
    font-weight: 500;
    color: var(--primary-navy);
    opacity: 0.03;
    white-space: nowrap;
    z-index: 0;
}

.mag-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.mag-content .eyebrow {
    background: rgba(23, 167, 175, 0.15);
    color: var(--secondary-teal);
    border: 1.5px solid rgba(23, 167, 175, 0.4);
}

.mag-subtitle {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
}

.mag-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    color: var(--primary-navy);
    opacity: 0.7;
    font-size: 0.95rem;
}

.mag-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mag-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HERO 06: DIGITAL PULSE
   ============================================ */

.hero-pulse {
    min-height: 90vh;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem 2rem;
}

.pulse-glow-1, .pulse-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: pulseGlow 8s ease-in-out infinite;
}

.pulse-glow-1 {
    top: -10%;
    right: 10%;
    background: var(--secondary-teal);
}

.pulse-glow-2 {
    bottom: -10%;
    left: 10%;
    background: var(--primary-magenta);
    animation-delay: 4s;
}

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

.pulse-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(23, 167, 175, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 167, 175, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.floating-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-teal);
    box-shadow: 0 0 20px var(--secondary-teal);
    animation: float 6s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 15%; animation-delay: 0s; }
.dot-2 { top: 60%; right: 20%; animation-delay: 1s; }
.dot-3 { bottom: 25%; left: 25%; animation-delay: 2s; }
.dot-4 { top: 40%; right: 15%; animation-delay: 3s; }
.dot-5 { bottom: 40%; right: 35%; animation-delay: 4s; }

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

.pulse-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.pulse-content .eyebrow {
    background: rgba(23, 167, 175, 0.2);
    color: var(--secondary-teal);
    border: 1.5px solid rgba(23, 167, 175, 0.6);
}

.pulse-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.pulse-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   HERO 07: ARCHITECTURAL OVERLAP
   ============================================ */

.hero-arch {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 5% 6rem 5%;
}

.arch-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-navy);
    z-index: 0;
}

.arch-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.arch-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.arch-image img {
    width: 100%;
    height: auto;
    display: block;
}

.arch-card {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    margin-left: -4rem;
}

.arch-card .eyebrow {
    background: rgba(240, 147, 0, 0.15);
    color: var(--secondary-orange);
    border: 1.5px solid rgba(240, 147, 0, 0.4);
}

.arch-card h1 {
    margin-bottom: 1.5rem;
}

.arch-card p {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* ============================================
   HERO 08: DIAGONAL SPLIT
   ============================================ */

.hero-diagonal {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-diagonal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, var(--primary-magenta) 0%, var(--secondary-purple) 100%);
    transform: skewX(-15deg);
    z-index: 0;
}

.hero-diagonal-content {
    position: relative;
    z-index: 1;
    padding: 8rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-diagonal-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-diagonal-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.parallax-image {
    position: relative;
    z-index: 1;
}

.parallax-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HERO 09: PARTICLE BACKGROUND
   ============================================ */

.hero-particle {
    min-height: 90vh;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem 2rem;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60px 70px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200px 200px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-particle-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.glitch-text {
    color: white;
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 0 0 1px rgba(23, 167, 175, 0.8);
    }
    95% {
        text-shadow: -2px 0 rgba(23, 167, 175, 0.8), 2px 0 rgba(166, 25, 99, 0.8);
    }
}

.hero-particle-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin: 2rem 0 2.5rem;
}

/* ============================================
   HERO 10: BASIC SPLIT
   ============================================ */

.hero-split {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: white;
}

.split-content {
    padding: 6rem 8% 6rem 5%;
}

.split-content .eyebrow {
    margin-bottom: 1.5rem;
}

.split-content h1 {
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.split-image {
    height: 100%;
    min-height: 600px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HERO 11: BENTO GRID
   ============================================ */

.hero-bento {
    min-height: 85vh;
    background: #FAF9F6;
    padding: 8rem 5% 6rem 5%;
    display: flex;
    align-items: center;
}

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

.bento-text .eyebrow {
    background: rgba(23, 167, 175, 0.2);
    color: var(--secondary-teal);
    border: 1.5px solid rgba(23, 167, 175, 0.4);
}

.bento-text h1 {
    margin-bottom: 1.5rem;
}

.bento-text p {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bento-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   HERO 12: MULTI-IMAGE GRID
   ============================================ */

.hero-multi-grid {
    min-height: 85vh;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F3F0 100%);
    padding: 8rem 5% 6rem 5%;
    display: flex;
    align-items: center;
}

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

.multi-grid-text .eyebrow {
    background: rgba(240, 147, 0, 0.15);
    color: var(--secondary-orange);
    border: 1.5px solid rgba(240, 147, 0, 0.4);
}

.multi-grid-text h1 {
    margin-bottom: 1.5rem;
}

.multi-grid-text p {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
}

.multi-grid-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.multi-grid-img-main {
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.multi-grid-img-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.multi-grid-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.multi-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HERO 13: SHORT FLOATING
   ============================================ */

.hero-short-floating {
    min-height: 70vh;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F3F0 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 5% 6rem 5%;
    display: flex;
    align-items: center;
}

.hero-short-floating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(23, 167, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(166, 25, 99, 0.06) 0%, transparent 50%);
}

.short-floating-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.short-floating-text h1 {
    margin-bottom: 1.5rem;
}

.short-floating-text p {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
}

.short-floating-images {
    position: relative;
    height: 400px;
}

.floating-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.floating-img-1 {
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
    animation: floatImg 6s ease-in-out infinite;
}

.floating-img-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: floatImg 6s ease-in-out infinite 2s;
}

.floating-img-3 {
    width: 140px;
    height: 140px;
    bottom: 0;
    left: 30%;
    animation: floatImg 6s ease-in-out infinite 4s;
}

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

/* ============================================
   HERO 14: TYPOGRAPHY FOCUS
   ============================================ */

.hero-type {
    min-height: 85vh;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F3F0 100%);
    padding: 8rem 5% 6rem 5%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-type::before,
.hero-type::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        var(--primary-navy) 0px,
        var(--primary-navy) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.08;
}

.hero-type::before {
    left: 5%;
}

.hero-type::after {
    right: 5%;
}

.hero-type-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-type-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-type-display {
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-type-lead {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-type-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.type-stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.type-stat-item strong {
    display: block;
    font-family: 'Mirza', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.type-stat-item span {
    color: var(--primary-navy);
    font-size: 0.95rem;
}

/* ============================================
   HERO 15: BICULTURAL BRIDGE
   ============================================ */

.hero-bridge {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.bridge-left {
    background: var(--primary-navy);
    padding: 8rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.bridge-left h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.bridge-left p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.bridge-right {
    position: relative;
}

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

.bridge-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 400px;
    z-index: 2;
}

.bridge-card h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* ============================================
   HERO MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    /* Bento Grid Mobile */
    .bento-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bento-text {
        order: 1;
    }
    
    .bento-grid {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    /* All Two-Column Heroes */
    .hero-cinematic-grid,
    .mag-container,
    .arch-container,
    .hero-diagonal,
    .hero-split,
    .multi-grid-container,
    .short-floating-container,
    .hero-bridge {
        grid-template-columns: 1fr !important;
    }
    
    /* Glass Cards */
    .glass-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Geo Stats */
    .geo-stats {
        grid-template-columns: 1fr;
    }
    
    /* Type Stats */
    .hero-type-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Floating Images Hide on Mobile */
    .short-floating-images {
        display: none;
    }
    
    /* Padding Adjustments */
    .hero-gradient,
    .hero-neon,
    .hero-geo,
    .hero-cinematic,
    .hero-mag,
    .hero-pulse,
    .hero-arch,
    .hero-particle,
    .hero-bento,
    .hero-multi-grid,
    .hero-short-floating,
    .hero-type {
        padding: 6rem 5% 4rem 5%;
        min-height: auto;
    }
    
    /* Hero Split/Diagonal Special Cases */
    .hero-split,
    .hero-diagonal {
        min-height: auto;
    }
    
    .split-image {
        min-height: 400px;
    }
}

/* ==========================================================================
   HEADER NAVIGATION SYSTEM
   ========================================================================== */

/* Header Wrapper */
.emkt-header-wrapper {
    position: relative;
    z-index: 1000;
}

/* Main Header */
.emkt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.emkt-header.emkt-scrolled {
    height: 75px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Container */
.emkt-header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 2rem;
}

/* Logo */
.emkt-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.emkt-header-logo:hover {
    transform: scale(1.05);
}

.emkt-header-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.emkt-header.emkt-scrolled .emkt-header-logo img {
    height: 42px;
}

/* Navigation */
.emkt-header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.emkt-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.emkt-nav-item {
    position: relative;
}

.emkt-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.emkt-nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.emkt-nav-item:hover .emkt-nav-link i {
    transform: rotate(180deg);
}

/* Mega Menu */
.emkt-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    width: 900px;
    max-width: calc(100vw - 2rem);
    margin-left: -200px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

.emkt-nav-item:hover .emkt-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Wider mega menus adjust */
.emkt-mega-menu.emkt-industries-menu {
    margin-left: -150px;
}

/* Mega Menu Featured */
.emkt-mega-menu-featured {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-magenta));
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.emkt-mega-menu-featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.emkt-mega-menu-featured-text {
    flex: 1;
}

.emkt-mega-menu-featured-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.emkt-mega-menu-featured-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.85rem;
}

.emkt-mega-menu-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--secondary-teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.emkt-mega-menu-featured-cta:hover {
    background: var(--secondary-dark-teal);
    transform: translateX(3px);
}

/* Mega Menu Content */
.emkt-mega-menu-content {
    padding: 1rem;
}

.emkt-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.emkt-mega-menu-grid.emkt-three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.emkt-mega-menu-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.emkt-mega-menu-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-orange));
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
}

.emkt-mega-menu-section-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-navy);
}

.emkt-mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.emkt-mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.emkt-mega-menu-link:hover {
    background: var(--light-gray);
    transform: translateX(3px);
}

/* UPDATED: Signature Badge - Tightened spacing to sit closer to link */
.emkt-mega-menu-link.emkt-popular {
    padding-right: 5rem; /* Reduced from 5.5rem for tighter spacing */
}

.emkt-mega-menu-link.emkt-popular::after {
    content: 'signature';
    position: absolute;
    right: 0.35rem; /* Reduced from 0.5rem for closer positioning */
    top: 50%; /* Centered vertically */
    transform: translateY(-50%); /* Perfect vertical centering */
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-teal));
    color: var(--white);
    border-radius: 12px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

/* Spanish version - "destacado" */
html[lang="es"] .emkt-mega-menu-link.emkt-popular::after {
    content: 'destacado';
}

/* Mission & Office Photo Column Styling */
.emkt-mega-menu-mission {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emkt-mega-menu-office-photo {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.emkt-mega-menu-office-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.emkt-mega-menu-mission:hover .emkt-mega-menu-office-photo img {
    transform: scale(1.05);
}

.emkt-mega-menu-mission-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.emkt-mega-menu-mission-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-navy);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.35rem;
}

.emkt-mega-menu-mission-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
}

.emkt-mega-menu-link-icon {
    font-size: 0.95rem;
    color: var(--secondary-teal);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.emkt-mega-menu-link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.emkt-mega-menu-link-title {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.85rem;
    display: block;
    line-height: 1.3;
}

.emkt-mega-menu-link-desc {
    font-size: 0.75rem;
    color: var(--dark-gray);
    display: block;
    line-height: 1.3;
}

/* Header Actions */
.emkt-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem; /* Reduced from 1.5rem to fit more elements */
    flex-shrink: 0;
}

/* Phone */
.emkt-header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.emkt-header-phone:hover {
    background: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.emkt-header-phone i {
    font-size: 0.9rem;
}

/* Language Switcher with Flags */
.emkt-header-language {
    display: flex;
    gap: 0.25rem;
    background: var(--light-gray);
    padding: 0.25rem;
    border-radius: 8px;
}

.emkt-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.emkt-lang-btn.emkt-active {
    background: var(--secondary-teal);
    color: var(--white);
}

.emkt-lang-btn:not(.emkt-active):hover {
    background: var(--white);
}

.emkt-lang-flag {
    font-size: 1rem;
    line-height: 1;
}

/* Secondary CTA - Current Promos */
.emkt-header-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--light-gray);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.emkt-header-cta-secondary:hover {
    background: var(--secondary-orange);
    color: var(--white);
    border-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 147, 0, 0.3);
}

.emkt-header-cta-secondary i {
    font-size: 0.9rem;
}

/* Primary CTA Button */
.emkt-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-orange));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 25, 99, 0.3);
}

.emkt-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 25, 99, 0.4);
}

.emkt-header-cta i {
    font-size: 0.9rem;
}

/* Mobile Toggle */
.emkt-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.emkt-mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.emkt-mobile-toggle.emkt-active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.emkt-mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
}

.emkt-mobile-menu.emkt-active {
    transform: translateX(0);
}

.emkt-mobile-menu-content {
    padding: 1.5rem;
    min-height: 100%;
    background: var(--white);
}

.emkt-mobile-menu-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.emkt-mobile-logo img {
    height: 45px;
}

/* Mobile Navigation */
.emkt-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.emkt-mobile-nav-item {
    border-bottom: 1px solid var(--light-gray);
}

.emkt-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.emkt-mobile-nav-link i {
    transition: transform 0.3s ease;
}

.emkt-mobile-nav-item.emkt-active .emkt-mobile-nav-link i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.emkt-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 1rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.emkt-mobile-nav-item.emkt-active .emkt-mobile-submenu {
    max-height: 500px;
}

.emkt-mobile-submenu-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.emkt-mobile-submenu-link:hover {
    color: var(--primary-magenta);
    padding-left: 0.5rem;
}

/* Mobile CTAs */
.emkt-mobile-ctas {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.emkt-mobile-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-magenta), var(--secondary-orange));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 25, 99, 0.3);
}

.emkt-mobile-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 25, 99, 0.4);
}

.emkt-mobile-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--light-gray);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
}

.emkt-mobile-cta-secondary:hover {
    background: var(--secondary-teal);
    color: var(--white);
    border-color: var(--secondary-teal);
}

/* Mobile Promo Button */
.emkt-mobile-cta-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 0 0.75rem 0;
    text-align: center;
    background: var(--light-gray);
    border: 2px solid var(--light-gray);
    color: var(--primary-navy);
}

.emkt-mobile-cta-promo:hover {
    background: var(--secondary-orange);
    color: var(--white);
    border-color: var(--secondary-orange);
}

.emkt-mobile-cta-promo i {
    font-size: 1.1rem;
}

/* Mobile Language Switcher with Flags */
.emkt-mobile-language {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.emkt-mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--light-gray);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
}

.emkt-mobile-lang-btn.emkt-active {
    background: var(--secondary-teal);
    color: var(--white);
    border-color: var(--secondary-teal);
}

.emkt-mobile-lang-btn:not(.emkt-active):hover {
    background: var(--white);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .emkt-header-nav {
        gap: 2rem;
    }
    .emkt-nav-menu {
        gap: 1.5rem;
    }
    .emkt-mega-menu {
        width: 800px;
    }
    .emkt-header-phone {
        display: none;
    }
}

@media (max-width: 1024px) {
    .emkt-mega-menu {
        width: 700px;
    }
}

@media (max-width: 900px) {
    .emkt-header-nav,
    .emkt-header-actions {
        display: none;
    }
    .emkt-mobile-toggle {
        display: flex;
    }
    .emkt-header {
        height: 70px;
    }
    .emkt-header.emkt-scrolled {
        height: 65px;
    }
    .emkt-header-logo img {
        height: 38px;
    }
    .emkt-header.emkt-scrolled .emkt-header-logo img {
        height: 33px;
    }
}

@media (max-width: 480px) {
    .emkt-header-container {
        padding: 0 1.5rem;
    }
    .emkt-mobile-menu {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   HEADER NAVIGATION SYSTEM - COMPLETE UPDATED VERSION
   December 4, 2024 - All fixes applied
   ========================================================================== */

/* Header Wrapper */
.emkt-header-wrapper {
    position: relative;
    z-index: 1000;
}

/* Main Header */
.emkt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.emkt-header.emkt-scrolled {
    height: 75px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Container */
.emkt-header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 2rem;
}

/* Logo */
.emkt-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.emkt-header-logo:hover {
    transform: scale(1.05);
}

.emkt-header-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.emkt-header.emkt-scrolled .emkt-header-logo img {
    height: 42px;
}

/* Navigation */
.emkt-header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.emkt-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.emkt-nav-item {
    position: relative;
}

.emkt-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    color: #263159;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.emkt-nav-link:hover {
    color: #A61963;
}

.emkt-nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.emkt-nav-item:hover .emkt-nav-link i {
    transform: rotate(180deg);
}

/* Mega Menu */
.emkt-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    width: 900px;
    max-width: calc(100vw - 2rem);
    margin-left: -200px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

.emkt-nav-item:hover .emkt-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Wider mega menus adjust */
.emkt-mega-menu.emkt-industries-menu {
    margin-left: -150px;
}

/* Mega Menu Featured */
.emkt-mega-menu-featured {
    background: linear-gradient(135deg, #263159, #A61963);
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.emkt-mega-menu-featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.emkt-mega-menu-featured-text {
    flex: 1;
}

.emkt-mega-menu-featured-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.emkt-mega-menu-featured-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.85rem;
}

/* FIX: Mega Menu Featured CTA - Ensure white text on hover (no magenta clash) */
.emkt-mega-menu-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #17A7AF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.emkt-mega-menu-featured-cta:hover {
    background: #036C7E;
    color: #FFFFFF; /* Keep white, don't change to magenta */
    transform: translateX(3px);
}

/* Mega Menu Content */
.emkt-mega-menu-content {
    padding: 1rem;
}

.emkt-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.emkt-mega-menu-grid.emkt-three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.emkt-mega-menu-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F8F9FA;
}

.emkt-mega-menu-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A61963, #F09300);
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 0.9rem;
}

.emkt-mega-menu-section-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #263159;
}

.emkt-mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.emkt-mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.emkt-mega-menu-link:hover {
    background: #F8F9FA;
    transform: translateX(3px);
}

/* FIX: Signature Badge - Even Tighter spacing */
.emkt-mega-menu-link.emkt-popular {
    padding-right: 4.5rem; /* Reduced from 5rem */
}

.emkt-mega-menu-link.emkt-popular::after {
    content: 'signature';
    position: absolute;
    right: 0.25rem; /* Reduced from 0.35rem - very close now */
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    background: linear-gradient(135deg, #263159, #17A7AF);
    color: #FFFFFF;
    border-radius: 12px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

/* Spanish version - "destacado" */
html[lang="es"] .emkt-mega-menu-link.emkt-popular::after {
    content: 'destacado';
}

/* FIX: Mission & Office Photo - Better spacing */
.emkt-mega-menu-mission {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Increased from 0.75rem for more space after photo */
}

.emkt-mega-menu-office-photo {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.emkt-mega-menu-office-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.emkt-mega-menu-mission:hover .emkt-mega-menu-office-photo img {
    transform: scale(1.05);
}

.emkt-mega-menu-mission-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem; /* Reduced from 0.5rem to tighten title-to-text gap */
}

.emkt-mega-menu-mission-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1rem;
    color: #263159;
    border-bottom: 2px solid #F8F9FA;
    padding-bottom: 0.35rem;
}

.emkt-mega-menu-mission-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6C757D;
    margin: 0;
}

.emkt-mega-menu-link-icon {
    font-size: 0.95rem;
    color: #17A7AF;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.emkt-mega-menu-link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.emkt-mega-menu-link-title {
    font-weight: 600;
    color: #263159;
    font-size: 0.85rem;
    display: block;
    line-height: 1.3;
}

.emkt-mega-menu-link-desc {
    font-size: 0.75rem;
    color: #6C757D;
    display: block;
    line-height: 1.3;
}

/* Header Actions */
.emkt-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Phone */
.emkt-header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F8F9FA;
    color: #263159;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.emkt-header-phone:hover {
    background: #17A7AF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.emkt-header-phone i {
    font-size: 0.9rem;
}

/* Language Switcher with Flags */
.emkt-header-language {
    display: flex;
    gap: 0.25rem;
    background: #F8F9FA;
    padding: 0.25rem;
    border-radius: 8px;
}

.emkt-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #6C757D;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.emkt-lang-btn.emkt-active {
    background: #17A7AF;
    color: #FFFFFF;
}

.emkt-lang-btn:not(.emkt-active):hover {
    background: #FFFFFF;
}

.emkt-lang-flag {
    font-size: 1rem;
    line-height: 1;
}

/* FIX: Secondary CTA - Promo button hover to TEAL (not orange) */
.emkt-header-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: #F8F9FA;
    color: #263159;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.emkt-header-cta-secondary:hover {
    background: #17A7AF; /* Changed from orange */
    color: #FFFFFF;
    border-color: #17A7AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 167, 175, 0.3); /* Teal shadow */
}

.emkt-header-cta-secondary i {
    font-size: 0.9rem;
}

/* FIX: Primary CTA - Solid magenta hover (no gradient clash) */
.emkt-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #A61963, #F09300);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 25, 99, 0.3);
}

.emkt-header-cta:hover {
    background: #A61963; /* Solid color, no gradient */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 25, 99, 0.5);
}

.emkt-header-cta i {
    font-size: 0.9rem;
}

/* Mobile Toggle */
.emkt-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.emkt-mobile-toggle span {
    width: 26px;
    height: 3px;
    background: #263159;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.emkt-mobile-toggle.emkt-active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.emkt-mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
}

.emkt-mobile-menu.emkt-active {
    transform: translateX(0);
}

/* FIX: Mobile Menu - Tighter spacing for visibility */
.emkt-mobile-menu-content {
    padding: 1rem 1.5rem; /* Reduced top/bottom from 1.5rem */
    min-height: 100%;
    background: #FFFFFF;
}

.emkt-mobile-menu-header {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    padding-bottom: 1rem; /* Reduced from 1.5rem */
    border-bottom: 2px solid #F8F9FA;
}

.emkt-mobile-logo img {
    height: 45px;
}

/* Mobile Navigation */
.emkt-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.emkt-mobile-nav-item {
    border-bottom: 1px solid #F8F9FA;
}

/* FIX: Mobile nav links - Tighter vertical padding */
.emkt-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0; /* Reduced from 1.25rem */
    color: #263159;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.emkt-mobile-nav-link:hover {
    color: #A61963;
}

.emkt-mobile-nav-link i {
    transition: transform 0.3s ease;
}

.emkt-mobile-nav-item.emkt-active .emkt-mobile-nav-link i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.emkt-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0.75rem 1.5rem; /* Reduced bottom from 1rem */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.emkt-mobile-nav-item.emkt-active .emkt-mobile-submenu {
    max-height: 500px;
}

/* FIX: Mobile submenu links - Tighter spacing */
.emkt-mobile-submenu-link {
    display: block;
    padding: 0.5rem 0; /* Reduced from 0.75rem */
    color: #6C757D;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.emkt-mobile-submenu-link:hover {
    color: #A61963;
    padding-left: 0.5rem;
}

/* FIX: Mobile CTAs - Tighter spacing */
.emkt-mobile-ctas {
    margin-top: 1.5rem; /* Reduced from 2rem */
    padding-top: 1.5rem; /* Reduced from 2rem */
    border-top: 2px solid #F8F9FA;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Reduced from 1rem */
}

.emkt-mobile-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 2rem; /* Reduced from 1rem */
    background: linear-gradient(135deg, #A61963, #F09300);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 25, 99, 0.3);
}

.emkt-mobile-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 25, 99, 0.4);
}

.emkt-mobile-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 2rem; /* Reduced from 1rem */
    background: #F8F9FA;
    color: #263159;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #F8F9FA;
}

.emkt-mobile-cta-secondary:hover {
    background: #17A7AF;
    color: #FFFFFF;
    border-color: #17A7AF;
}

/* Mobile Promo Button */
.emkt-mobile-cta-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 2rem; /* Reduced from 1rem */
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 0 0.5rem 0; /* Reduced bottom from 0.75rem */
    text-align: center;
    background: #F8F9FA;
    border: 2px solid #F8F9FA;
    color: #263159;
}

.emkt-mobile-cta-promo:hover {
    background: #17A7AF; /* Changed from orange to teal */
    color: #FFFFFF;
    border-color: #17A7AF;
}

.emkt-mobile-cta-promo i {
    font-size: 1.1rem;
}

/* Mobile Language Switcher with Flags */
.emkt-mobile-language {
    display: flex;
    flex-direction: column;
    gap: 0.65rem; /* Reduced from 0.75rem */
    margin-top: 0.75rem; /* Reduced from 1rem */
}

.emkt-mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem; /* Reduced from 0.75rem */
    background: #F8F9FA;
    color: #263159;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #F8F9FA;
}

.emkt-mobile-lang-btn.emkt-active {
    background: #17A7AF;
    color: #FFFFFF;
    border-color: #17A7AF;
}

.emkt-mobile-lang-btn:not(.emkt-active):hover {
    background: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .emkt-header-nav {
        gap: 2rem;
    }
    .emkt-nav-menu {
        gap: 1.5rem;
    }
    .emkt-mega-menu {
        width: 800px;
    }
    .emkt-header-phone {
        display: none;
    }
}

@media (max-width: 1024px) {
    .emkt-mega-menu {
        width: 700px;
    }
}

@media (max-width: 900px) {
    .emkt-header-nav,
    .emkt-header-actions {
        display: none;
    }
    .emkt-mobile-toggle {
        display: flex;
    }
    .emkt-header {
        height: 70px;
    }
    .emkt-header.emkt-scrolled {
        height: 65px;
    }
    .emkt-header-logo img {
        height: 38px;
    }
    .emkt-header.emkt-scrolled .emkt-header-logo img {
        height: 33px;
    }
}

@media (max-width: 480px) {
    .emkt-header-container {
        padding: 0 1.5rem;
    }
    .emkt-mobile-menu-content {
        padding: 1rem; /* Even tighter on small screens */
    }
}

/* ==========================================================================
   MOBILE HEADER LANGUAGE SWITCHER FIX
   December 4, 2024 - Move language switcher to mobile header
   ========================================================================== */

/* Mobile Header Language Switcher - Shows in header on mobile */
.emkt-mobile-header-language {
    display: none;
    gap: 0.35rem;
}

.emkt-mobile-header-lang-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FA;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #F8F9FA;
}

.emkt-mobile-header-lang-btn.emkt-active {
    background: #17A7AF;
    border-color: #17A7AF;
}

/* Hide the old language switcher in mobile menu */
@media (max-width: 900px) {
    .emkt-mobile-header-language {
        display: flex;
    }
    
    .emkt-mobile-language {
        display: none !important;
    }
}

/* =================================================================
   MOBILE HERO PADDING FIX - Add to core-styles.css
   Date: December 6, 2025
   Purpose: Add more breathing room above hero titles on mobile
   ================================================================= */

@media (max-width: 768px) {
    /* All hero sections need more top padding on mobile to clear nav */
    .hero-neon,
    .hero-gradient,
    .hero-geo,
    .hero-cinematic,
    .hero-mag,
    .hero-pulse,
    .hero-arch,
    .hero-diagonal,
    .hero-particle,
    .hero-split,
    .hero-bento,
    .hero-multi-grid,
    .hero-short-floating,
    .hero-type,
    .hero-bridge {
        padding-top: 8rem !important;
    }
    
    /* Hero titles need additional margin-top for breathing room */
    .neon-title,
    .hero-gradient h1,
    .geo-text h1,
    .hero-cinematic-text h1,
    .mag-content h1,
    .pulse-content h1,
    .arch-card h1,
    .hero-diagonal h1,
    .hero-particle-content h1,
    .split-content h1,
    .bento-text h1,
    .multi-grid-text h1,
    .short-floating-text h1,
    .hero-type-display,
    .bridge-left h1 {
        margin-top: 2rem;
    }
    
    /* CRITICAL: Force ALL grids to single column */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Force ALL flex layouts to column */
    [style*="display: flex"][style*="gap:"] {
        flex-direction: column !important;
    }
    
    /* Ensure CONTENT images are responsive (NOT header/footer logos) */
    section img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ============================================
   TWO-COLUMN / SPLIT CONTENT LAYOUTS
   Add to bottom of core-styles.css
   Created: December 6, 2025
   ============================================ */

/* Base Grid Layout */
.two-col-grid,
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Reverse layout (image left, text right) */
.split-content-reverse {
    direction: rtl;
}

.split-content-reverse > * {
    direction: ltr;
}

/* Image Container Reset - Prevents mystery white boxes */
.two-col-image,
.split-image {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

/* Image Styling */
.two-col-image img,
.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: block;
    background: transparent;
}

/* Text Column */
.two-col-text h2,
.split-text h2 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.two-col-text p,
.split-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    max-width: 75ch;
}

/* Content Section Spacing */
.content-section {
    padding: 6rem 2rem;
}

.content-section-light {
    background: var(--white);
}

.content-section-cream {
    background: #FAF9F6;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .two-col-grid,
    .split-content {
        gap: 3rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .two-col-grid,
    .split-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .split-content-reverse {
        direction: ltr;
    }
    
    .content-section {
        padding: 3rem 1.25rem;
    }
    
    .two-col-text h2,
    .split-text h2 {
        font-size: 1.75rem;
    }
    
    .two-col-text p,
    .split-text p {
        font-size: 1rem;
    }
}