/* ============================================
   PROFESSIONAL DESIGN SYSTEM
   ============================================ */

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Professional */
    --primary-50: #e8f4f8;
    --primary-100: #c5e3ed;
    --primary-200: #9dd0e0;
    --primary-300: #6fb8d0;
    --primary-400: #4aa5c4;
    --primary-500: #2c5f7c;
    --primary-600: #255068;
    --primary-700: #1e4054;
    --primary-800: #173040;
    --primary-900: #10202c;
    
    --secondary-50: #e8f4f7;
    --secondary-100: #c5e3ea;
    --secondary-200: #9dd0dc;
    --secondary-300: #6fb8ce;
    --secondary-400: #4a90a4;
    --secondary-500: #3a7285;
    --secondary-600: #2d5868;
    --secondary-700: #20404b;
    
    --accent-50: #fef5e7;
    --accent-100: #fde8c4;
    --accent-200: #fbd89d;
    --accent-300: #f9c876;
    --accent-400: #f7b84f;
    --accent-500: #f39c12;
    --accent-600: #d68910;
    --accent-700: #b9770e;
    
    --success: #27ae60;
    --error: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    
    /* Neutral Colors */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Semantic Colors - Modern & Vibrant */
    --primary-color: var(--primary-500);
    --secondary-color: var(--secondary-400);
    --accent-color: var(--accent-500);
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --border-color: #e2e8f0;
    
    /* Modern Gradients - Teal/Blue-Green Theme */
    --gradient-primary: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    --gradient-secondary: linear-gradient(135deg, #00acc1 0%, #00897b 100%);
    --gradient-accent: linear-gradient(135deg, #26a69a 0%, #00acc1 100%);
    --gradient-blue: linear-gradient(135deg, #00acc1 0%, #00897b 100%);
    --gradient-green: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    --gradient-teal: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    --gradient-warm: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --gradient-cool: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    
    /* Typography Scale */
    --font-family-primary: 'Vazirmatn', 'Vazir', 'Tahoma', 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-display: 'Vazirmatn', 'Vazir', 'Tahoma', 'Arial', sans-serif;
    
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.25rem;     /* 20px */
    --font-size-2xl: 1.5rem;     /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Spacing Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;  /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* Shadows - Professional Elevation System */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Legacy Support */
    --shadow: var(--shadow-md);
    --shadow-hover: var(--shadow-xl);
    --light-bg: var(--bg-secondary);
    --white: var(--bg-primary);
    --text-color: var(--text-primary);
    --gold-color: #d4af37;
    --rose-color: #ff69b4;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-primary);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    background-attachment: fixed;
    direction: rtl;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    min-height: 100vh;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--space-4);
    line-height: var(--line-height-relaxed);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Container System */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-8);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-10);
    }
}

/* ============================================
   HEADER - Professional Design
   ============================================ */
.header {
    background: linear-gradient(135deg, #00897b 0%, #00acc1 50%, #00897b 100%);
    color: var(--bg-primary);
    box-shadow: 0 4px 30px rgba(0, 137, 123, 0.3);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: headerGlow 8s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    font-size: 18px;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.logo-top {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    line-height: var(--line-height-tight);
    color: var(--bg-primary);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: var(--radius-full);
}

.logo p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    align-items: center;
}

.nav-link {
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--bg-primary);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: var(--font-weight-semibold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION - Two Column Layout
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-8) 0;
    background: 
        linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%),
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    margin-bottom: var(--space-12);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-6);
    align-items: stretch;
    min-height: 600px;
}

