 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-navy: #0A2540;
            --primary-deep: #0F3B5C;
            --primary-blue: #1C6E8F;
            --accent-gold: #C6A43F;
            --accent-gold-light: #E8D5A3;
            --accent-gold-dark: #A8892E;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1E293B;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
            --shadow-md: 0 8px 20px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.02);
            --shadow-lg: 0 20px 35px -12px rgba(0,0,0,0.1);
            --shadow-elevated: 0 25px 40px -12px rgba(0,0,0,0.15);
            --radius-md: 16px;
            --radius-lg: 24px;
            --sidebar-width: 280px;
            --sidebar-collapsed: 88px;
            --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --radius-card: 1.25rem;


            --radius-sm: 8px;
            --radius-xl: 32px;
            --gray-500: #64748B;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--gray-50);
            color: var(--gray-800);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* ---------- SIDEBAR (Elegant & Smooth) ---------- */
        .app-layout {
            display: flex;
            min-height: 100vh;
            width: 100%;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-width);
            height: 100vh;
            background: var(--white);
            border-right: 1px solid var(--gray-200);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

        .sidebar.collapsed {
            width: var(--sidebar-collapsed);
        }

        .sidebar-header {
            padding: 32px 24px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-area h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: var(--primary-navy);
            line-height: 1.3;
        }

        .logo-area p {
            font-size: 0.7rem;
            color: var(--gray-600);
            letter-spacing: 0.3px;
            margin-top: 4px;
        }

        .collapse-btn {
            background: var(--gray-100);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            color: var(--gray-600);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .collapse-btn:hover {
            background: var(--gray-200);
            color: var(--primary-navy);
        }

        .nav-menu {
            flex: 1;
            padding: 28px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 18px;
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-item i {
            width: 24px;
            font-size: 1.2rem;
            color: var(--gray-500);
        }

        .nav-item:hover {
            background: var(--gray-100);
            color: var(--primary-blue);
        }

        .nav-item.active {
            background: rgba(28, 110, 143, 0.08);
            color: var(--primary-blue);
            font-weight: 600;
        }

        .nav-item.active i {
            color: var(--primary-blue);
        }

        .sidebar.collapsed .nav-item span {
            display: none;
        }

        .sidebar.collapsed .nav-item {
            justify-content: center;
            padding: 12px;
        }

        .sidebar.collapsed .logo-area h1,
        .sidebar.collapsed .logo-area p {
            display: none;
        }

        .sidebar.collapsed .sidebar-header {
            justify-content: center;
            padding: 32px 12px;
        }

        /* Main Panel - Dynamic Width Transition */
        .main-panel {
            flex: 1;
            margin-left: var(--sidebar-width);
            transition: var(--transition);
            width: calc(100% - var(--sidebar-width));
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Hero Section with integrated value cards (visible only on home) */
        .hero-premium {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
            color: white;
            padding: 70px 0 80px;
            position: relative;
            isolation: isolate;
        }

        .hero-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(198,164,63,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-left h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-left .hero-sub {
            font-size: 1.1rem;
            opacity: 0.85;
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-gold {
            background: var(--accent-gold);
            color: var(--primary-navy);
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.9rem;
        }

        .btn-gold:hover {
            background: #d4b04c;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .btn-outline-light {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.4);
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-outline-light:hover {
            border-color: var(--accent-gold);
            background: rgba(198,164,63,0.1);
        }

        .value-stack {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .value-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(2px);
            border-radius: var(--radius-lg);
            padding: 1.5rem 1.75rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.25s;
            cursor: default;
        }

        .value-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(4px);
            border-color: var(--accent-gold-light);
        }

        .value-icon {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 0.75rem;
        }

        .value-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: -0.2px;
        }

        .value-card p {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.5;
        }

        .section-header {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent-gold);
            padding-left: 1rem;
        }

        .section-sub {
            color: var(--gray-600);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .vertical-cards-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2rem 0 3rem 0;
        }

        .vertical-cards-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
            margin: 2rem 0 3rem 0;
        }

        .vertical-card {
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .vertical-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-gold-light);
        }

        .card-image {
            background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 1.5rem;
            text-align: center;
            border-bottom: 1px solid var(--gray-200);
            min-height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-image img {
            max-height: 150px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            border-radius: 10px;
            transition: transform 0.2s;
        }

        .vertical-card:hover .card-image img {
            transform: scale(1.02);
        }

        .card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--primary-navy);
            line-height: 1.3;
        }

        .card-body .role-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
            border-left: 3px solid var(--accent-gold);
            padding-left: 0.6rem;
        }

        .card-body p {
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-bottom: 0.9rem;
            line-height: 1.5;
            flex: 1;
        }

        .card-signature {
            margin-top: 1rem;
            font-size: 0.8rem;
            border-top: 1px dashed var(--gray-200);
            padding-top: 0.9rem;
            font-weight: 500;
            color: var(--primary-navy);
        }

        /* ---------- NEWS PAGE (Facebook Style Feed) ---------- */
        .news-page-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            padding: 2rem 2rem 1rem;
            max-width: 920px;
            margin: 0 auto;
            width: 100%;
        }

        .news-header {
            margin-bottom: 2rem;
            flex-shrink: 0;
        }

        .news-header h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-navy);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .news-header .header-underline {
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            margin-top: 0.5rem;
            border-radius: 4px;
        }

        .news-header p {
            color: var(--gray-600);
            margin-top: 1rem;
            font-size: 1rem;
        }

        .feed-scroll-container {
            flex: 1;
            overflow-y: auto;
            padding-right: 0.5rem;
            scrollbar-width: thin;
        }

        .feed-scroll-container::-webkit-scrollbar {
            width: 6px;
        }

        .feed-scroll-container::-webkit-scrollbar-track {
            background: var(--gray-200);
            border-radius: 10px;
        }

        .feed-scroll-container::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        }

        .news-feed {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 780px;
            margin: 0 auto;
            padding-bottom: 1rem;
        }

        .feed-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            cursor: pointer;
        }

        .feed-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-gold-light);
        }

        .feed-image-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .feed-image {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .feed-card:hover .feed-image {
            transform: scale(1.02);
        }

        .feed-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent-gold);
            color: var(--primary-navy);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem 0.85rem;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .feed-content {
            padding: 1.5rem;
        }

        .feed-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary-navy);
            margin-bottom: 0.75rem;
        }

        .feed-description {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.55;
            margin-bottom: 1.25rem;
        }

        .feed-datetime {
            display: inline-flex !important;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-gold-light);
            color: var(--primary-navy);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 1rem;
            border-radius: 40px;
            width: auto;
            margin-bottom: 1rem;
        }

        .feed-datetime i {
            font-size: 0.7rem;
            color: var(--accent-gold-dark);
        }

        .feed-footer {
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feed-read-more {
            color: var(--primary-blue);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .feed-read-more:hover {
            color: var(--accent-gold);
        }

        /* ---------- ANNOUNCEMENTS PAGE (Magazine Grid Style) ---------- */
        .announcements-page-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            padding: 2rem 2rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        .announcements-header {
            margin-bottom: 2rem;
            flex-shrink: 0;
        }

        .announcements-header h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-navy);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .announcements-header .header-underline {
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            margin-top: 0.5rem;
            border-radius: 4px;
        }

        .announcements-header p {
            color: var(--gray-600);
            margin-top: 1rem;
            font-size: 1rem;
        }

        .grid-scroll-container {
            flex: 1;
            overflow-y: auto;
            padding-right: 0.5rem;
            scrollbar-width: thin;
        }

        .grid-scroll-container::-webkit-scrollbar {
            width: 6px;
        }

        .grid-scroll-container::-webkit-scrollbar-track {
            background: var(--gray-200);
            border-radius: 10px;
        }

        .grid-scroll-container::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 2rem;
            padding-bottom: 1rem;
        }

        .news-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            border: 1px solid var(--gray-200);
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-elevated);
            border-color: var(--accent-gold-light);
        }

        .image-wrapper {
            overflow: hidden;
            position: relative;
        }

        .news-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.02);
        }

        .image-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent-gold);
            color: var(--primary-navy);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem 0.75rem;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary-navy);
            margin-bottom: 0.75rem;
        }

        .news-description {
            color: var(--gray-600);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-datetime {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-gold-light);
            color: var(--primary-navy);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 1rem;
            border-radius: 40px;
            width: auto;
        }

        .news-datetime i {
            font-size: 0.7rem;
            color: var(--accent-gold-dark);
        }

        .news-footer {
            margin-top: 1.25rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .read-more {
            color: var(--primary-blue);
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }

        .read-more:hover {
            color: var(--accent-gold);
        }

        .empty-state {
            text-align: center;
            padding: 4rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            color: var(--gray-400);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .news-card {
            animation: fadeUp 0.4s ease backwards;
        }

        .footer-premium {
            background: var(--primary-navy);
            color: var(--gray-300);
            padding: 48px 0;
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer-premium i {
            color: var(--accent-gold);
            margin-right: 8px;
        }

        .mobile-toggle {
            display: none;
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--primary-blue);
            color: white;
            border: none;
            width: 52px;
            height: 52px;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
            z-index: 1100;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .page-transition {
            display: none;
            animation: fadeSlideUp 0.3s ease;
        }

        .page-transition.active-page {
            display: block;
        }

        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 1100px) {
            .vertical-cards-4 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 980px) {
            .sidebar { transform: translateX(-100%); }
            .sidebar.mobile-open { transform: translateX(0); }
            .main-panel { margin-left: 0 !important; width: 100%; }
            .mobile-toggle { display: flex; }
            .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
            .hero-left h1 { font-size: 2.5rem; }
            .container { padding: 0 24px; }
            .vertical-cards-3 { grid-template-columns: 1fr; }
            .vertical-cards-4 { grid-template-columns: 1fr; }
            .news-page-container { padding: 1.5rem; }
            .news-header h1 { font-size: 2.2rem; }
            .announcements-page-container { padding: 1.5rem; }
            .announcements-header h1 { font-size: 2.2rem; }
            .news-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .grid-scroll-container { padding-right: 0; }
        }

        @media (max-width: 480px) {
            .image-badge { font-size: 0.6rem; padding: 0.2rem 0.65rem; top: 0.75rem; left: 0.75rem; }
            .news-content { padding: 1.2rem; }
            .news-title { font-size: 1.3rem; }
            .news-description { font-size: 0.85rem; }
            .news-datetime { font-size: 0.7rem; padding: 0.25rem 0.85rem; }
        }








                /* ========== TALENT APPLICATION PAGE STYLES ========== */
        .application-page-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1.5rem 4rem;
        }

        .application-page-container .page-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .application-page-container .page-header h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-navy);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .application-page-container .hero-banner {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
            border-radius: var(--radius-xl);
            padding: 2rem;
            margin-bottom: 2rem;
            color: white;
            text-align: center;
        }

        .application-page-container .hero-banner i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .application-page-container .hero-banner h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .info-card {
            background: var(--white);
            padding: 1.25rem;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent-gold-light);
        }

        .info-card i {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 0.75rem;
        }

        .info-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 0.25rem;
        }

        .info-card p {
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        .form-premium {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
        }

        .form-section {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .form-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .form-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-section-title i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
            color: var(--gray-700);
            font-size: 0.85rem;
        }

        .form-group label .required {
            color: #e53e3e;
            margin-left: 2px;
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-md);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            background: var(--white);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(198, 164, 63, 0.1);
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 1rem 0;
            padding: 0.75rem;
            background: var(--gray-50);
            border-radius: var(--radius-md);
        }

        .checkbox-group input {
            width: 1.2rem;
            height: 1.2rem;
            cursor: pointer;
            accent-color: var(--accent-gold);
        }

        .checkbox-group label {
            margin-bottom: 0;
            cursor: pointer;
            font-weight: 500;
        }

        .help-text {
            font-size: 0.7rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }

        .btn-submit {
            background: var(--primary-navy);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            width: 100%;
            justify-content: center;
        }

        .btn-submit:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            color: #2e7d32;
            padding: 1.25rem 1.5rem;
            border-radius: var(--radius-lg);
            margin-top: 1.5rem;
            align-items: center;
            gap: 1rem;
            border-left: 4px solid #2e7d32;
        }

        .success-message i {
            font-size: 1.8rem;
        }

        .success-message.show {
            display: flex;
        }

        .footer-note {
            text-align: center;
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
        }

        .footer-note p {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        @media (max-width: 768px) {
            .application-page-container {
                padding: 1rem 1rem 2rem;
            }
            .form-premium {
                padding: 1.5rem;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .info-cards {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .application-page-container .page-header h1 {
                font-size: 2rem;
            }
            .application-page-container .hero-banner {
                padding: 1.5rem;
            }
            .application-page-container .hero-banner h2 {
                font-size: 1.4rem;
            }
        }








/* ========== TALENT DIRECTORY PAGE STYLES ========== */
.directory-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.directory-page-container .page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.directory-page-container .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.directory-page-container .header-underline-center {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0.75rem auto 0;
    border-radius: 4px;
}

.directory-page-container .page-subtitle {
    color: var(--gray-600);
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
}

.filters {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    border: 1px solid var(--gray-200);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-label i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 1.5px solid var(--gray-300);
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.talent-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

.talent-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--accent-gold-light);
}

.talent-card-inner {
    padding: 1.75rem;
}

.talent-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold-light);
    color: var(--primary-navy);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.talent-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.talent-field {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary-blue);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.talent-location {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.talent-location i {
    color: var(--accent-gold);
}

.talent-bio {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.talent-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.skill-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

.looking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 0.3rem 0.9rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 580px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-elevated);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
}

.modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-navy);
    font-size: 1.8rem;
}

