/**
 * Corporate Design Styles
 * Professional design matching Trance Continental brand guidelines
 * Colors: Dark Blue (#1e3a8a), Gold (#d4af37), Light Beige (#faf8f3)
 */

:root {
    --color-dark-blue: #1e3a8a;
    --color-dark-blue-light: #2563eb;
    --color-gold: #d4af37;
    --color-gold-light: #fbbf24;
    --color-beige: #faf8f3;
    --color-beige-dark: #f5f5dc;
    --color-white: #ffffff;
    --color-gray: #4b5563;
    --color-gray-light: #9ca3af;
}

/* ============================================
   NEW HEADER - COMPLETE REWORK FROM SCRATCH
   WITH TRANSPARENCY SYNC WITH HERO
   ============================================ */
.site-header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: transparent !important;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header-new.scrolled {
    background: var(--color-white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Main Header - Transparent when over hero */
.header-main {
    background: transparent !important;
    transition: all 0.4s ease;
}

.site-header-new.scrolled .header-main {
    background: var(--color-white) !important;
}

.header-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: transparent;
}

/* Brand Logo */
.header-brand {
    flex-shrink: 0;
    z-index: 20;
}

.brand-logo {
    display: block;
    transition: transform 0.3s ease;
}

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

.brand-logo-img {
    height: 71.5px; /* Increased by 30% from 55px */
    width: auto;
    max-width: 260px; /* Increased proportionally */
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1); /* White logo when transparent */
    transition: filter 0.4s ease;
}

.site-header-new.scrolled .brand-logo-img {
    filter: brightness(0) invert(0); /* Original logo color when scrolled */
}

@media (max-width: 767px) {
    .brand-logo-img {
        height: 60px;
        max-width: 200px;
    }
}

/* Navigation */
.header-navigation {
    flex: 1;
    display: none;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .header-navigation {
        display: flex;
        justify-content: center;
    }
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    width: 100%;
}

.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header-new.scrolled .main-menu a {
    color: var(--color-dark-blue);
    text-shadow: none;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.main-menu a:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
    text-shadow: none;
}

.site-header-new.scrolled .main-menu a:hover {
    background: rgba(212, 175, 55, 0.08);
}

.main-menu a:hover::after {
    transform: scaleX(1);
}


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

.header-cta-new {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.site-header-new.scrolled .header-cta-new {
    background: var(--color-dark-blue);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

@media (min-width: 768px) {
    .header-cta-new {
        display: flex;
    }
}

.header-cta-new:hover {
    background: var(--color-gold-light);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.site-header-new.scrolled .header-cta-new:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
}

.header-cta-new svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.header-cta-new:hover svg {
    transform: translateX(4px);
}

/* Language Switcher */
.header-actions-new .language-switcher,
.site-header-new .language-switcher {
    position: relative;
    display: inline-block !important;
    margin-right: 1rem;
    margin-left: 0;
    z-index: 100;
    vertical-align: middle;
    font-family: inherit;
}

/* Ensure visibility */
.language-switcher *,
.language-switcher *::before,
.language-switcher *::after {
    box-sizing: border-box;
}

.header-actions-new .lang-switch-btn,
.site-header-new .lang-switch-btn,
.language-switcher .lang-switch-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.625rem 1rem !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 8px !important;
    color: var(--color-white) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none !important;
    outline: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    vertical-align: middle !important;
}

.lang-switch-btn:focus {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.site-header-new.scrolled .lang-switch-btn,
.site-header-new.scrolled .language-switcher .lang-switch-btn {
    background: var(--color-white) !important;
    border-color: var(--color-dark-blue) !important;
    color: var(--color-dark-blue) !important;
}

.site-header-new.scrolled .lang-switch-btn:focus,
.site-header-new.scrolled .language-switcher .lang-switch-btn:focus {
    outline: 2px solid var(--color-dark-blue) !important;
    outline-offset: 2px !important;
}

.site-header-new.scrolled .lang-switch-btn svg,
.site-header-new.scrolled .language-switcher .lang-switch-btn svg {
    stroke: var(--color-dark-blue) !important;
    color: var(--color-dark-blue) !important;
}

.lang-switch-btn:hover,
.language-switcher .lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.site-header-new.scrolled .lang-switch-btn:hover,
.site-header-new.scrolled .language-switcher .lang-switch-btn:hover {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-dark-blue) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

.site-header-new.scrolled .lang-switch-btn:hover svg,
.site-header-new.scrolled .language-switcher .lang-switch-btn:hover svg {
    stroke: var(--color-dark-blue) !important;
    color: var(--color-dark-blue) !important;
}

.language-switcher .current-lang,
.lang-switch-btn .current-lang {
    display: inline-block !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: inherit !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lang-switch-icon,
.lang-switch-btn svg,
.language-switcher svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    stroke: currentColor !important;
    fill: none !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
    color: inherit !important;
}

.language-switcher.active .lang-switch-icon,
.language-switcher.active .lang-switch-btn svg {
    transform: rotate(180deg);
}

.language-switcher .lang-switch-dropdown,
.lang-switch-dropdown {
    position: absolute !important;
    top: calc(100% + 0.75rem) !important;
    right: 0 !important;
    left: auto !important;
    min-width: 160px !important;
    max-width: 200px !important;
    background: var(--color-white) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1001 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0.5rem 0 !important;
    overflow: hidden !important;
    display: block !important;
    box-sizing: border-box !important;
}

.lang-switch-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 1rem;
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
}

.language-switcher.active .lang-switch-dropdown,
.language-switcher.active .lang-switch-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.lang-option {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lang-switch-dropdown .lang-link,
.language-switcher .lang-link {
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    color: var(--color-dark-blue) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

.lang-link:hover,
.lang-link:focus {
    background: var(--color-beige);
    color: var(--color-dark-blue);
    outline: none;
}

.lang-option.active .lang-link {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-dark-blue);
    font-weight: 700;
    position: relative;
}

.lang-option.active .lang-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-gold);
}

@media (max-width: 767px) {
    .language-switcher {
        margin-right: 0.5rem;
        order: 1;
    }
    
    .lang-switch-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
    
    .lang-switch-icon,
    .lang-switch-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .lang-switch-dropdown {
        right: 0;
        left: auto;
        min-width: 140px;
        top: calc(100% + 0.5rem);
    }
    
    .lang-link {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}


/* Menu Toggle */
.menu-toggle-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    position: relative;
}

@media (min-width: 1024px) {
    .menu-toggle-new {
        display: none;
    }
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.menu-icon span {
    width: 100%;
    height: 2.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.site-header-new.scrolled .menu-icon span {
    background: var(--color-dark-blue);
    box-shadow: none;
}

.menu-toggle-new.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle-new.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-new.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu New */
.mobile-menu-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
}

.mobile-menu-new.active {
    pointer-events: all;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-new.active .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}


.mobile-menu-new.active .mobile-menu-panel {
    right: 0;
}


.mobile-menu-header-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid var(--color-beige);
}

.mobile-brand-logo {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.mobile-menu-close-new {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-dark-blue);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-menu-close-new:hover {
    background: var(--color-beige);
    color: var(--color-gold);
    transform: rotate(90deg);
}

.mobile-menu-close-new svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
}

.mobile-menu-list a {
    display: block;
    padding: 1.125rem 1.5rem;
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}


.mobile-menu-list a:hover,
.mobile-menu-list a:focus {
    background: var(--color-beige);
    color: var(--color-gold);
    border-left-color: var(--color-gold);
    padding-left: 2rem;
}


.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--color-beige);
}

.mobile-cta-new {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--color-dark-blue);
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.mobile-cta-new:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Body Padding for New Header - Adjusted for Hero Sync */
body {
    padding-top: 0;
}

/* Ensure header is transparent on page load */
.site-header-new:not(.scrolled) {
    background: transparent !important;
}

.site-header-new:not(.scrolled) .header-main {
    background: transparent !important;
}