/* Right Column - Image Slider */
.hero-slider-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--bg-primary);
    border: none;
    height: 100%;
    min-height: 600px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    padding: var(--space-8) var(--space-6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.slide-text h2 {
    color: var(--bg-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    text-align: right;
}

/* Star-shaped Navigation Buttons */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    z-index: 10;
    pointer-events: none;
}

.star-btn {
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.95), rgba(0, 172, 193, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-primary);
    font-size: var(--font-size-xl);
    width: 55px;
    height: 55px;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    pointer-events: all;
    box-shadow: 
        0 8px 20px rgba(0, 137, 123, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-btn i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.star-btn:hover {
    background: linear-gradient(135deg, rgba(0, 137, 123, 1), rgba(0, 172, 193, 1));
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 12px 30px rgba(0, 137, 123, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.star-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid var(--bg-primary);
}

.dot.active {
    background-color: var(--bg-primary);
    width: 30px;
    border-radius: var(--radius-full);
}

/* Left Column - Info Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    height: 100%;
    justify-content: space-between;
}

.hero-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Blue Campaign Card */
.hero-card-blue {
    background: linear-gradient(180deg, #1976d2 0%, #0288d1 50%, #00acc1 100%);
    padding: var(--space-10) var(--space-8);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 12px 35px rgba(25, 118, 210, 0.3),
        0 4px 12px rgba(2, 136, 209, 0.25);
    border-radius: var(--radius-2xl);
}

.card-ornament-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.card-ornament-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.15) 8px,
        rgba(255, 255, 255, 0.15) 16px
    );
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.card-content {
    color: var(--text-primary);
    text-align: center;
    z-index: 1;
    position: relative;
}

.card-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-snug);
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

.card-content p {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* Golden Campaign Card */
.hero-card-golden {
    background: linear-gradient(180deg, #fff9c4 0%, #fff59d 30%, #ffe082 70%, #ffcc80 100%);
    padding: var(--space-10) var(--space-8);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 193, 7, 0.25);
    box-shadow: 
        0 15px 40px rgba(255, 193, 7, 0.2),
        0 5px 15px rgba(255, 224, 130, 0.25);
    border-radius: var(--radius-2xl);
}

.card-ornament-top-golden {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.25) 0%, transparent 100%);
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.card-ornament-top-golden::before {
    content: '✦ ✦ ✦ ✦';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffa000;
    font-size: var(--font-size-base);
    letter-spacing: var(--space-6);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 2px 4px rgba(255, 160, 0, 0.3);
}

.card-content-golden {
    margin-top: var(--space-5);
    z-index: 1;
    position: relative;
}

.golden-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-black);
    color: #ff8f00;
    text-align: center;
    margin-bottom: var(--space-6);
    text-shadow: 
        2px 2px 8px rgba(255, 143, 0, 0.4),
        0 0 15px rgba(255, 143, 0, 0.2);
    letter-spacing: 0.02em;
    line-height: var(--line-height-tight);
}

.golden-text {
    color: var(--text-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    text-align: center;
    font-weight: var(--font-weight-normal);
}

.golden-text p {
    margin-bottom: var(--space-4);
    color: var(--gray-800);
    line-height: var(--line-height-loose);
}

.school-name {
    font-weight: var(--font-weight-bold);
    color: var(--primary-700);
    margin-top: var(--space-4) !important;
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 193, 7, 0.15);
    border-radius: var(--radius-md);
    display: inline-block;
}

.date-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: var(--space-3) !important;
    font-weight: var(--font-weight-medium);
}

.card-ornament-bottom-golden {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: linear-gradient(0deg, rgba(255, 193, 7, 0.2) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-slider-wrapper {
        min-height: 400px;
        order: 2;
    }
    
    .hero-cards {
        flex-direction: row;
        order: 1;
        margin-bottom: var(--space-6);
    }
    
    .hero-card-blue,
    .hero-card-golden {
        flex: 1;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-cards {
        flex-direction: column;
    }
    
    .slide-text h2 {
        font-size: var(--font-size-lg);
    }
    
    .golden-title {
        font-size: var(--font-size-2xl);
    }
}

/* ============================================
   BUTTONS - Professional Design System
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    font-family: inherit;
    line-height: var(--line-height-tight);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    color: var(--bg-primary);
    box-shadow: 
        0 4px 15px rgba(0, 137, 123, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00acc1 0%, #00897b 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 137, 123, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   SECTION STYLES - Professional
   ============================================ */
section {
    padding: var(--space-20) 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: var(--space-12) 0;
    }
}

.section-title {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-700);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    position: relative;
    padding-bottom: var(--space-4);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
}

.section-title i {
    color: var(--accent-500);
    font-size: 0.9em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00897b, #00acc1, #00897b, #00acc1, #00897b);
    border-radius: var(--radius-full);
    background-size: 300% 100%;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 137, 123, 0.4);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.01em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
}

/* Statistics Section */
.statistics {
    background: 
        linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%),
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 95, 124, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: var(--space-10) var(--space-6);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--secondary-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-5);
    display: inline-block;
    transition: all var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(0, 137, 123, 0.3));
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(0, 137, 123, 0.4));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-2);
    line-height: var(--line-height-tight);
    background: linear-gradient(135deg, #00897b 0%, #00acc1 50%, #00897b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-label {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}


/* News Section */
.special-news {
    background: 
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%),
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.05), rgba(0, 172, 193, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.news-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 137, 123, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 137, 123, 0.3);
}

.news-card:hover::before,
.news-card:hover::after {
    opacity: 1;
}

.news-card > * {
    position: relative;
    z-index: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    gap: var(--space-2);
    flex-wrap: wrap;
}

.news-date {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-2);
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
}

.news-card:hover .news-date {
    background: rgba(102, 126, 234, 0.15);
    color: var(--primary-600);
}