.close-modal {
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.75rem;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-label {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.85rem;
}

.detail-label i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 0.5rem;
}

.contact-note {
    background: var(--accent-gold-light);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
}

.directory-footer {
    background: var(--primary-navy);
    color: var(--gray-300);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.directory-footer i {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .directory-page-container {
        padding: 1rem;
    }
    .directory-page-container .page-header h1 {
        font-size: 2rem;
    }
    .filters {
        grid-template-columns: 1fr;
    }
    .talent-grid {
        grid-template-columns: 1fr;
    }
    .stats-banner {
        flex-direction: column;
    }
}


/* ========== KEY FIGURES PAGE STYLES ========== */
.key-figures-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem;
}

.key-figures-container .hero-premium {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-deep) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.key-figures-container .hero-premium h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.key-figures-container .hero-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.key-figures-container .section-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
    color: var(--primary-navy);
}

.figures-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.figure-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    cursor: pointer;
}

.figure-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--accent-gold-light);
}

.figure-img-container {
    position: relative;
    padding: 1.75rem 1.75rem 1rem;
    background: linear-gradient(145deg, var(--gray-100) 0%, var(--white) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}

.figure-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.figure-card:hover .figure-img {
    transform: scale(1.03);
}

.figure-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 700;
}

.figure-info {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
}

