/*
 * Sydney Royal Easter Show 2026 - Staff Portal
 * Quayclean Australia
 * Theme Colors: #1300a6 (Primary Blue), #00d3c7 (Teal), White
 */

/* Gilroy Font */
@font-face {
    font-family: 'Gilroy';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/gilroy-bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/gilroy-light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/gilroy-regular.woff2') format('woff2');
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary: #1300a6;
    --primary-dark: #0e0080;
    --primary-light: #2a1ed4;
    --secondary: #00d3c7;
    --secondary-dark: #00b3a8;
    --secondary-light: #33ffe8;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(19, 0, 166, 0.95) 0%, rgba(0, 211, 199, 0.85) 100%);
    --shadow-sm: 0 2px 8px rgba(19, 0, 166, 0.08);
    --shadow-md: 0 4px 20px rgba(19, 0, 166, 0.12);
    --shadow-lg: 0 8px 40px rgba(19, 0, 166, 0.16);
    --shadow-xl: 0 20px 60px rgba(19, 0, 166, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilroy', sans-serif;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}
h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}
h4 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 600;
}
h5 {
    font-size: 1.2rem;
    font-weight: 500;
}
h6 {
    font-size: 1.1rem;
    font-weight: 500;
}

p {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

/* Sticky Pill Menu on Scroll */
.header-nav.sticky {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: auto;
    min-width: 600px;
    max-width: 90%;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(19, 0, 166, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10000;
}

/* Sticky Menu - Top Position (Default) */
.header-nav.sticky.sticky-top {
    top: 20px;
    bottom: auto;
    animation: slideDownPill 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky Menu - Bottom Position */
.header-nav.sticky.sticky-bottom {
    top: auto;
    bottom: 20px;
    animation: slideUpPill 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav.sticky .header-nav-inner {
    padding: 0 10px;
}

.header-nav.sticky .nav-link {
    padding: 14px 20px;
    font-size: 14px;
}

.header-nav.sticky .nav-link-bell {
    padding: 8px 14px !important;
    font-size: 13px;
}

.header-nav.sticky .announcement-text {
    display: none;
}

/* Dropdown adjustments for sticky mode - Top */
.header-nav.sticky.sticky-top .dropdown-menu {
    top: calc(100% + 12px);
    bottom: auto;
}

.header-nav.sticky.sticky-top .mega-menu {
    top: calc(100% + 12px);
    bottom: auto;
    border-radius: 16px;
}

/* Dropdown adjustments for sticky mode - Bottom */
.header-nav.sticky.sticky-bottom .dropdown-menu {
    top: auto;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(0);
}

.header-nav.sticky.sticky-bottom .dropdown-menu::before {
    top: auto;
    bottom: -6px;
    transform: translateX(-50%) rotate(225deg);
}

.header-nav.sticky.sticky-bottom .mega-menu {
    top: auto;
    bottom: calc(100% + 12px);
    border-radius: 16px;
}

.header-nav.sticky.sticky-bottom .nav-item:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

@keyframes slideDownPill {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUpPill {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 1023px) {
    .header-nav.sticky {
        display: none;
    }
}

/* Mobile Sticky Header */
.mobile-sticky-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(19, 0, 166, 0.15);
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-header.visible {
    transform: translateY(0);
}

.mobile-sticky-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-sticky-header .logo-quayclean img {
    height: 32px;
}

.mobile-sticky-header .menu-toggle {
    width: 38px;
    height: 38px;
}

@media (max-width: 1023px) {
    .mobile-sticky-header {
        display: block;
    }
}

/* Header Brand Section */
.header-brand {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(19, 0, 166, 0.06);
}

.header-brand-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 30px;
}

/* Quayclean Logo */
.logo-quayclean {
    flex-shrink: 0;
}

.logo-quayclean img {
    height: 52px;
    transition: var(--transition);
}

.logo-quayclean:hover img {
    transform: scale(1.02);
}

/* Event Title and Dates - Center */
.header-event {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.header-event-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    font-style: normal;
    color: var(--primary);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.header-event-dates {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 500;
    font-style: normal;
    color: var(--white);
    background: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    margin: 10px 0 0 0;
    letter-spacing: 0.5px;
}

/* Easter Show Logo */
.logo-easter-show {
    flex-shrink: 0;
}

.logo-easter-show img {
    height: 70px;
    transition: var(--transition);
}

.logo-easter-show:hover img {
    transform: scale(1.02);
}

/* Navigation Bar */
.header-nav {
    background: var(--primary);
    padding: 0;
    position: relative;
}

.header-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation List */
.nav-list {
    display: none;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 22px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--secondary);
    color: var(--white);
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

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

/* Announcement Bell Icon */
.nav-item-announcement {
    margin-left: 10px;
}

.nav-link-bell {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 25px;
    color: white !important;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.nav-link-bell:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71d2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white !important;
}

.nav-link-bell i {
    font-size: 18px;
    animation: bellRing 2s infinite;
    color: white;
}

.nav-link-bell:hover i {
    transform: none;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    25% { transform: rotate(0); }
}

.announcement-badge {
    background: white;
    color: #dc3545;
    font-size: 12px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.announcement-text {
    font-weight: 500;
}

/* Hide text on medium screens, show only icon and badge */
@media (max-width: 1100px) {
    .announcement-text {
        display: none;
    }

    .nav-link-bell {
        padding: 10px 14px !important;
    }
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(19, 0, 166, 0.12),
                0 5px 15px rgba(0, 0, 0, 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(19, 0, 166, 0.08);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(19, 0, 166, 0.08);
    border-top: 1px solid rgba(19, 0, 166, 0.08);
}

/* Bridge element for hover continuity */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Item */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--gray-700);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background: rgba(19, 0, 166, 0.05);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--primary);
    font-size: 18px;
    width: 22px;
    flex-shrink: 0;
}

.dropdown-item:hover i {
    color: var(--secondary);
}

/* Mega Menu Styling */
.mega-menu {
    min-width: 280px;
    padding: 10px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.mega-menu-item:hover {
    background: rgba(19, 0, 166, 0.05);
}

.mega-menu-icon {
    width: 42px;
    height: 42px;
    background: rgba(19, 0, 166, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.mega-menu-item:hover .mega-menu-icon {
    background: var(--primary);
    color: var(--white);
}

.mega-menu-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 3px;
    color: var(--gray-800);
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-menu-text h4 {
    color: var(--primary);
}

.mega-menu-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-style: normal;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: var(--primary-dark);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

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

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

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

/* Mobile Navigation - Modern Slide Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Nav Backdrop */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(19, 0, 166, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-nav-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.25s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Mobile Nav Content */
.mobile-nav-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav-section {
    padding: 20px 0 10px 0;
}

.mobile-nav-section:first-child {
    padding-top: 0;
}

.mobile-nav-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    padding-left: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: 12px;
    color: var(--gray-700);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mobile-nav-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(19, 0, 166, 0.25);
}

.mobile-nav-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(19, 0, 166, 0.25);
}

.mobile-nav-link i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.08) 0%, rgba(0, 211, 199, 0.08) 100%);
    color: var(--primary);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Mobile Announcement Link */
.mobile-nav-link-announcement {
    position: relative;
}

.mobile-nav-link-announcement i {
    animation: bellRing 2s infinite;
}

.mobile-announcement-badge {
    margin-left: auto;
    background: #dc3545;
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 20px 24px;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.mobile-nav-helpdesk {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-nav-helpdesk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 0, 166, 0.3);
}

.mobile-nav-helpdesk-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mobile-nav-helpdesk-text {
    flex: 1;
}

.mobile-nav-helpdesk-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.mobile-nav-helpdesk-number {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

/* Desktop Navigation - Show nav list */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-list {
        display: flex;
    }

    .header-event-title {
        font-size: 1.5rem;
    }

    .header-event-dates {
        font-size: 0.85rem;
        padding: 6px 18px;
    }
}

/* Tablet adjustments */
@media (max-width: 1023px) {
    .header-brand-inner {
        flex-wrap: wrap;
    }

    .header-event {
        order: 3;
        flex-basis: 100%;
        padding-top: 14px;
        border-top: 1px solid rgba(19, 0, 166, 0.06);
        margin-top: 14px;
    }

    .logo-quayclean img {
        height: 44px;
    }

    .logo-easter-show img {
        height: 56px;
    }

    .header-nav {
        display: none;
    }

    .header-event-title {
        font-size: 1.15rem;
    }

    .header-event-dates {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin-top: 8px;
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .header-brand {
        padding: 14px 0;
    }

    .header-brand-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .logo-quayclean img {
        height: 38px;
    }

    .logo-easter-show img {
        height: 48px;
    }

    .header-event-title {
        font-size: 1rem;
    }

    .header-event-dates {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/background.jpeg') center center / cover no-repeat;
    padding: 80px 20px;
    margin-top: 0;
}

@media (max-width: 1023px) {
    .hero {
        min-height: 60vh;
        padding: 60px 20px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.88) 0%, rgba(10, 0, 80, 0.92) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 211, 199, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 211, 199, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Home Hero */
.hero.hero-home {
    text-align: center;
    flex-direction: column;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Search Bar */
.hero-search {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-top: 40px;
    z-index: 2;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-search-bar:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-search-bar i {
    font-size: 20px;
    color: var(--secondary);
}

.hero-search-bar span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-search-bar .hero-search-hint {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero-search {
        margin-top: 30px;
        max-width: 100%;
    }

    .hero-search-bar {
        padding: 14px 20px;
    }

    .hero-search-bar .hero-search-hint {
        display: none;
    }
}

/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: calc(100vh - 120px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0) scale(1);
}

.search-modal-input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.search-modal-input-wrap i {
    font-size: 24px;
    color: var(--primary);
}

.search-modal-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-800);
    background: transparent;
}

.search-modal-input-wrap input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.search-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-modal-close span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.search-modal-close:hover {
    background: var(--gray-200);
}

.search-results {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 12px;
    padding: 0 8px;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: var(--gray-100);
}

.search-result-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result-icon i {
    font-size: 18px;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.search-result-item:hover .search-result-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.search-result-item:hover .search-result-icon i {
    color: var(--primary);
}

.search-result-text {
    flex: 1;
    min-width: 0;
}

.search-result-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 2px 0;
}

.search-result-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-arrow {
    font-size: 16px;
    color: var(--gray-300);
    transition: all 0.2s ease;
}

.search-result-item:hover .search-result-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
}

.search-no-results i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.search-no-results p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .search-modal {
        padding: 20px 16px;
        align-items: flex-start;
    }

    .search-modal-content {
        max-height: calc(100vh - 60px);
        border-radius: 16px;
    }

    .search-modal-input-wrap {
        padding: 16px 18px;
    }

    .search-modal-input-wrap input {
        font-size: 16px;
    }

    .search-results {
        max-height: 60vh;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 15px;
}

.hero-title {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.75rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 211, 199, 0.4);
}

.btn-hero-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 211, 199, 0.5);
}

.btn-hero-primary i {
    font-size: 18px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    font-size: 16px;
    color: var(--secondary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

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

.hero-stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    display: none;
}

.hero-scroll i {
    font-size: 18px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 50px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 40px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-scroll {
        display: none;
    }
}

/* Hero Quick Links Grid - Enhanced */
.hero-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .hero-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-links {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

.hero-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 211, 199, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(0, 211, 199, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 211, 199, 0.3);
}

.hero-link:hover::before {
    opacity: 1;
}

.hero-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 211, 199, 0.35);
    position: relative;
    z-index: 1;
}

.hero-link:hover .hero-link-icon {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 12px 28px rgba(0, 211, 199, 0.45);
}

.hero-link span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

/* Scroll Indicator - Elegant Redesign */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator span {
    display: none;
}

@media (min-width: 768px) {
    .scroll-indicator span {
        display: block;
    }
}

.scroll-indicator i {
    font-size: 18px;
    animation: scrollPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.scroll-indicator::before {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.1);
    }
}