.news-category {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: var(--bg-primary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 2px 8px rgba(250, 112, 154, 0.3);
    transition: all var(--transition-base);
}

.news-card:hover .news-category {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(250, 112, 154, 0.4);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.news-card:hover .news-image img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover .news-image::after {
    opacity: 1;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    box-shadow: 
        0 4px 15px rgba(0, 137, 123, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.news-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #00695c, #00838f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
    line-height: var(--line-height-snug);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all var(--transition-base);
}

.news-card:hover .news-content h3 {
    background: linear-gradient(135deg, #00897b, #00acc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.read-more {
    color: #00acc1;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.1), rgba(0, 172, 193, 0.1));
    margin-top: auto;
}

.read-more:hover {
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.2), rgba(0, 172, 193, 0.2));
    transform: translateX(-5px);
    color: #00897b;
}

.read-more:hover {
    color: var(--accent-color);
    gap: 10px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(-5px);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-12);
    padding: var(--space-6);
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.1), rgba(0, 172, 193, 0.1));
    border: 2px solid rgba(0, 137, 123, 0.2);
    border-radius: var(--radius-lg);
    color: #00acc1;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: linear-gradient(135deg, #00897b, #00acc1);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
    border-color: transparent;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #00897b, #00acc1);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.4);
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, #00897b, #00acc1);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

.pagination-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 137, 123, 0.4);
}

.pagination-link i {
    transition: transform var(--transition-base);
}

.pagination-link:hover i {
    transform: translateX(-5px);
}

/* Accounts Section */
.accounts-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--gray-100) 100%);
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.account-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00897b, #00acc1, #00897b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.account-card:hover::before {
    transform: scaleX(1);
}

.account-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.account-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.account-card:hover::after {
    opacity: 1;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bank-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-5);
    display: inline-block;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.account-card:hover .bank-icon {
    transform: scale(1.15) rotateY(15deg);
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.4));
}

.account-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.account-card:hover h3 {
    background: linear-gradient(135deg, #00897b, #00acc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.account-number {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: var(--radius-lg);
    font-family: 'Courier New', 'Courier', monospace;
    letter-spacing: 0.05em;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.account-card:hover .account-number {
    border-color: var(--primary-300);
    background: linear-gradient(135deg, var(--primary-50), var(--gray-50));
    transform: scale(1.02);
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

/* About Section */
.about-section {
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    border-radius: var(--radius-2xl);
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--gray-100) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    height: 280px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    background: var(--bg-secondary);
}

.gallery-item:hover {
    border-color: var(--primary-400);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(1.1);
}

.gallery-item:hover img {
    filter: brightness(1) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.85), rgba(74, 144, 164, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: var(--bg-primary);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: var(--space-5) var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gray-50), var(--bg-secondary));
    transition: all var(--transition-base);
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, var(--primary-50), var(--gray-50));
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-700);
    margin: 0;
    flex: 1;
    padding-left: var(--space-4);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--space-5) var(--space-6);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--gray-100) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-400));
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.contact-item {
    transition: all var(--transition-base);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    transform: translateX(-5px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 10px 25px rgba(102, 126, 234, 0.3),
        0 4px 10px rgba(118, 75, 162, 0.2);
}

.contact-details h3 {
    color: var(--primary-700);
    margin-bottom: var(--space-2);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
}

.contact-details p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    transition: all var(--transition-base);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(44, 95, 124, 0.1), var(--shadow-sm);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   FOOTER - Professional Design
   ============================================ */
.footer {
    background: linear-gradient(135deg, #00897b 0%, #00acc1 50%, #00897b 100%);
    color: var(--bg-primary);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: footerGlow 10s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: var(--space-5);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--bg-primary);
    letter-spacing: -0.01em;
}

.footer-section p {
    margin-bottom: var(--space-3);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-right: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: var(--space-8);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

/* News Modal */
.news-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    max-width: 900px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.modal-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.modal-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.modal-news-content {
    padding: 40px;
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
}

.modal-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-category {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.modal-news-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-news-content #modalContent {
    line-height: 2;
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.modal-news-content #modalContent p {
    margin-bottom: 20px;
}

.modal-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.modal-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.modal-share span {
    color: #666;
    font-weight: 600;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.share-btn:nth-child(2) {
    background: #0088cc;
}

.share-btn:nth-child(3) {
    background: #25D366;
}

.share-btn:nth-child(4) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(44, 95, 124, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN - Professional Breakpoints
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .stats-grid,
    .news-grid,
    .accounts-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }


    .section-title {
        font-size: var(--font-size-3xl);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: var(--space-8) var(--space-6);
    }

    .modal-content {
        margin: 20px;
        border-radius: 15px;
    }

    .modal-image {
        height: 250px;
    }

    .modal-news-content {
        padding: 25px;
    }

    .modal-news-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}