.figure-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.figure-role {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.figure-bio-short {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.figure-social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.key-figures-footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Modal Styles */
.key-figures-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.5rem;
}

.key-figures-modal.active {
    display: flex;
}

.modal-card {
    background: var(--white);
    max-width: 550px;
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-deep));
    padding: 1.5rem;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-right: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
}

.modal-body-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.modal-detail-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.modal-detail-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.modal-contact-buttons {
    display: flex;
    gap: 0.75rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.modal-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.8rem;
}

.modal-btn-gold {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.full-bio {
    line-height: 1.6;
    color: var(--gray-700);
    font-size: 0.9rem;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .key-figures-container {
        padding: 1rem;
    }
    .figures-premium-grid {
        grid-template-columns: 1fr;
    }
    .key-figures-container .hero-premium h1 {
        font-size: 1.8rem;
    }
}





/* ========== INITIATIVES PAGE STYLES ========== */
.initiatives-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.initiatives-page-container .page-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.initiatives-page-container .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.initiatives-page-container .header-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin-top: 0.5rem;
    border-radius: 4px;
}

.initiatives-page-container .page-header p {
    color: var(--gray-600);
    margin-top: 1rem;
    font-size: 1rem;
}

.initiatives-scroll-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
}

.initiatives-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.initiatives-scroll-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.initiatives-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
    padding-bottom: 1rem;
}