/* ==================== SECTIONS (Premium) ==================== */
.section {
    padding: 100px 20px;
    position: relative;
}

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

.section-gray {
    background: linear-gradient(180deg, var(--gray-100) 0%, rgba(248, 249, 250, 0.6) 100%);
    position: relative;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 0, 166, 0.08), transparent);
}

/* Portal Section - Quick Links Grid */
.section-portal {
    background: var(--white);
    padding: 60px 20px 80px;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .portal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (min-width: 992px) {
    .portal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.portal-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    cursor: pointer;
    min-height: auto;
}

.portal-card:hover {
    border-color: var(--primary);
    background: rgba(19, 0, 166, 0.02);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(19, 0, 166, 0.1);
}

.portal-card-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.portal-card:hover .portal-card-icon {
    background: var(--secondary);
}

.portal-card-icon i {
    font-size: 20px;
    color: var(--white);
}

.portal-card:hover .portal-card-icon i {
    color: var(--primary);
}

.portal-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
    letter-spacing: 0;
}

.portal-card:hover .portal-card-title {
    color: var(--primary);
}

/* Gallery Carousel Section */
.section-gallery-carousel {
    background: var(--gray-100);
    padding: 80px 20px;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: carouselScroll 30s linear infinite;
    width: max-content;
}

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

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