/* Mobile Header Sync - Force transparent over hero */
@media (max-width: 767px) {
    .site-header-new:not(.scrolled) {
        background: transparent !important;
    }
    
    .site-header-new:not(.scrolled) .header-main {
        background: transparent !important;
    }
    
    .site-header-new:not(.scrolled) .header-main-container {
        background: transparent !important;
        padding-top: 0 !important;
    }
    
    .header-main-container {
        padding: 0.875rem 1rem !important;
    }
    
    /* Ensure hero section has proper height on mobile and starts at top */
    .modern-hero,
    .hero-carousel,
    .page-hero-section {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-carousel-wrapper {
        min-height: 100vh;
        min-height: 100dvh;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-slide {
        min-height: 100vh;
        min-height: 100dvh;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Remove any top spacing from hero content */
    .hero-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Page hero sections mobile */
    .page-hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .services-page-container,
    .sectors-page-container,
    .about-page-container,
    .events-page-container,
    .media-page-container {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0 1rem;
    }
}

/* ============================================
   MODERN HERO - SYNCED WITH TRANSPARENT HEADER
   ============================================ */
.modern-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.modern-hero:not(.hero-carousel) {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video,
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.3) 100%);
    z-index: 3;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 6rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 8rem 2rem;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 5rem 1.5rem 3rem;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge span {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 0.75rem 2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-badge span {
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .hero-badge {
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge span {
        font-size: 0.8125rem;
        line-height: 1.3;
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1.25rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-subtitle {
        margin-bottom: 4rem;
    }
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.125rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
}

/* Hero Actions - Always Side by Side */
.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    flex-wrap: nowrap;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-actions {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-actions {
        gap: 0.875rem;
        padding: 0 1rem;
    }
    
    .hero-btn {
        min-width: 0;
        flex: 1;
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
        max-width: 48%;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .hero-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .hero-btn .btn-icon {
        width: 1rem;
        height: 1rem;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        min-width: 176px;
    }
}

.hero-btn::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.5s ease;
}

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

.hero-btn-primary {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.hero-btn .btn-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

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


/* Hero Carousel */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    will-change: opacity;
}

.hero-slide:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 1s ease-in-out, visibility 0s 0s;
    z-index: 2;
}

.hero-slide .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Carousel Dots - Inside Hero Section */
.hero-carousel-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .hero-carousel-dots {
        bottom: 2rem;
        gap: 0.625rem;
        padding: 0.625rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel-dots {
        bottom: 1.5rem;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

@media (max-width: 767px) {
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

.hero-dot:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .hero-dot.active {
        width: 24px;
    }
}

.hero-dot:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 2px solid var(--color-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
    .mobile-menu {
        top: 80px;
        max-height: calc(100vh - 80px);
    }
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-dark-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--color-beige);
    color: var(--color-gold);
    padding-left: 2rem;
}


.corporate-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.corporate-logo:hover {
    opacity: 0.9;
}

.corporate-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.corporate-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corporate-nav a {
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.corporate-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


.corporate-nav a:hover {
    color: var(--color-gold);
}

.corporate-nav a:hover::after {
    transform: scaleX(1);
}

/* Hide navigation on mobile */
@media (max-width: 1023px) {
    .corporate-nav {
        display: none;
    }
}

/* Main Navigation Menu */
.main-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.main-nav-menu li {
    margin: 0;
    padding: 0;
}

/* Fallback Menu */
.fallback-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.fallback-menu li {
    margin: 0;
    padding: 0;
}

.fallback-menu a {
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.fallback-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fallback-menu a:hover {
    color: var(--color-gold);
}

.fallback-menu a:hover::after {
    transform: scaleX(1);
}

.corporate-cta-btn {
    background: var(--color-dark-blue);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-dark-blue);
}

.corporate-cta-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ============================================
   OLD HERO STYLES REMOVED - Using modern-hero section below
   ============================================ */

/* ============================================
   CORPORATE SECTIONS
   ============================================ */
.corporate-section {
    position: relative;
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .corporate-section {
        padding: 3rem 0;
    }
}

.section-bg-beige {
    background: var(--color-beige);
}

.section-bg-white {
    background: var(--color-white);
}

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

@media (max-width: 767px) {
    .section-header-corporate {
        margin-bottom: 2.5rem;
    }
}

.section-title-corporate {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* ============================================
   SECTORS PAGE - PREMIUM TEMPLATE
   ============================================ */

/* Sectors Page Content */
.sectors-page-content {
    padding: 5rem 0;
    background: var(--color-beige);
}

@media (max-width: 767px) {
    .sectors-page-content {
        padding: 3rem 0;
    }
}

.sectors-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .sectors-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .sectors-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.sector-card-premium {
    position: relative;
}

.sector-card-inner-premium {
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sector-card-inner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sector-card-premium:hover .sector-card-inner-premium {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.sector-card-premium:hover .sector-card-inner-premium::before {
    transform: scaleX(1);
}

@media (max-width: 767px) {
    .sector-card-inner-premium {
        padding: 2.5rem 2rem;
    }
}

.sector-icon-premium {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.sector-card-premium:hover .sector-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.sector-icon-premium svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-dark-blue);
    stroke-width: 2.5;
    fill: none;
}

.sector-title-premium {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sector-card-premium:hover .sector-title-premium {
    color: var(--color-gold);
}

.sector-description-premium {
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    flex: 1;
}

.sector-features-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.sector-feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-beige);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sector-card-premium:hover .sector-feature-tag {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
}

/* ============================================
   EVENTS PAGE - PREMIUM TEMPLATE
   ============================================ */

/* Events Page Header */
.events-page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.events-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%);
    z-index: 1;
}

.events-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.events-page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.events-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.events-page-badge svg {
    width: 18px;
    height: 18px;
}

.events-page-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.events-page-description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Events Page Content */
.events-page-content {
    padding: 5rem 0;
    background: var(--color-white);
}

@media (max-width: 767px) {
    .events-page-content {
        padding: 3rem 0;
    }
}

/* About Page Content */
.about-page-content {
    padding: 5rem 0;
    background: var(--color-white);
}

@media (max-width: 767px) {
    .about-page-content {
        padding: 3rem 0;
    }
}

/* Media Page Content */
.media-page-content {
    padding: 5rem 0;
    background: var(--color-white);
}

@media (max-width: 767px) {
    .media-page-content {
        padding: 3rem 0;
    }
}

.media-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .media-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

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

.media-card-premium {
    position: relative;
}

.media-card-link-premium {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.media-card-premium:hover .media-card-link-premium {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.media-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
}

.media-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-card-premium:hover .media-image-premium {
    transform: scale(1.1);
}

.media-image-placeholder-premium {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
}

.media-image-placeholder-premium svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.media-image-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card-premium:hover .media-image-overlay-premium {
    opacity: 1;
}

.media-category-badge-premium {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 5;
    padding: 0.5rem 1rem;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.media-content-premium {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.media-meta-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.media-meta-item-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.media-meta-icon-premium {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.media-title-premium {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.media-card-premium:hover .media-title-premium {
    color: var(--color-gold);
}

.media-excerpt-premium {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.9375rem;
}

.media-cta-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.media-card-premium:hover .media-cta-premium {
    gap: 0.75rem;
}

.media-cta-text-premium {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.media-cta-icon-premium {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.media-card-premium:hover .media-cta-icon-premium {
    transform: translateX(4px);
}

.media-pagination-premium {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.media-pagination-premium .page-numbers {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.media-pagination-premium .page-numbers li {
    margin: 0;
}

.media-pagination-premium .page-numbers a,
.media-pagination-premium .page-numbers span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--color-dark-blue);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.media-pagination-premium .page-numbers a:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.media-pagination-premium .page-numbers .current {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    border-color: var(--color-gold);
}

.media-empty-premium {
    text-align: center;
    padding: 5rem 2rem;
}

.media-empty-icon-premium {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 3px solid var(--color-gold);
}

.media-empty-icon-premium svg {
    width: 60px;
    height: 60px;
    color: var(--color-gold);
}

.media-empty-title-premium {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
}

.media-empty-text-premium {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto;
}

.events-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .events-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .events-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.event-card-premium {
    position: relative;
}

.event-card-link-premium {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.event-card-premium:hover .event-card-link-premium {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.event-image-wrapper-premium {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
}

@media (min-width: 768px) {
    .event-image-wrapper-premium {
        height: 320px;
    }
}

.event-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-premium:hover .event-image-premium {
    transform: scale(1.15);
}

.event-image-placeholder-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
}

.event-image-placeholder-premium svg {
    width: 90px;
    height: 90px;
}

.event-image-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.5) 100%);
    transition: opacity 0.4s ease;
}

.event-card-premium:hover .event-image-overlay-premium {
    opacity: 0.9;
}

.event-date-badge-premium {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    z-index: 10;
    min-width: 70px;
}

.event-day-premium {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-month-premium {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.95;
}

.event-content-premium {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .event-content-premium {
        padding: 2rem;
    }
}

.event-title-premium {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-card-premium:hover .event-title-premium {
    color: var(--color-gold);
}

.event-meta-premium {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.event-meta-item-premium {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.event-meta-icon-premium {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.event-excerpt-premium {
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.9375rem;
}

.event-cta-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.event-cta-text-premium {
    font-weight: 800;
    color: var(--color-dark-blue);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.event-card-premium:hover .event-cta-text-premium {
    color: var(--color-gold);
}

.event-cta-icon-premium {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.event-card-premium:hover .event-cta-icon-premium {
    transform: translateX(5px);
}

/* Events Pagination */
.events-pagination-premium {
    margin-top: 4rem;
    text-align: center;
}

.events-pagination-premium .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-pagination-premium .page-numbers li {
    margin: 0;
}

.events-pagination-premium .page-numbers a,
.events-pagination-premium .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--color-dark-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.events-pagination-premium .page-numbers a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
}

.events-pagination-premium .page-numbers .current {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.events-pagination-premium .page-numbers a svg {
    width: 20px;
    height: 20px;
}

/* Events Empty State */
.events-empty-premium {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.events-empty-icon-premium {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--color-gray);
    opacity: 0.5;
}

.events-empty-icon-premium svg {
    width: 100%;
    height: 100%;
}

.events-empty-title-premium {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
}

.events-empty-text-premium {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Services Page Header (Shared with Sectors/Events) */
/* Page Hero Sections - Full Height with Background Images */
.page-hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    z-index: 2;
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.3) 100%);
    z-index: 3;
}

.services-page-header,
.sectors-page-header,
.events-page-header,
.about-page-header,
.media-page-header {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.services-page-container,
.sectors-page-container,
.events-page-container,
.about-page-container,
.media-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-page-intro,
.sectors-page-intro,
.events-page-intro,
.about-page-intro,
.media-page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.services-page-badge,
.sectors-page-badge,
.events-page-badge,
.about-page-badge,
.media-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-page-badge svg,
.sectors-page-badge svg,
.events-page-badge svg,
.about-page-badge svg,
.media-page-badge svg {
    width: 18px;
    height: 18px;
}

.services-page-title,
.sectors-page-title,
.events-page-title,
.about-page-title,
.media-page-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .services-page-title,
    .sectors-page-title,
    .events-page-title,
    .about-page-title,
    .media-page-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .services-page-description,
    .sectors-page-description,
    .events-page-description,
    .about-page-description,
    .media-page-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .services-page-badge,
    .sectors-page-badge,
    .events-page-badge,
    .about-page-badge,
    .media-page-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
}

.services-page-description,
.sectors-page-description,
.events-page-description,
.about-page-description,
.media-page-description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Icons */
.mission-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .mission-icons {
        gap: 2rem;
        margin: 2rem 0;
    }
}

.mission-icon-item {
    text-align: center;
    max-width: 200px;
}

.mission-icon-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.mission-icon-item:hover .mission-icon-circle {
    background: var(--color-gold);
    transform: scale(1.1);
}

.mission-icon-circle svg {
    width: 60px;
    height: 60px;
    stroke: var(--color-gold);
    transition: stroke 0.3s ease;
}

.mission-icon-item:hover .mission-icon-circle svg {
    stroke: var(--color-dark-blue);
}

.mission-icon-label {
    font-weight: 700;
    color: var(--color-dark-blue);
    font-size: 1.125rem;
}

/* Process Flow - Modern Redesign */
.process-flow-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 3rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .process-flow-modern {
        max-width: 600px;
        margin: 3rem auto;
    }
}

.process-step-modern {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 767px) {
    .process-step-modern {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
}

.process-number-modern {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-dark-blue);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
    .process-number-modern {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
}

.process-step-modern:hover .process-number-modern {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

.process-number-text {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-dark-blue);
}

@media (max-width: 767px) {
    .process-number-text {
        font-size: 2rem;
    }
}

.process-connector {
    position: absolute;
    left: 50px;
    top: 100px;
    width: 3px;
    height: calc(100% - 100px);
    background: linear-gradient(180deg, var(--color-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

@media (max-width: 767px) {
    .process-connector {
        left: 40px;
        top: 80px;
        height: calc(100% - 80px);
    }
}

.process-step-modern:last-child .process-connector {
    display: none;
}

.process-content-modern {
    flex: 1;
    padding-top: 1rem;
}

@media (max-width: 767px) {
    .process-content-modern {
        padding-top: 0.5rem;
    }
}

.process-title-modern {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.process-step-modern:hover .process-title-modern {
    color: var(--color-gold);
}

.process-subtitle-modern {
    color: var(--color-gray);
    font-size: 1.0625rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Legacy Process Flow (keeping for compatibility) */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .process-flow {
        flex-direction: column;
        gap: 2.5rem;
        margin: 2rem 0;
    }
}

.process-step {
    text-align: center;
    max-width: 250px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: var(--color-gold);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 120px;
    height: 120px;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-dark-blue);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
}

.process-subtitle {
    color: var(--color-gray);
    font-size: 1rem;
}

/* Vision Quote */
.vision-quote {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-dark-blue);
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--color-gold);
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-mark.open {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-mark.close {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Mission Commitments */
.mission-commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 767px) {
    .mission-commitments {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
}

.commitment-card {
    padding: 2.5rem;
    border-left: 4px solid var(--color-gold);
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
    .commitment-card {
        padding: 2rem;
    }
}


.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    border-left-width: 6px;
}


.commitment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
}

.commitment-text {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Services Grid */
.services-corporate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

@media (max-width: 767px) {
    .services-corporate {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
}

.service-item-corp {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .service-item-corp {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
}

.service-item-corp:hover {
    border-color: var(--color-gold);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige) 100%);
}

.service-icon-corp {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border: 3px solid var(--color-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-white) 100%);
    transition: all 0.4s ease;
}

@media (max-width: 767px) {
    .service-icon-corp {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
}

.service-item-corp:hover .service-icon-corp {
    background: var(--color-gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-icon-corp svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-gold);
    stroke-width: 2.5;
    fill: none;
    transition: all 0.4s ease;
}

.service-item-corp:hover .service-icon-corp svg {
    stroke: var(--color-dark-blue);
    transform: scale(1.1);
}

.service-content-corp {
    flex: 1;
}

.service-content-corp h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-item-corp:hover .service-content-corp h3 {
    color: var(--color-gold);
}

.service-content-corp p {
    color: var(--color-gray);
    line-height: 1.75;
    font-size: 1rem;
}

/* Strategic Advantages */
.advantages-corporate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 767px) {
    .advantages-corporate {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
}

.advantage-item-corp {
    padding: 2.5rem;
    background: var(--color-white);
    border-top: 4px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-item-corp:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    border-top-color: var(--color-gold-light);
}

.advantage-title-corp {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
}

.advantage-text-corp {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Network Diagram */
.network-diagram {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
    padding: 4rem 2rem;
}

.network-center {
    width: 150px;
    height: 150px;
    background: var(--color-dark-blue);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    margin: 0 auto;
    border: 4px solid var(--color-gold);
    position: relative;
    z-index: 10;
}

.network-nodes {
    position: absolute;
    inset: 0;
}

.network-node {
    position: absolute;
    width: 180px;
    text-align: center;
}

.network-node-circle {
    width: 120px;
    height: 120px;
    background: var(--color-gold);
    border: 3px solid var(--color-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.875rem;
}

.network-node-label {
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

.network-line {
    position: absolute;
    height: 2px;
    background: var(--color-gold);
    transform-origin: left center;
}

.network-node.top-left {
    top: 0;
    left: 10%;
}

.network-node.top-right {
    top: 0;
    right: 10%;
}

.network-node.bottom-left {
    bottom: 0;
    left: 10%;
}

.network-node.bottom-right {
    bottom: 0;
    right: 10%;
}

@media (max-width: 767px) {
    .network-node.top-left,
    .network-node.top-right,
    .network-node.bottom-left,
    .network-node.bottom-right {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

/* Sectors Grid */
.sectors-corporate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 767px) {
    .sectors-corporate {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
        max-width: 100%;
    }
}

.sector-item-corp {
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .sector-item-corp {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
        border-radius: 12px;
    }
    
    .sector-icon-corp {
        width: 70px;
        height: 70px;
        min-width: 70px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .sector-icon-corp svg {
        width: 40px;
        height: 40px;
    }
    
    .sector-name-corp {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .sector-item-corp {
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }
    
    .sector-icon-corp {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .sector-icon-corp svg {
        width: 35px;
        height: 35px;
    }
    
    .sector-name-corp {
        font-size: 0.9375rem;
    }
}

.sector-item-corp:hover {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige) 100%);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

@media (max-width: 767px) {
    .sector-item-corp:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    }
    
    .sector-item-corp:active {
        transform: translateY(-2px);
    }
}

.sector-icon-corp {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-beige);
    border: 3px solid var(--color-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-icon-corp svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-gold);
    stroke-width: 2;
    fill: none;
}

.sector-name-corp {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark-blue);
}

/* Section Badge */
.section-badge-corporate {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(30, 58, 138, 0.1);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-badge-corporate svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   CONTACT SECTION PREMIUM - COMPLETE REDESIGN
   ============================================ */
.contact-section-premium {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-beige) 0%, rgba(250, 245, 235, 0.8) 100%);
    overflow: hidden;
}

.contact-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.contact-section-premium .container {
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .contact-section-premium {
        padding: 4rem 0;
    }
    
    .contact-section-premium .container {
        padding: 0 1rem;
    }
    
    .contact-section-header-premium {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }
    
    .contact-badge-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-title-premium {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .contact-subtitle-premium {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .contact-content-premium {
        gap: 2.5rem;
    }
}

/* Contact Section Header */
.contact-section-header-premium {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.contact-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--color-gold);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-badge-premium svg {
    width: 20px;
    height: 20px;
}

.contact-title-premium {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-subtitle-premium {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content Grid */
.contact-content-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-content-premium {
        grid-template-columns: 1.3fr 1fr;
        gap: 5rem;
        align-items: start;
    }
}

/* Contact Form Premium */
.contact-form-premium {
    background: var(--color-white);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

@media (max-width: 767px) {
    .contact-form-premium {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0;
    }
    
    .contact-form-header-premium {
        margin-bottom: 2rem;
    }
    
    .form-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .form-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
    
    .form-title-premium {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .form-description-premium {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .form-premium {
        gap: 1.5rem;
    }
    
    .form-row-premium {
        gap: 1.5rem;
    }
    
    .form-label-premium {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
    }
    
    .form-input-premium {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 52px;
        height: 52px;
    }
    
    .form-textarea-premium {
        min-height: 120px;
        height: auto !important;
        padding: 1rem 1.25rem;
    }
    
    .form-select-premium {
        padding-right: 2.5rem;
        background-size: 18px;
        background-position: right 1rem center;
        min-height: 52px;
        height: 52px;
    }
    
    .form-submit-premium {
        padding: 1.125rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        margin-top: 0.25rem;
    }
    
    .form-submit-premium svg {
        width: 20px;
        height: 20px;
    }
}

.contact-form-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-dark-blue);
    stroke-width: 2.5;
}

.form-title-premium {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
}

.form-description-premium {
    color: var(--color-gray);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Form Premium */
.form-premium {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

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

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-label-premium {
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.required-star {
    color: #ef4444;
    font-weight: 900;
}

.form-input-premium {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 14px;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    background: var(--color-white);
    color: var(--color-dark-blue);
    font-family: inherit;
    box-sizing: border-box;
    min-height: 56px;
    height: 56px;
}

.form-input-premium::placeholder {
    color: rgba(107, 114, 128, 0.6);
}

.form-input-premium:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    background: var(--color-beige);
}

.form-textarea-premium {
    resize: vertical;
    min-height: 150px;
    height: auto !important;
    font-family: inherit;
    line-height: 1.5;
    padding: 1.125rem 1.5rem;
}

/* Ensure textarea doesn't inherit fixed height from form-input-premium */
textarea.form-input-premium {
    height: auto !important;
    min-height: 150px;
}

.form-select-premium {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e3a8a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 20px;
    padding-right: 3rem;
    min-height: 56px;
    height: 56px;
    line-height: 1.5;
}

.form-submit-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--color-dark-blue);
    color: var(--color-white);
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    width: 100%;
}

.form-submit-premium:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.form-submit-premium svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.form-submit-premium:hover svg {
    transform: translateX(4px);
}

/* Contact Info Premium */
.contact-info-premium {
    background: var(--color-white);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 120px;
    height: fit-content;
}

@media (max-width: 767px) {
    .contact-info-premium {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        position: relative;
        top: 0;
        margin-top: 0;
    }
    
    .contact-info-header-premium {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .info-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        border-radius: 16px;
    }
    
    .info-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
    
    .info-title-premium {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .info-description-premium {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .contact-info-list-premium {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-item-premium {
        padding: 1.5rem;
        border-radius: 16px;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-item-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .info-item-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .info-item-content {
        width: 100%;
    }
    
    .info-item-label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .info-item-value {
        font-size: 0.9375rem;
        line-height: 1.5;
        word-break: break-word;
    }
    
    .contact-cta-premium {
        padding-top: 1.5rem;
    }
    
    .cta-text-premium {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .cta-button-premium {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .cta-button-premium svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .contact-section-premium {
        padding: 3rem 0;
    }
    
    .contact-section-header-premium {
        margin-bottom: 2.5rem;
    }
    
    .contact-badge-premium {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .contact-title-premium {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .contact-subtitle-premium {
        font-size: 0.9375rem;
    }
    
    .contact-content-premium {
        gap: 2rem;
    }
    
    .contact-form-premium {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-info-premium {
        padding: 1.75rem 1.25rem;
    }
    
    .form-icon-wrapper,
    .info-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .form-icon-wrapper svg,
    .info-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
    
    .form-title-premium,
    .info-title-premium {
        font-size: 1.375rem;
    }
    
    .form-description-premium,
    .info-description-premium {
        font-size: 0.875rem;
    }
    
    .form-input-premium {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        min-height: 48px;
        height: 48px;
    }
    
    .form-textarea-premium {
        min-height: 120px;
        height: auto;
        padding: 0.875rem 1rem;
    }
    
    .form-select-premium {
        min-height: 48px;
        height: 48px;
    }
    
    .form-submit-premium {
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .contact-info-item-premium {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .info-item-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .info-item-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-button-premium {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

.contact-info-header-premium {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.info-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.info-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
    stroke-width: 2.5;
}

.info-title-premium {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
}

.info-description-premium {
    color: var(--color-gray);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.contact-info-list-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--color-beige);
    border-radius: 18px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.contact-info-item-premium:hover {
    border-color: var(--color-gold);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.info-item-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--color-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-dark-blue);
    stroke-width: 2.5;
}

.info-item-content {
    flex: 1;
}

.info-item-label {
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item-value {
    color: var(--color-gray);
    font-size: 1.0625rem;
    line-height: 1.6;
    display: block;
}

.info-link-premium {
    color: var(--color-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.info-link-premium:hover {
    color: var(--color-gold);
}

/* Contact CTA Premium */
.contact-cta-premium {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.cta-text-premium {
    color: var(--color-gray);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.cta-button-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.0625rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cta-button-premium:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.cta-button-premium svg {
    width: 20px;
    height: 20px;
}

/* Legacy Contact Styles (keeping for compatibility) */
.contact-section-modern {
    padding: 6rem 0;
}

@media (max-width: 767px) {
    .contact-section-modern {
        padding: 4rem 0;
    }
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

@media (min-width: 1024px) {
    .contact-grid-modern {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

/* Contact Form Modern */
.contact-form-wrapper-modern {
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form-wrapper-modern:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

@media (max-width: 767px) {
    .contact-form-wrapper-modern {
        padding: 2rem;
    }
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-modern > div {
    display: flex;
    flex-direction: column;
}

.contact-form-modern label {
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-form-modern input,
.contact-form-modern textarea,
.contact-form-modern select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
    color: var(--color-dark-blue);
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus,
.contact-form-modern select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form-modern button[type="submit"] {
    background: var(--color-dark-blue);
    color: var(--color-white);
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.contact-form-modern button[type="submit"]:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Contact Info Modern */
.contact-info-wrapper-modern {
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .contact-info-wrapper-modern {
        padding: 2rem;
    }
}

.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-info-subtitle {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-beige);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--color-gold);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-dark-blue);
    stroke-width: 2.5;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-info-value {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--color-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-gold);
}

/* Contact Form Corporate (Legacy - keeping for compatibility) */
.contact-form-corporate {
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 3rem;
}

.contact-form-corporate input,
.contact-form-corporate textarea,
.contact-form-corporate select {
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-corporate input:focus,
.contact-form-corporate textarea:focus,
.contact-form-corporate select:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form-corporate button[type="submit"] {
    background: var(--color-dark-blue);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-corporate button[type="submit"]:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Corporate Footer */
.corporate-footer {
    background: var(--color-dark-blue);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--color-gold);
}

.footer-content-corporate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 639px) {
    .footer-content-corporate {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-content-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.9;
}

.footer-logo-img {
    height: 90px; /* Increased by 50% from 60px */
    width: auto;
    max-width: 300px; /* Increased proportionally */
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand-corporate h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-brand-corporate p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-contact-corp {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-contact-corp strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links-corp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-corp li {
    margin-bottom: 0.75rem;
}

.footer-links-corp a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-corp a:hover {
    color: var(--color-gold);
}

.footer-links-corp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-corp li {
    margin-bottom: 0.75rem;
}

.footer-links-corp a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-corp a:hover {
    color: var(--color-gold);
}

.social-icon:hover {
    background: var(--color-gold) !important;
    color: var(--color-dark-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ============================================
   RESULT SECTION MODERN
   ============================================ */
.result-section-modern {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .result-section-modern {
        padding: 5rem 0;
    }
}

.result-section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.result-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(30, 58, 138, 0.88) 100%);
}

.result-section-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.result-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.result-section-badge svg {
    width: 18px;
    height: 18px;
}

.result-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.result-section-description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.result-section-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .result-section-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.result-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-feature-item:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.result-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-dark-blue);
    stroke-width: 2.5;
}

.result-feature-item span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
}

.footer-bottom-corporate {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-corporate p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-bottom-corporate a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-corporate a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* ============================================
   NEW PARTNERS SECTION - COMPLETE REWORK FROM SCRATCH
   ============================================ */
.partners-section-new {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-beige) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.partners-wrapper-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.partners-intro-new {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-label-new {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partners-label-new svg {
    width: 18px;
    height: 18px;
}

.partners-heading-new {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.partners-description-new {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--color-gray);
    line-height: 1.7;
}

/* Partners Showcase */
.partners-showcase-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .partners-showcase-new {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .partners-showcase-new {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .partners-showcase-new {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .partners-showcase-new {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 4rem;
    }
}

.partner-item-new {
    position: relative;
}

.partner-box-new {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.partner-item-new:hover .partner-box-new {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--color-gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige) 100%);
}

.partner-link-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.partner-image-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.partner-item-new:hover .partner-image-container {
    transform: scale(1.2);
}

.partner-image-new {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.partner-item-new:hover .partner-image-new {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.partner-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s ease;
}

.partner-item-new:hover .partner-shine {
    left: 100%;
}

.partner-no-image {
    color: var(--color-gray-light);
}

.partner-no-image svg {
    width: 56px;
    height: 56px;
}

.partner-info-new {
    margin-top: auto;
    text-align: center;
}

.partner-label-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
    display: block;
}

.partner-item-new:hover .partner-label-text {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-gold);
}

.partners-empty-new {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--color-gray);
}

/* Partners Mobile Responsive */
@media (max-width: 767px) {
    .partners-section-new {
        padding: 4rem 0;
    }
    
    .partners-wrapper-new {
        padding: 0 1rem;
    }
    
    .partners-intro-new {
        margin-bottom: 3rem;
    }
    
    .partners-label-new {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
    }
    
    .partners-heading-new {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .partners-description-new {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .partners-showcase-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0;
    }
    
    .partner-box-new {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .partner-image-container {
        height: 80px;
        margin-bottom: 0.75rem;
    }
    
    .partner-label-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .partners-showcase-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-box-new {
        padding: 1.25rem;
    }
    
    .partner-image-container {
        height: 70px;
    }
}

.empty-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-gray-light);
}

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

/* ============================================
   NEW EVENTS SECTION - COMPLETE REWORK FROM SCRATCH
   ============================================ */
.events-section-new {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

@media (max-width: 767px) {
    .events-section-new {
        padding: 4rem 0;
    }
}

.events-wrapper-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.events-intro-new {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .events-intro-new {
        margin-bottom: 2.5rem;
    }
}

.events-label-new {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(30, 58, 138, 0.1);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.events-label-new svg {
    width: 18px;
    height: 18px;
}

.events-heading-new {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.events-description-new {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--color-gray);
    line-height: 1.7;
}

/* Events Showcase */
.events-showcase-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .events-showcase-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .events-showcase-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 639px) {
    .events-showcase-new {
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.event-item-new {
    position: relative;
}

.event-card-new {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.event-item-new:hover .event-card-new {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
}

.event-media-new {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
}

@media (min-width: 768px) {
    .event-media-new {
        height: 300px;
    }
}

.event-thumbnail-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-item-new:hover .event-thumbnail-new {
    transform: scale(1.2);
}

.event-thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
}

.event-thumbnail-placeholder svg {
    width: 90px;
    height: 90px;
}

.event-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.5) 100%);
    transition: opacity 0.4s ease;
}

.event-item-new:hover .event-overlay-new {
    opacity: 0.9;
}

.event-date-new {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    padding: 0.875rem 1.125rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    z-index: 10;
    min-width: 65px;
}

.event-day {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-month {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.95;
}

.event-body-new {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .event-body-new {
        padding: 1.5rem;
    }
}

.event-title-new {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-item-new:hover .event-title-new {
    color: var(--color-gold);
}

.event-details-new {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.detail-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.event-summary-new {
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.9375rem;
}

.event-action-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.action-text {
    font-weight: 800;
    color: var(--color-dark-blue);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.event-item-new:hover .action-text {
    color: var(--color-gold);
}

.action-arrow {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.event-item-new:hover .action-arrow {
    transform: translateX(5px);
}


.events-footer-new {
    text-align: center;
    margin-top: 4.5rem;
}

.events-cta-new {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 2.75rem;
    background: var(--color-dark-blue);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.events-cta-new:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.events-cta-new svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.events-cta-new:hover svg {
    transform: translateX(5px);
}


.events-empty-new {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--color-gray);
}

.events-empty-new .empty-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-gray-light);
}

.events-empty-new .empty-icon-new svg {
    width: 100%;
    height: 100%;
}

.events-empty-new p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .events-empty-new {
        padding: 3rem 1.5rem;
    }
    
    .events-empty-new .empty-icon-new {
        width: 64px;
        height: 64px;
    }
}

/* Network Diagram Lines */
.network-line {
    position: absolute;
    height: 3px;
    background: var(--color-gold);
    z-index: 5;
}

.network-line.top-left {
    top: 75px;
    left: 50%;
    width: 150px;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: left center;
}

.network-line.top-right {
    top: 75px;
    right: 50%;
    width: 150px;
    transform: translateX(50%) rotate(45deg);
    transform-origin: right center;
}

.network-line.bottom-left {
    bottom: 75px;
    left: 50%;
    width: 150px;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: left center;
}

.network-line.bottom-right {
    bottom: 75px;
    right: 50%;
    width: 150px;
    transform: translateX(50%) rotate(-45deg);
    transform-origin: right center;
}

/* Fix Network Node Positioning */
.network-node.top-left {
    top: 0;
    left: 0;
}

.network-node.top-right {
    top: 0;
    right: 0;
}

.network-node.bottom-left {
    bottom: 0;
    left: 0;
}

.network-node.bottom-right {
    bottom: 0;
    right: 0;
}

/* Growth Approach Section */
.growth-approach-section {
    background: var(--color-beige);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Mobile First - Base Styles (320px+) */
@media (max-width: 639px) {
    /* Header Mobile */
    .corporate-header {
        padding: 0;
    }
    
    .corporate-header .container {
        padding: 0.75rem 1rem;
    }
    
    .corporate-logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .corporate-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        display: none; /* Hide on very small screens */
    }
    
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

@media (max-width: 639px) {
    .header-actions {
        gap: 0.5rem;
    }
    
}
    
    body {
        padding-top: 0 !important;
    }
    
    .mobile-menu {
        top: 0;
        max-height: 100vh;
    }
    
    /* Hero Mobile */
    .corporate-hero {
        margin-top: 70px;
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    
    .hero-content-corporate {
        padding: 2rem 1rem;
    }
    
    .hero-title-corporate {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-ctas-corporate {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-btn-corporate {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    /* Sections Mobile */
    .corporate-section {
        padding: 3rem 0;
    }
    
    .section-header-corporate {
        margin-bottom: 2rem;
    }
    
    .section-title-corporate {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    
    /* Mission Icons Mobile - 2x1 Grid Centered */
    .mission-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
        max-width: 500px;
        margin: 2rem auto;
    }
    
    .mission-icon-item {
        max-width: 100%;
        width: 100%;
    }
    
    /* Third item centered in second row */
    .mission-icon-item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 200px;
    }
    
    .mission-icon-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .mission-icon-circle svg {
        width: 50px;
        height: 50px;
    }
    
    .mission-icon-label {
        font-size: 1rem;
    }
    
    /* Process Flow Mobile */
    .process-flow {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .process-title {
        font-size: 1.25rem;
    }
    
    /* Vision Quote Mobile */
    .vision-quote {
        font-size: 1.25rem;
        padding: 1.5rem 1rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    /* Mission Commitments Mobile */
    .mission-commitments {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commitment-card {
        padding: 1.5rem;
    }
    
    /* Services Mobile */
    .services-corporate {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item-corp {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-icon-corp {
        margin: 0 auto 1rem;
    }
    
    /* Advantages Mobile */
    .advantages-corporate {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-item-corp {
        padding: 1.5rem;
    }
    
    /* Network Diagram Mobile */
    .network-diagram {
        padding: 2rem 1rem;
        min-height: auto;
        height: auto;
    }
    
    .network-center {
        width: 140px;
        height: 140px;
        font-size: 1rem;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .network-nodes {
        position: relative !important;
        inset: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .network-node {
        position: relative !important;
        width: 100% !important;
        margin: 0 !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .network-node-circle {
        width: 110px;
        height: 110px;
        font-size: 0.6875rem;
        margin: 0 auto 0.75rem;
        padding: 0.5rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .network-node-label {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
    }
    
    .network-line {
        display: none;
    }
    
    /* Text spacing on mobile */
    .max-w-4xl.mx-auto.mb-8 {
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }
    
    .max-w-4xl.mx-auto.mb-8 p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Sectors Mobile */
    .sectors-corporate {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Events Mobile */
    /* Modern Events Mobile */
    .modern-events-section {
        padding: 3rem 0;
    }
    
    .events-header {
        margin-bottom: 2.5rem;
    }
    
    .events-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-image-wrapper {
        height: 200px;
    }
    
    .event-card-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.125rem;
    }
    
    .event-meta-item {
        font-size: 0.875rem;
    }
    
    .events-footer {
        margin-top: 2.5rem;
    }
    
    .events-view-all-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Modern Partners Mobile */
    .modern-partners-section {
        padding: 3rem 0;
    }
    
    .partners-header {
        margin-bottom: 2.5rem;
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card-inner {
        padding: 1.5rem;
    }
    
    .partner-logo-wrapper {
        height: 60px;
    }
    
    .partner-logo-img {
        max-height: 50px;
    }
    
    .partner-name {
        font-size: 0.75rem;
    }
    
    /* Contact Form Mobile */
    .contact-form-corporate {
        padding: 2rem 1.5rem;
    }
    
    /* Footer Mobile */
    .corporate-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content-corporate {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-brand-corporate h3 {
        font-size: 1.5rem;
    }
}

/* Tablet Styles (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
    /* Header Tablet */
    .corporate-logo-img {
        height: 55px;
        max-width: 180px;
    }
    
    .corporate-cta-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    /* Hero Tablet */
    .hero-title-corporate {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.375rem;
    }
    
    .hero-ctas-corporate {
        gap: 1.25rem;
    }
    
    /* Sections Tablet */
    .corporate-section {
        padding: 4rem 0;
    }
    
    .section-title-corporate {
        font-size: 2.25rem;
    }
    
    /* Mission Icons Tablet */
    .mission-icons {
        gap: 3rem;
        flex-wrap: wrap;
    }
    
    /* Process Flow Tablet */
    .process-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 1rem);
        max-width: 280px;
    }
    
    .process-step::after {
        display: none;
    }
    
    /* Services Tablet */
    .services-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    /* Advantages Tablet */
    .advantages-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    /* Sectors Tablet */
    .sectors-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    /* Modern Events Tablet */
    .modern-events-section {
        padding: 4rem 0;
    }
    
    .events-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .event-image-wrapper {
        height: 240px;
    }
    
    /* Modern Partners Tablet */
    .modern-partners-section {
        padding: 4rem 0;
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .partner-card-inner {
        padding: 1.75rem;
    }
    
    .partner-logo-wrapper {
        height: 70px;
    }
    
    /* Network Diagram Tablet */
    .network-node {
        width: 160px;
    }
    
    .network-node-circle {
        width: 110px;
        height: 110px;
    }
}

/* Desktop Small (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .corporate-section {
        padding: 4.5rem 0;
    }
    
    .section-title-corporate {
        font-size: 2.5rem;
    }
    
    .services-corporate {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-corporate {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-corporate {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop Large (1280px+) */
@media (min-width: 1280px) {
    .corporate-section {
        padding: 5rem 0;
    }
    
    .section-title-corporate {
        font-size: 3rem;
    }
    
    .services-corporate {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-corporate {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sectors-corporate {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .modern-partners-section {
        padding: 6rem 0;
    }
    
    .modern-events-section {
        padding: 6rem 0;
    }
}
































/* ============================================
   OPPORTUNITIES PAGE - MODERN LAYOUT & GRIDS
   ============================================ */

/* Opportunities Page Header */
.opportunities-page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.opportunities-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%);
    z-index: 1;
}

.opportunities-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.opportunities-page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.opportunities-page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.opportunities-page-badge svg {
    width: 18px;
    height: 18px;
}

.opportunities-page-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.opportunities-page-description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Opportunities Content Section */
.opportunities-content-section {
    padding: 3rem 0;
    background: var(--color-white);
}

.opportunities-entry-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.opportunities-entry-content p {
    margin-bottom: 1.5rem;
}

/* Opportunities Grid Section */
.opportunities-grid-section {
    padding: 5rem 0;
    background: var(--color-beige);
}

@media (max-width: 767px) {
    .opportunities-grid-section {
        padding: 3rem 0;
    }
}

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

@media (min-width: 1024px) {
    .opportunities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .opportunities-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Opportunity Card */
.opportunity-card-modern {
    position: relative;
}

.opportunity-card-inner {
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.opportunity-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.opportunity-card-modern:hover .opportunity-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.opportunity-card-modern:hover .opportunity-card-inner::before {
    transform: scaleX(1);
}

@media (max-width: 767px) {
    .opportunity-card-inner {
        padding: 2rem;
    }
}

/* Opportunity Icon */
.opportunity-icon-wrapper {
    margin-bottom: 2rem;
}

.opportunity-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.opportunity-card-modern:hover .opportunity-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.opportunity-icon-circle svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-dark-blue);
    stroke-width: 2.5;
    fill: none;
}

/* Opportunity Content */
.opportunity-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opportunity-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.opportunity-card-modern:hover .opportunity-title {
    color: var(--color-gold);
}

.opportunity-description {
    color: var(--color-gray);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex: 1;
}

/* Opportunity Features */
.opportunity-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.opportunity-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 0.9375rem;
}

.opportunity-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* Opportunity CTA Button */
.opportunity-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-dark-blue);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.opportunity-cta-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.opportunity-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.opportunity-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .opportunities-page-header,
    .about-page-header,
    .media-page-header,
    .events-page-header,
    .sectors-page-header {
        padding: 4rem 0 3rem;
    }
    
    .opportunities-content-section,
    .about-page-content,
    .media-page-content {
        padding: 2rem 0;
    }
    
    .opportunity-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .opportunity-icon-circle svg {
        width: 40px;
        height: 40px;
    }
}

/* Modern Touch-Friendly Elements */
@media (hover: none) and (pointer: coarse) {
    .corporate-cta-btn,
    .hero-btn-corporate,
    .contact-form-corporate button[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
    
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.mobile-menu-toggle.active svg {
    transform: rotate(90deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}
    
    .corporate-nav a {
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   PREMIUM PAGE TEMPLATES - ENHANCED STYLES
   ============================================ */

/* Page Hero Section */
.page-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
}

.page-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-plus {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Container Premium */
.container-premium {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Styles */
.section-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 50px;
    margin-bottom: 1.25rem;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title-premium {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle-premium {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-text-premium {
    font-size: 1.0625rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-mission-section,
.about-services-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.about-values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mission-grid,
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content,
.intro-content {
    max-width: 560px;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-circle {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.feature-text h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Mission Visual */
.mission-visual {
    position: relative;
}

.mission-image-stack {
    position: relative;
    height: 500px;
}

.mission-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 70%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.mission-image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--color-white);
}

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

.mission-floating-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.floating-icon {
    color: var(--color-gold);
}

.floating-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark-blue);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(30, 58, 138, 0.03) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-dark-blue);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Services Split Layout */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.services-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 138, 0.8) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-white);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-dark-blue);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item-about {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item-about:hover {
    background: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.service-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.service-details h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.375rem;
}

.service-details p {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* CTA Sections */
.about-cta-section,
.sectors-cta-section,
.events-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9375rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark-blue);
    border-color: var(--color-white);
}

/* Event Registration Buttons */
.event-registration-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0;
    align-items: center;
}

@media (min-width: 640px) {
    .event-registration-ctas {
        gap: 1.5rem;
    }
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    border: 2px solid transparent;
}

.event-register-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.event-register-btn:hover svg {
    transform: translateX(4px);
}

.event-register-btn::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.5s ease;
}

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

.event-register-btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    color: var(--color-dark-blue);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.event-register-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #d4af37 0%, #e0b841 100%);
}

.event-register-btn-secondary {
    background: transparent;
    color: var(--color-dark-blue);
    border: 2px solid var(--color-dark-blue);
    box-shadow: 0 4px 15px rgba(13, 27, 62, 0.1);
}

.event-register-btn-secondary:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.25);
}

.event-register-btn-secondary:hover svg {
    color: var(--color-white);
}

@media (max-width: 767px) {
    .event-registration-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-register-btn {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        padding: 0.9375rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .event-register-btn svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

@media (min-width: 768px) {
    .event-register-btn {
        min-width: 220px;
        padding: 1.125rem 2.25rem;
        font-size: 1.0625rem;
    }
}

/* Event Details Box Premium Styling */
.event-details-premium {
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(13, 27, 62, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.event-details-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.event-details-title::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    border-radius: 2px;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .event-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(13, 27, 62, 0.08);
    transition: all 0.3s ease;
}

.event-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.1);
    border-color: var(--color-gold);
}

.event-detail-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    border-radius: 10px;
    color: var(--color-dark-blue);
    flex-shrink: 0;
}

.event-detail-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.event-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.event-detail-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(13, 27, 62, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .event-details-premium {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .event-details-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .event-detail-item {
        padding: 1rem;
    }
    
    .event-detail-icon {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
    }
    
    .event-detail-icon svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .event-detail-value {
        font-size: 0.9375rem;
    }
}

/* ============================================
   SINGLE EVENT PAGE - PREMIUM STYLING
   ============================================ */

.single-event-main {
    background: var(--color-beige);
    min-height: 100vh;
}

.single-event-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: var(--color-white);
}

.single-event-article-wrapper {
    display: flex;
    flex-direction: column;
}

/* Event Banner */
.single-event-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.single-event-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-event-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Content Wrapper */
.single-event-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

/* Event Header */
.single-event-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(13, 27, 62, 0.1);
}

.single-event-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-dark-blue);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Event Details Box */
.single-event-details-box {
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(13, 27, 62, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.single-event-details-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.single-event-details-title::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    border-radius: 2px;
}

.single-event-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .single-event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .single-event-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.single-event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(13, 27, 62, 0.08);
    transition: all 0.3s ease;
}

.single-event-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.1);
    border-color: var(--color-gold);
}

.single-event-detail-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    border-radius: 10px;
    color: var(--color-dark-blue);
    flex-shrink: 0;
}

.single-event-detail-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.single-event-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.single-event-detail-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(13, 27, 62, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-event-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1.5;
}

/* Event Content */
.single-event-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(13, 27, 62, 0.85);
    margin-bottom: 3rem;
}

.single-event-content p {
    margin-bottom: 1.5rem;
}

.single-event-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    margin: 2.5rem 0 1.5rem;
    line-height: 1.3;
}

.single-event-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.single-event-content ul,
.single-event-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-event-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.single-event-content a {
    color: var(--color-dark-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.single-event-content a:hover {
    color: var(--color-gold);
}

/* Registration Buttons */
.single-event-registration-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    align-items: center;
}

@media (min-width: 640px) {
    .single-event-registration-ctas {
        gap: 1.5rem;
    }
}

.single-event-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    border: 2px solid transparent;
}

.single-event-register-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.single-event-register-btn:hover svg {
    transform: translateX(4px);
}

.single-event-register-btn::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.5s ease;
}

.single-event-register-btn:hover::before {
    left: 100%;
}

.single-event-register-btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    color: var(--color-dark-blue);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.single-event-register-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #d4af37 0%, #e0b841 100%);
}

.single-event-register-btn-secondary {
    background: transparent;
    color: var(--color-dark-blue);
    border: 2px solid var(--color-dark-blue);
    box-shadow: 0 4px 15px rgba(13, 27, 62, 0.1);
}

.single-event-register-btn-secondary:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 27, 62, 0.25);
}

.single-event-register-btn-secondary:hover svg {
    color: var(--color-white);
}

/* Related Events Section */
.single-event-related-section {
    padding: 5rem 0;
    background: var(--color-beige);
    margin-top: 4rem;
    border-top: 1px solid rgba(13, 27, 62, 0.1);
}

/* Responsive Design */
@media (max-width: 767px) {
    .single-event-banner {
        height: 40vh;
        min-height: 300px;
    }
    
    .single-event-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .single-event-header {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .single-event-details-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .single-event-details-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .single-event-detail-item {
        padding: 1rem;
    }
    
    .single-event-detail-icon {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
    }
    
    .single-event-detail-icon svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .single-event-detail-value {
        font-size: 0.9375rem;
    }
    
    .single-event-content {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .single-event-content h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1.25rem;
    }
    
    .single-event-content h3 {
        font-size: 1.375rem;
        margin: 1.75rem 0 1rem;
    }
    
    .single-event-registration-ctas {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .single-event-register-btn {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        padding: 0.9375rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .single-event-register-btn svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .single-event-related-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .single-event-register-btn {
        min-width: 220px;
        padding: 1.125rem 2.25rem;
        font-size: 1.0625rem;
    }
}

/* Sectors Page Styles */
.sectors-intro-section,
.sectors-grid-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 1.5rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-dark-blue);
    font-weight: 600;
}

.intro-feature svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.intro-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.intro-stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.intro-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-white);
}

.stat-number-large {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-dark-blue);
    line-height: 1;
}

.stat-label-large {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
}

/* Sectors Showcase Grid */
.sectors-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sector-showcase-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.sector-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.15);
}

.sector-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sector-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-showcase-card:hover .sector-image {
    transform: scale(1.1);
}

.sector-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.7) 100%);
}

.sector-stats-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stats-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    line-height: 1;
}

.stats-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-gray);
    text-transform: uppercase;
}

.sector-content-wrapper {
    padding: 1.75rem;
}

.sector-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(30, 58, 138, 0.03) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-dark-blue);
}

.sector-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.sector-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
}

.sector-card-description {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sector-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(30, 58, 138, 0.06);
    color: var(--color-dark-blue);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sector-link:hover {
    color: var(--color-gold);
    gap: 0.75rem;
}

/* Events Page Styles */
/* Featured Event/Post Section - Premium Redesign */
.featured-event-section,
.featured-post-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.featured-event-card,
.featured-post-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.featured-event-card:hover,
.featured-post-card:hover {
    box-shadow: 0 40px 80px rgba(30, 58, 138, 0.15);
    transform: translateY(-4px);
}

.featured-event-image,
.featured-post-image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-event-card:hover .featured-image,
.featured-post-card:hover .featured-image {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 58, 138, 0.2) 100%);
}

.featured-badge,
.featured-category {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    color: var(--color-dark-blue);
    font-weight: 800;
    font-size: 0.8125rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.featured-event-content,
.featured-post-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
}

.featured-date-block {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    width: fit-content;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.featured-event-card:hover .featured-date-block {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.featured-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.featured-month {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 0.375rem;
    letter-spacing: 0.05em;
}

.featured-year {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    font-weight: 600;
}

.featured-title,
.featured-post-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--color-dark-blue);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-meta,
.featured-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--color-gray);
    font-weight: 500;
}

.meta-item svg {
    color: var(--color-gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.featured-excerpt,
.featured-post-excerpt {
    font-size: 1.0625rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.featured-cta,
.featured-post-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: var(--color-white);
    font-weight: 800;
    font-size: 0.9375rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.featured-cta:hover,
.featured-post-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.35);
    gap: 1rem;
}

.featured-cta svg,
.featured-post-cta svg {
    transition: transform 0.3s ease;
}

.featured-cta:hover svg,
.featured-post-cta:hover svg {
    transform: translateX(4px);
}

/* Events Grid */
/* ============================================
   EVENTS TEMPLATE - PREMIUM REDESIGN
   ============================================ */

.events-grid-section,
.media-grid-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.events-grid-premium,
.media-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.event-card-new,
.media-card-new {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card-new::before,
.media-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-dark-blue) 0%, var(--color-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.event-card-new:hover,
.media-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.2);
}

.event-card-new:hover::before,
.media-card-new:hover::before {
    transform: scaleX(1);
}

.event-card-link,
.media-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.event-image-container,
.media-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.event-thumbnail,
.media-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-new:hover .event-thumbnail,
.media-card-new:hover .media-thumbnail {
    transform: scale(1.15) rotate(2deg);
}

.event-placeholder,
.media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.event-image-overlay,
.media-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.event-card-new:hover .event-image-overlay,
.media-card-new:hover .media-image-overlay {
    opacity: 1;
}

.event-date-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.event-card-new:hover .event-date-badge {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-dark-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
}

.media-category-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a227 100%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.event-card-content,
.media-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title,
.media-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.event-card-new:hover .event-card-title,
.media-card-new:hover .media-card-title {
    color: var(--color-dark-blue-light);
}

.event-card-meta,
.media-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

.event-meta-item svg {
    color: var(--color-gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.meta-date,
.meta-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-gray);
    font-weight: 500;
}

.meta-date svg,
.meta-read-time svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

.event-card-excerpt,
.media-card-excerpt {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.event-card-cta,
.media-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card-cta svg,
.media-card-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.event-card-new:hover .event-card-cta,
.media-card-new:hover .media-card-cta {
    color: var(--color-gold);
    gap: 0.875rem;
}

.event-card-new:hover .event-card-cta svg,
.media-card-new:hover .media-card-cta svg {
    transform: translateX(4px);
}

/* Pagination */
.events-pagination,
.media-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.events-pagination ul,
.media-pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-pagination li a,
.events-pagination li span,
.media-pagination li a,
.media-pagination li span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.events-pagination li a:hover,
.media-pagination li a:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
    border-color: var(--color-dark-blue);
}

.events-pagination li .current,
.media-pagination li .current {
    background: var(--color-dark-blue);
    color: var(--color-white);
    border-color: var(--color-dark-blue);
}

/* Empty States */
.events-empty,
.media-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 0.75rem;
}

.empty-text {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* Media Filter Section */
.media-filter-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-dark-blue);
    color: var(--color-dark-blue);
}

.filter-btn.active {
    background: var(--color-dark-blue);
    color: var(--color-white);
    border-color: var(--color-dark-blue);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.25);
}

.newsletter-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.newsletter-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.newsletter-form .form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.75rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--color-gold);
    color: var(--color-dark-blue);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   RESPONSIVE STYLES FOR PAGE TEMPLATES
   ============================================ */
@media (max-width: 1024px) {
    .mission-grid,
    .intro-grid,
    .services-split,
    .featured-event-card,
    .featured-post-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-showcase,
    .events-grid-premium,
    .media-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-image-stack {
        height: 400px;
    }
    
    .featured-event-image,
    .featured-post-image {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .page-hero-content {
        padding: 5rem 1rem 3rem;
    }
    
    .page-hero-stats {
        gap: 2rem;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
    }
    
    .about-mission-section,
    .about-values-section,
    .about-services-section,
    .sectors-intro-section,
    .sectors-grid-section,
    .events-grid-section,
    .media-grid-section,
    .featured-event-section,
    .featured-post-section {
        padding: 3.5rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 1.75rem 1.5rem;
    }
    
    .sectors-showcase,
    .events-grid-premium,
    .media-grid-new {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .featured-event-card,
    .featured-post-card {
        border-radius: 16px;
    }
    
    .featured-event-image,
    .featured-post-image {
        min-height: 250px;
    }
    
    .featured-event-content,
    .featured-post-content {
        padding: 2rem 1.5rem;
    }
    
    .featured-date-block {
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .featured-day {
        font-size: 1.75rem;
    }
    
    .featured-month {
        font-size: 0.8125rem;
    }
    
    .event-image-container,
    .media-image-container {
        height: 200px;
    }
    
    .event-date-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.625rem 0.875rem;
    }
    
    .date-day {
        font-size: 1.25rem;
    }
    
    .date-month {
        font-size: 0.6875rem;
    }
    
    .event-card-content,
    .media-card-content {
        padding: 1.5rem;
    }
    
    .event-card-title,
    .media-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }
    
    .event-card-meta,
    .media-card-meta {
        gap: 0.75rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.875rem;
    }
    
    .event-card-excerpt,
    .media-card-excerpt {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        -webkit-line-clamp: 2;
    }
    
    .event-card-cta,
    .media-card-cta {
        font-size: 0.875rem;
        padding-top: 0.875rem;
    }
    
    .mission-image-stack {
        height: 350px;
    }
    
    .mission-floating-card {
        padding: 1rem 1.5rem;
    }
    
    .services-image-container img {
        height: 350px;
    }
    
    .services-list {
        gap: 1rem;
    }
    
    .service-item-about {
        padding: 1.25rem;
    }
    
    .featured-event-content,
    .featured-post-content {
        padding: 2rem;
    }
    
    .featured-date-block {
        padding: 1rem;
    }
    
    .event-card-content,
    .media-card-content {
        padding: 1.25rem;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-gold,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
    
    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .newsletter-card {
        padding: 2.5rem 1.5rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
        justify-content: center;
    }
    
    .intro-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .corporate-header,
    .mobile-menu,
    .corporate-footer,
    .corporate-cta-btn,
    .hero-ctas-corporate {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
    
    .corporate-section {
        page-break-inside: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .corporate-logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .corporate-hero {
        min-height: 70vh;
    }
    
    .hero-content-corporate {
        padding: 1.5rem 1rem;
    }
    
    .corporate-section {
        padding: 2.5rem 0;
    }
}

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

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-dark-blue);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* Ensure proper container behavior */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}