.initiative-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.initiative-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--accent-gold-light);
}

.initiative-image-wrapper {
    overflow: hidden;
    position: relative;
}

.initiative-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.initiative-card:hover .initiative-image {
    transform: scale(1.02);
}

.initiative-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.initiative-content {
    padding: 1.5rem;
}

.initiative-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.initiative-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.initiative-footer {
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.initiative-read-more {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.initiative-read-more:hover {
    color: var(--accent-gold);
}

.initiative-read-more i {
    transition: transform 0.2s;
}

.initiative-card:hover .initiative-read-more i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .initiatives-page-container {
        padding: 1rem;
    }
    .initiatives-page-container .page-header h1 {
        font-size: 2rem;
    }
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .initiative-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.65rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    .initiative-content {
        padding: 1.2rem;
    }
    .initiative-title {
        font-size: 1.3rem;
    }
    .initiative-description {
        font-size: 0.85rem;
    }
}









/* ========== CONSULAR UPDATES PAGE STYLES ========== */
.consular-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.consular-page-container .page-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.consular-page-container .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.consular-page-container .header-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin-top: 0.5rem;
    border-radius: 4px;
}

.consular-page-container .page-header p {
    color: var(--gray-600);
    margin-top: 1rem;
    font-size: 1rem;
}

.consular-scroll-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
}

