/* ========================================
   GOOGLE FONTS IMPORT
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== VIBRANT MODERN COLOR PALETTE ===== */
    /* Primary - Rich Emerald Teal */
    --primary-color: #047857;
    --primary-light: #10b981;
    --primary-dark: #065f46;
    --primary-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);

    /* Secondary - Luxurious Gold */
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);

    /* Accent Colors */
    --accent-coral: #fb7185;
    --accent-purple: #a78bfa;
    --accent-blue: #60a5fa;

    /* Semantic Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;

    /* Backgrounds */
    --dark-bg: #0f172a;
    --dark-bg-secondary: #1e293b;
    --light-bg: #f8fafc;
    --light-bg-secondary: #f1f5f9;

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --text-muted: #94a3b8;

    /* UI Elements */
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.16);
    --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.2);
    --shadow-color: rgba(15, 23, 42, 0.1);
    --overlay-gradient: linear-gradient(135deg, rgba(4, 120, 87, 0.95) 0%, rgba(6, 95, 70, 0.9) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-arabic: 'Arabic Insyirah', 'Amiri', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --max-width: 1400px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   ACCESSIBILITY FEATURES
   ======================================== */
/* Skip to main content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.skip-to-content:focus {
    top: 20px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Focus visible styles for better keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
}

.btn::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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: var(--light-bg);
    border-color: var(--secondary-light);
}

.btn-light:active {
    transform: translateY(-2px) scale(1);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: var(--primary-gradient);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    transition: var(--transition-normal);
}

.logo:hover .logo-img {
    border-color: var(--secondary-light);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
    transform: rotate(5deg);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition-normal);
}

.nav-toggle:hover span {
    background: var(--secondary-light);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: translateX(-50%);
    transition: var(--transition-normal);
    border-radius: 3px 3px 0 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 92vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, var(--primary-light) 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/Baitululoom_H.jpeg') center/cover no-repeat;
    opacity: 0.18;
    animation: kenburns 25s ease infinite;
    filter: contrast(1.1) brightness(1.1);
}

@keyframes kenburns {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15) rotate(1deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(4, 120, 87, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    line-height: 1.1;
    animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-family: var(--font-arabic);
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 24px;
    color: var(--secondary-light);
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    margin-bottom: 48px;
    opacity: 0.98;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.4s ease;
}

/* ========================================
   SECTION STYLING
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.title-divider {
    width: 100px;
    height: 5px;
    background: var(--gold-gradient);
    margin: 0 auto 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Apply heading font to all headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */
.intro-section {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 800;
}

.content-text p {
    margin-bottom: 24px;
    font-size: 1.08rem;
    text-align: justify;
    color: var(--text-secondary);
    line-height: 1.9;
}

.content-image {
    position: relative;
}

.featured-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    border: 3px solid rgba(4, 120, 87, 0.1);
}

.featured-image:hover {
    transform: scale(1.035) translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.image-caption {
    text-align: center;
    margin-top: 18px;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   STATS/BADGES SECTION
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--light-bg-secondary) 0%, var(--light-bg) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-badge {
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(4, 120, 87, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-badge:hover::before {
    transform: scaleX(1);
}

.stat-badge:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
    filter: grayscale(0.2);
}

.stat-badge:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    transition: var(--transition-normal);
}

.stat-badge:hover .stat-number {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* ========================================
   LEGACY SECTION
   ======================================== */
.legacy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legacy-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
    color: var(--text-secondary);
}

.first-graduates {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 48px;
    border: 2px solid rgba(4, 120, 87, 0.08);
    transition: all var(--transition-normal);
}

.first-graduates:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

.first-graduates h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.first-graduates p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
}

.graduates-list {
    list-style: none;
}

.graduates-list li {
    padding: 18px 0 18px 40px;
    position: relative;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.graduates-list li:hover {
    padding-left: 45px;
    color: var(--text-primary);
    background: var(--light-bg-secondary);
    border-radius: var(--radius-sm);
}

.graduates-list li:last-child {
    border-bottom: none;
}

.graduates-list li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

.graduates-list li:hover::before {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-dark);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid rgba(4, 120, 87, 0.08);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(4, 120, 87, 0.95), transparent);
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition-normal);
    font-weight: 600;
    font-size: 1.05rem;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--primary-gradient);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/Baitululoom_5.jpeg') center/cover no-repeat;
    opacity: 0.12;
    filter: contrast(1.2);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent, rgba(4, 120, 87, 0.85));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 0.98rem;
}

.footer-logo img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    transition: var(--transition-normal);
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary-light);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-light);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.footer-contact strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.12);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transition: var(--transition-normal);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        display: block;
        overflow: visible;
        margin: 0;
        line-height: 1.5;
    }

    /* Disable lift effect and limit background overlay in mobile */
    .nav-link:hover,
    .nav-link.active {
        transform: none;
        background: rgba(255, 255, 255, 0.08);
        padding: 12px 15px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* AOS Animations - Enhanced */
[data-aos] {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
    opacity: 0;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

/* ========================================
   COMING SOON SECTION
   ======================================== */
.coming-soon-wrapper {
    background: white;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    border: 3px dashed var(--border-color);
    position: relative;
    overflow: hidden;
}

.coming-soon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary-color);
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    display: block;
    animation: floatingIcon 3s ease-in-out infinite;
}

@keyframes floatingIcon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.coming-soon-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

.coming-soon-content .title-divider {
    margin: 32px auto;
}

.trust-note {
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-primary);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    background-color: white;
}

.map-section-home {
    background-color: var(--light-bg);
}

.map-wrapper,
.map-container {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe,
.map-container iframe {
    width: 100%;
    display: block;
    min-height: 400px;
    filter: grayscale(10%) contrast(105%);
    transition: var(--transition-normal);
}

.map-wrapper iframe:hover,
.map-container iframe:hover {
    filter: grayscale(0%) contrast(100%);
}

@media (max-width: 768px) {

    .map-wrapper iframe,
    .map-container iframe {
        height: 350px !important;
    }
}