.carousel-slide {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(19, 0, 166, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.carousel-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(19, 0, 166, 0.18);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carousel-slide:hover img {
    transform: scale(1.08);
}

.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.7) 0%, rgba(0, 211, 199, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide:hover .carousel-slide-overlay {
    opacity: 1;
}

.carousel-slide-overlay i {
    font-size: 32px;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .carousel-slide-overlay i {
    transform: scale(1);
}

@media (min-width: 768px) {
    .carousel-slide {
        width: 320px;
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        width: 360px;
        height: 240px;
    }
}

.section-dark {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 211, 199, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 12px auto 0;
    line-height: 1.7;
}

.section-dark .section-header h2,
.section-dark .section-header p {
    color: var(--white);
}

.section-dark .section-header h2::after {
    background: var(--gradient-secondary);
}

.section-dark .section-header p {
    opacity: 0.85;
}

/* ==================== INFO CARDS (Premium) ==================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(19, 0, 166, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 0, 166, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.02) 0%, rgba(0, 211, 199, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.info-card:hover {
    box-shadow: 0 20px 50px rgba(19, 0, 166, 0.12), 0 8px 20px rgba(0, 211, 199, 0.08);
    transform: translateY(-8px);
    border-color: rgba(0, 211, 199, 0.3);
}

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

.info-card:hover::after {
    opacity: 1;
}

.info-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(19, 0, 166, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover .info-card-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px rgba(19, 0, 166, 0.35);
}

.info-card-header h3 {
    font-size: 1.4rem;
    color: var(--gray-800);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.info-card-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(233, 236, 239, 0.7) 100%);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card-list a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(19, 0, 166, 0.25);
    border-color: transparent;
}

.info-card-list a:hover::before {
    transform: scaleY(1);
    background: var(--white);
}

.info-card-list a i {
    width: 22px;
    color: var(--secondary);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.info-card-list a:hover i {
    color: var(--white);
    transform: scale(1.15);
}

/* ==================== GALLERY (Premium) ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.85) 0%, rgba(0, 211, 199, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--primary);
    font-size: 24px;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(19, 0, 166, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Gallery caption overlay */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    padding: 25px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-simple {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex-shrink: 0;
    line-height: 0;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    object-fit: contain;
}

.footer-helpdesk {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-helpdesk span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-helpdesk a {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.footer-helpdesk a:hover {
    color: var(--white);
}

.footer-copyright {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-simple {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .footer-logo {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-helpdesk {
        order: 2;
    }

    .footer-copyright {
        order: 3;
        width: 100%;
    }
}

.footer-copyright p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ==================== PAGE HEADER (Premium) ==================== */
.page-header {
    position: relative;
    background: url('../images/background.jpeg') center center / cover no-repeat;
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

/* Compact Page Header (smaller, no description/search) */
.page-header.page-header-compact {
    padding: 50px 20px 40px;
    min-height: auto;
}

.page-header.page-header-compact h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 15px;
}

.page-header.page-header-compact .breadcrumb {
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.92) 0%, rgba(10, 0, 80, 0.95) 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 211, 199, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 211, 199, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease;
}

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

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 15px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.breadcrumb span:last-child {
    color: var(--secondary);
    font-weight: 600;
}

/* Page Header Search Bar (Smaller version) */
.page-header-search {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-top: 25px;
    z-index: 2;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.page-header-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-header-search-bar:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-header-search-bar i {
    font-size: 18px;
    color: var(--secondary);
}

.page-header-search-bar span {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.page-header-search-bar .search-hint {
    margin-left: auto;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .page-header-search {
        margin-top: 20px;
        max-width: 100%;
    }

    .page-header-search-bar {
        padding: 10px 16px;
    }

    .page-header-search-bar .search-hint {
        display: none;
    }
}

/* ==================== FORMS (Modern Premium) ==================== */
.form-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: 0 25px 80px rgba(19, 0, 166, 0.1), 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(19, 0, 166, 0.05);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-600);
    margin: 0;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.form-group label span {
    color: var(--danger);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:hover {
    border-color: var(--gray-300);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(19, 0, 166, 0.08);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
    cursor: pointer;
}

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-check:hover {
    border-color: var(--gray-200);
    background: var(--white);
}

.form-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-check label {
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

/* Form field icon */
.form-icon-group {
    position: relative;
}

.form-icon-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 18px;
    transition: var(--transition);
    pointer-events: none;
}

.form-icon-group .form-control {
    padding-left: 52px;
}

.form-icon-group .form-control:focus + i,
.form-icon-group:focus-within i {
    color: var(--primary);
}

/* ==================== BUTTONS (Premium) ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(19, 0, 166, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(19, 0, 166, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 211, 199, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 211, 199, 0.45);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* ==================== MESSAGES (Premium) ==================== */
.success-message {
    background: linear-gradient(135deg, var(--success) 0%, #34d399 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    animation: messageSlideIn 0.4s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message i {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.error-message {
    background: linear-gradient(135deg, var(--danger) 0%, #f87171 100%);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: messageShake 0.5s ease;
}

@keyframes messageShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message i {
    font-size: 20px;
}

/* ==================== TRAINING CARDS (Premium) ==================== */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.training-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(19, 0, 166, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 0, 166, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.training-card:hover {
    box-shadow: 0 20px 50px rgba(19, 0, 166, 0.12), 0 8px 20px rgba(0, 211, 199, 0.08);
    transform: translateY(-10px);
}

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

.training-video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.training-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 211, 199, 0.2) 0%, transparent 70%);
}

.training-video i {
    font-size: 56px;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    opacity: 0.9;
}

.training-card:hover .training-video i {
    transform: scale(1.15);
    opacity: 1;
}

.training-play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.training-play-btn i {
    font-size: 28px;
    color: var(--primary);
    margin-left: 4px;
}

.training-card:hover .training-play-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.training-content {
    padding: 30px;
}

.training-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.08) 0%, rgba(0, 211, 199, 0.08) 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gray-800);
    font-weight: 700;
    line-height: 1.4;
}

.training-content p {
    color: var(--gray-600);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

.training-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-500);
}

.training-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.training-meta i {
    color: var(--secondary);
}

/* ==================== CONTACT CARDS (Premium) ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(19, 0, 166, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 0, 166, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 211, 199, 0.08) 0%, transparent 70%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.contact-card:hover {
    box-shadow: 0 20px 50px rgba(19, 0, 166, 0.12), 0 8px 20px rgba(0, 211, 199, 0.08);
    transform: translateY(-10px);
    border-color: rgba(0, 211, 199, 0.2);
}

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

.contact-card:hover::after {
    transform: scale(1.5);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(19, 0, 166, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(19, 0, 166, 0.35);
}

.contact-card h3 {
    font-size: 1.45rem;
    margin-bottom: 6px;
    color: var(--gray-800);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-card .position {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contact-card .contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.contact-card .phone,
.contact-card .email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card .phone:hover,
.contact-card .email:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-card .phone i,
.contact-card .email i {
    color: var(--secondary);
    font-size: 16px;
    transition: var(--transition);
}

.contact-card .phone:hover i,
.contact-card .email:hover i {
    color: var(--white);
}

/* ==================== MAP (Premium) ==================== */
.map-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(19, 0, 166, 0.1);
    border: 1px solid rgba(19, 0, 166, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.directions-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 45px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(19, 0, 166, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 0, 166, 0.05);
}

.directions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.directions-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.directions-list li:hover {
    background: linear-gradient(135deg, rgba(19, 0, 166, 0.03) 0%, rgba(0, 211, 199, 0.03) 100%);
    transform: translateX(5px);
}

.step-number {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(19, 0, 166, 0.25);
}

/* ==================== LIGHTBOX (Premium) ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, 0.97);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-full);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lightbox-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-in"] {
    opacity: 0;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==================== LIGHTBOX GALLERY ==================== */
.lightbox-gallery {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-gallery.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 70vh;
}

.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 60vh;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    max-width: 85vw;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    animation: lightboxImageIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxImageIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    padding: 0 10px;
}

.lightbox-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.lightbox-counter {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    max-width: 90vw;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 3px;
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--secondary);
    transform: scale(1.05);
}

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

.lightbox-view-all {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(19, 0, 166, 0.4);
}

.lightbox-view-all:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 35px rgba(19, 0, 166, 0.5);
}

.lightbox-view-all i {
    font-size: 16px;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 50vh;
    }

    .lightbox-thumbnails {
        margin-top: 15px;
        padding: 10px;
    }

    .lightbox-thumb {
        width: 55px;
        height: 40px;
    }

    .lightbox-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .lightbox-view-all {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ==================== GALLERY PAGE ==================== */
.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .gallery-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .gallery-grid-page {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.gallery-item-page {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(19, 0, 166, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-page:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(19, 0, 166, 0.2);
}

.gallery-item-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-page:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(19, 0, 166, 0.9) 0%,
        rgba(19, 0, 166, 0.4) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item-page:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-page:hover .gallery-item-overlay i {
    transform: translateY(0);
}

.gallery-item-overlay span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.05s;
}

.gallery-item-page:hover .gallery-item-overlay span {
    transform: translateY(0);
}

/* Lightbox Controls */
.lightbox-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.lightbox-control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-control-btn.playing {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.lightbox-control-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .lightbox-controls {
        bottom: 15px;
    }

    .lightbox-control-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ==================== PRINT ==================== */
@media print {
    .header, .footer, .btn, .preloader { display: none; }
    .hero { min-height: auto; padding: 20px; }
    body { background: white; }
}