.consular-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.consular-scroll-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.consular-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.consular-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.consular-list-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.consular-list-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold-light);
}

.consular-list-image-wrapper {
    width: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.consular-list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    transition: transform 0.3s ease;
}

.consular-list-item:hover .consular-list-image {
    transform: scale(1.03);
}

.consular-list-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.consular-list-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.consular-list-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.consular-list-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.consular-list-datetime {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold-light);
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.consular-list-footer {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.consular-read-more {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.consular-read-more:hover {
    color: var(--accent-gold);
}

.consular-read-more i {
    transition: transform 0.2s;
}

.consular-read-more:hover i {
    transform: translateX(4px);
}

/* ========== EVENTS PAGE STYLES ========== */
.events-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.events-page-container .page-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.events-page-container .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.events-page-container .header-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin-top: 0.5rem;
    border-radius: 4px;
}

.events-page-container .page-header p {
    color: var(--gray-600);
    margin-top: 1rem;
    font-size: 1rem;
}

.events-scroll-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
}

.events-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.events-scroll-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.events-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
    padding-bottom: 1rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--accent-gold-light);
}

.event-image-wrapper {
    overflow: hidden;
    position: relative;
}

.event-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image {
    transform: scale(1.02);
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.event-date-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-navy);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    z-index: 2;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.event-location {
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-location i {
    color: var(--accent-gold);
}

.event-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-register {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.event-register:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .consular-list-image-wrapper {
        width: 100%;
    }
    .consular-list-item {
        flex-direction: column;
    }
    .consular-page-container .page-header h1,
    .events-page-container .page-header h1 {
        font-size: 2rem;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
}








.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    margin-right: 12px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37; /* gold accent */
}


/* ========== FIX ALL PAGES TO BE SCROLLABLE ========== */

/* Main panel and page containers */
.main-panel {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Each page container */
.page-transition {
    min-height: 100%;
    height: auto;
}

/* News Page */
.news-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

.feed-scroll-container {
    overflow-y: visible;
    max-height: none;
}

/* Announcements Page */
.announcements-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

.grid-scroll-container {
    overflow-y: visible;
    max-height: none;
}

/* Initiatives Page */
.initiatives-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

.initiatives-scroll-container {
    overflow-y: visible;
    max-height: none;
}

/* Consular Page */
.consular-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

.consular-scroll-container {
    overflow-y: visible;
    max-height: none;
}

/* Events Page */
.events-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

.events-scroll-container {
    overflow-y: visible;
    max-height: none;
}

/* Talent Directory Page */
.directory-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

/* Key Figures Page */
.key-figures-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

/* AI Page */
.ai-page-container {
    height: auto;
    min-height: 100%;
    padding-bottom: 2rem;
}

/* Remove inner scrollbars - let main panel handle scrolling */
.feed-scroll-container::-webkit-scrollbar,
.grid-scroll-container::-webkit-scrollbar,
.initiatives-scroll-container::-webkit-scrollbar,
.consular-scroll-container::-webkit-scrollbar,
.events-scroll-container::-webkit-scrollbar {
    display: none;
}

























/* ========== AI ASSISTANT PAGE STYLES (Matches Events Page) ========== */
/*.ai-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.ai-page-container .page-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.ai-page-container .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.ai-page-container .header-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin-top: 0.5rem;
    border-radius: 4px;
}

.ai-page-container .page-header p {
    color: var(--gray-600);
    margin-top: 1rem;
    font-size: 1rem;
}

.ai-chat-scroll-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
}

.ai-chat-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-scroll-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.ai-chat-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.ai-chat-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.ai-chat-box {
    height: 400px;
    overflow-y: auto;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    scrollbar-width: thin;
}

.ai-chat-box::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-box::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.ai-chat-box::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.user-message {
    text-align: right;
    margin-bottom: 1rem;
}

.user-message .message-bubble {
    background: var(--primary-navy);
    color: white;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    border-bottom-right-radius: 6px;
    max-width: 85%;
    font-size: 0.9rem;
    text-align: left;
}

.assistant-message {
    text-align: left;
    margin-bottom: 1rem;
}

.assistant-message .message-bubble {
    background: var(--white);
    color: var(--gray-800);
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    border-bottom-left-radius: 6px;
    max-width: 85%;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.ai-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.ai-form-control {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.ai-form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(198, 164, 63, 0.1);
}

.ai-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.ai-quick-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
}

.ai-quick-btn:hover {
    background: var(--accent-gold-light);
    color: var(--primary-navy);
}

.ai-badge {
    background: var(--accent-gold-light);
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-footer-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .ai-page-container {
        padding: 1rem;
    }
    .ai-page-container .page-header h1 {
        font-size: 2rem;
    }
    .ai-chat-wrapper {
        padding: 1rem;
    }
    .ai-chat-box {
        height: 350px;
    }
    .ai-input-group {
        flex-direction: column;
    }
    .ai-quick-actions {
        justify-content: center;
    }
}*/








/* ========== AI ASSISTANT PAGE STYLES (Compact & Fully Scrollable) ========== */
.ai-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.ai-page-container .page-header {
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.ai-page-container .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.ai-page-container .header-underline {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin-top: 0.35rem;
    border-radius: 4px;
}

.ai-page-container .page-header p {
    color: var(--gray-600);
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.ai-chat-scroll-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    min-height: 0;
}

.ai-chat-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-scroll-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.ai-chat-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.ai-chat-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.ai-chat-box {
    height: 320px;
    overflow-y: auto;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    scrollbar-width: thin;
}

.ai-chat-box::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-box::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.ai-chat-box::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.user-message {
    text-align: right;
    margin-bottom: 0.75rem;
}

.user-message .message-bubble {
    background: var(--primary-navy);
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border-bottom-right-radius: 5px;
    max-width: 85%;
    font-size: 0.85rem;
    text-align: left;
}

.assistant-message {
    text-align: left;
    margin-bottom: 0.75rem;
}

.assistant-message .message-bubble {
    background: var(--white);
    color: var(--gray-800);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border-bottom-left-radius: 5px;
    max-width: 85%;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.ai-input-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1rem;
}

.ai-form-control {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
    background: var(--white);
}

.ai-form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(198, 164, 63, 0.1);
}

.ai-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ai-quick-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.4rem 0.85rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
}

.ai-quick-btn:hover {
    background: var(--accent-gold-light);
    color: var(--primary-navy);
}

.ai-badge {
    background: var(--accent-gold-light);
    color: var(--primary-navy);
    padding: 0.4rem 0.85rem;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ai-footer-note {
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .ai-page-container {
        padding: 1rem;
    }
    .ai-page-container .page-header h1 {
        font-size: 1.5rem;
    }
    .ai-chat-wrapper {
        padding: 0.875rem;
    }
    .ai-chat-box {
        height: 280px;
    }
    .ai-input-group {
        flex-direction: column;
    }
    .ai-quick-actions {
        justify-content: center;
    }
}











/* Classic Grid Styles */
.classic-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}
.classic-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.8rem;
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    overflow: hidden;
}
.classic-item:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.classic-img {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-right: 1px solid #e2e8f0;
}
.classic-img img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    border-radius: 0.75rem;
}
.classic-text {
    padding: 1.5rem 1.5rem 1.5rem 0;
}
.classic-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0a2b44;
}
.classic-text p {
    color: #5a6874;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.signature-block {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    font-weight: 500;
    color: #0a2b44;
}
.section-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0a2b44;
}
.section-sub {
    text-align: center;
    color: #5a6874;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (max-width: 768px) {
    .classic-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .classic-img {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 1rem;
    }
    .classic-text {
        padding: 1.25rem;
    }
    .classic-text h2 {
        font-size: 1.4rem;
    }
}






/* ========== SIDEBAR SCROLL FIX ========== */
.app-layout {
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    flex-shrink: 0;
}

.nav-menu {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    padding-bottom: 30px;
}

.nav-menu::-webkit-scrollbar {
    width: 4px;
}

.nav-menu::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

/* Ensure collapsed sidebar also scrolls */
.sidebar.collapsed .nav-menu {
    overflow-y: auto;
}








/* ========== FACEBOOK-STYLE HERO ========== */
/* ========== FACEBOOK-STYLE HERO ========== */

/* Hero Container */
.hero-premium {
    background: transparent;
    padding: 0;
    position: relative;
    isolation: isolate;
}

/* Cover Photo - Full width, visible */
.hero-cover {
    width: 100%;
    /*height: 320px;*/
    height: 100%;
    overflow: hidden;
    position: relative;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Content Wrapper - Transparent background */
.hero-content-wrapper {
    background: transparent;
    padding: 0 0 1.5rem 0;
    position: relative;
}

/* Profile Section - Below cover with overlap */
.hero-profile-section {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 0px;  /* ← CHANGED HERE */
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    padding: 2rem 0 0.5rem 0;  /* ← CHANGED HERE - added padding-top */
}

/* Profile Picture */
.profile-picture-wrapper {
    flex-shrink: 0;
}

.profile-picture {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Hero Text - Dark blue font */
.hero-text-section {
    flex: 1;
    padding-bottom: 0.5rem;
}

.hero-text-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    color: var(--primary-navy);
}

.hero-text-section .hero-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background: #d4b04c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    background: var(--primary-navy);
    color: white;
}

/* Value Cards Container - Below Hero */
.value-cards-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.value-cards-container .value-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-cards-container .value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: default;
}

.value-cards-container .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--accent-gold-light);
}

.value-cards-container .value-card .value-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.value-cards-container .value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.value-cards-container .value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cover {
        height: 180px;
    }
    
    .hero-profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0px;
        gap: 1rem;
        padding: 2rem 0 0.5rem 0;
    }
    
    .profile-picture {
        width: 100px;
        height: 100px;
    }
    
    .hero-text-section h1 {
        font-size: 2rem;
    }
    
    .hero-text-section .hero-sub {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .value-cards-container .value-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cover {
        height: 140px;
    }
    
    .profile-picture {
        width: 80px;
        height: 80px;
    }
    
    .hero-text-section h1 {
        font-size: 1.6rem;
    }
}