/* EEN West-Mar Custom Corporate Stylesheet */

/* ==========================================
   1. Theme Variables & Base Styles
   ========================================== */
:root {
    --primary: #0a3a8e;
    /* AIA / EEN Corporate Blue */
    --primary-hover: #072a6b;
    --secondary: #ffcc00;
    /* EU Gold */
    --accent: #0284c7;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 700;
}

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

.py-6 {
    padding: 6rem 0;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.my-4 {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

.bg-slate {
    background-color: #f1f5f9;
}

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

/* ==========================================
   2. Shared UI Components (Buttons & Cards)
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(10, 58, 142, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(230, 184, 0, 0.3);
}

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

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

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

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

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.btn-text-icon:hover {
    color: var(--primary-hover);
}

.card {
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.empty-message {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.05rem;
}

/* Alert Notification */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* ==========================================
   3. Page Layout (Header & Footer)
   ========================================== */
.een-header {
    height: 150px;
    background-image: url('../images/header-wave.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    position: relative;
    z-index: 90;
    background-color: var(--primary);
}

.een-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.een-logo a {
    display: block;
}

.een-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.een-header-text {
    border-left: 2px solid var(--primary);
    padding-left: 20px;
}

.een-header-text h1 {
    font-size: 1.35rem;
    margin-bottom: 0px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
}

.een-header-text p {
    font-size: 0.95rem;
    margin-top: 4px;
    margin-bottom: 0px;
    line-height: 1.2;
    color: var(--text-light);
}

.een-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
    display: none;
}

.een-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.5rem;
}

.navbar-nav-wrapper {
    display: flex;
    align-items: center;
}

.een-menu {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.een-menu li {
    position: relative;
}

.een-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.85;
    transition: var(--transition);
}

.een-menu a:hover,
.een-menu a.active {
    color: var(--secondary);
    opacity: 1;
}

.een-menu .nav-arrow,
.een-menu svg {
    width: 0.9rem;
    height: 0.9rem;
    transition: var(--transition);
}

/* Dropdown Menu */
.een-menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 110;
}

.dropdown-menu li a {
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: var(--primary);
    padding-left: 1.75rem;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-social a {
    color: white;
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--secondary);
    opacity: 1;
    transform: translateY(-2px);
}

.header-social svg {
    width: 1.15rem;
    height: 1.15rem;
}

.btn-register {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
    border: 1px solid var(--secondary);
}

.btn-register:hover {
    background-color: transparent;
    color: var(--secondary);
}

.btn-register svg {
    width: 1rem;
    height: 1rem;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.nav-lang-btn {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition);
}

.nav-lang-btn.active,
.nav-lang-btn:hover {
    opacity: 1;
    color: var(--secondary);
}

.admin-link-icon {
    color: white;
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.admin-link-icon:hover {
    color: var(--secondary);
    opacity: 1;
}

.admin-link-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

@media (max-width: 900px) {
    .een-header-text h1 {
        font-size: 1.1rem;
    }

    .een-header-text p {
        font-size: 0.85rem;
    }

    .navbar-nav-wrapper {
        display: none;
    }

    .navbar-actions>a,
    .navbar-actions>.header-social,
    .navbar-actions>.nav-lang {
        display: none;
    }

    .een-burger {
        display: flex;
    }

    .navbar-actions {
        gap: 0;
        margin-left: auto;
    }

    /* Mobile Sticky Logo Styles */
    .navbar-brand {
        display: flex;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        width: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, width 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-right 0.3s ease;
    }

    .navbar-logo-white {
        height: 75px;
        /* Perfectly sized for mobile 3.5rem navbar */
        width: auto;
        filter: brightness(0) invert(1);
        display: block;
    }

    .een-navbar.scrolled .navbar-brand {
        opacity: 1;
        visibility: visible;
        width: auto;
        margin-right: 1rem;
    }
}


.icon-user {
    width: 1.1rem;
    height: 1.1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Footer Section (wave style) */
.footer-een {
    position: relative;
    padding: 5rem 0 0 0;
    color: #cbd5e1;
    z-index: 10;
}

.bg-gradient-een {
    background-image: linear-gradient(135deg, #0a3a8e 0%, #06245c 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding-bottom: 2rem;
    }
}

.footer-wave-divider {
    height: 80px;
    /* height of the wave curve */
    background-image: url('../images/footer-wave.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center bottom;
    width: 100%;
    z-index: 15;
    position: relative;
    margin-top: 2rem;
}

.footer-logo {
    max-height: 55px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a svg {
    width: 1.1rem;
    height: 1.1rem;
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--text-dark);
    border-color: var(--secondary);
}

.eu-flag-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.footer-bottom-een {
    background-color: #ffffff;
    color: #475569;
    padding: 2rem 0;
    position: relative;
    z-index: 20;
}

.footer-navbar {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-navbar a {
    color: #475569;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-navbar a:hover {
    color: var(--primary);
}

/* ==========================================
   4. Hero & Page Header Layouts
   ========================================== */
.hero {
    background: linear-gradient(135deg, #0a3a8e 0%, #072a6b 50%, #0369a1 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ==========================================
   5. Homepage Specific Styles
   ========================================== */
/* Homepage Specific Styles */
/* Swiper Slider Layout Styles */
.slider-section {
    position: relative;
    overflow: hidden;
    height: 600px;
    background-color: #0c182c;
}

.main-slider {
    width: 100%;
    height: 100%;
}

.main-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 10s ease;
    transform: scale(1.03);
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 58, 142, 0.75) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}

.slide-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}

/* Swiper Slide Alignments */
.slide-content {
    max-width: 720px;
    margin: 0 auto 0 0;
    /* Left align content inside the container */
    text-align: left;
    color: white;
}

.slide-tag {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 1.25rem;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.slide-title>span {
    display: inline-block;
    opacity: 0;
}

.fancy-gold {
    color: var(--secondary);
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 15px rgba(255, 212, 0, 0.35);
}

.slide-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin-left: 0;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    /* Left align buttons */
    opacity: 0;
}

.btn-primary-gold {
    background-color: var(--secondary);
    color: var(--text-dark);
    font-weight: 700;
    padding: 0.9rem 2.25rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-primary-gold:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-gold svg {
    width: 1.1rem;
    height: 1.1rem;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 700;
    padding: 0.9rem 2.25rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Swiper Pagination and Arrows Design Customizations */
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 900;
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background-color: var(--secondary);
    color: var(--text-dark);
    border-color: var(--secondary);
    transform: scale(1.05);
}

.main-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.main-slider .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* Swiper Active Slide Title Animations */
.swiper-slide-active .slide-tag {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.2s;
}

.swiper-slide-active .slide-title>span {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.4s;
}

.swiper-slide-active .slide-desc {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.6s;
}

.swiper-slide-active .slide-buttons {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.8s;
}

/* Fancy Character Rotation Animations */
.fancy-char {
    display: inline-block;
    opacity: 0;
    transform: rotateY(-90deg) translateZ(15px);
    transform-origin: center left;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.swiper-slide-active .fancy-char {
    animation: charRotateIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.15) both;
}

@keyframes charRotateIn {
    to {
        opacity: 1;
        transform: rotateY(0deg) translateZ(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Leaflet Map Tile CSS Filter for clean light-gray theme */
.leaflet-tile {
    filter: grayscale(100%) sepia(10%) brightness(108%) contrast(95%);
}

/* Leaflet Map Custom CSS Markers */
.custom-map-marker {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.custom-map-marker span {
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(10, 58, 142, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 10px;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.custom-map-marker span img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

.custom-map-marker:hover span {
    transform: scale(1.2);
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(10, 58, 142, 0.4);
}

.custom-map-marker.coordinator-marker span {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.25), 0 4px 15px rgba(10, 58, 142, 0.35);
}

.custom-map-marker.coordinator-marker span::after {
    content: '★';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--text-dark);
    font-size: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    font-weight: 900;
}

@media (max-width: 900px) {
    .slider-section {
        height: 520px;
    }

    .slide-title {
        font-size: 2.8rem;
    }

    .slide-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .slider-section {
        height: 480px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .main-slider .swiper-button-next,
    .main-slider .swiper-button-prev {
        display: none;
    }
}

/* Section Badges & Headers */
.section-badge {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background-color: rgba(10, 58, 142, 0.06);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.intro-text .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-stats-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-card-stat {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.intro-card-stat .icon-holder {
    background-color: rgba(10, 58, 142, 0.05);
    color: var(--primary);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-card-stat .icon-holder svg {
    width: 1.75rem;
    height: 1.75rem;
}

.intro-card-stat h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.intro-card-stat p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Services Modern Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.een-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 340px;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    isolation: isolate;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.6s ease;
    z-index: -2;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 58, 142, 0.95) 20%, rgba(10, 58, 142, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition);
    z-index: -1;
}

.een-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 58, 142, 0.2);
}

.een-service-card:hover .service-card-bg {
    transform: scale(1.08);
}

.een-service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(6, 36, 92, 0.98) 30%, rgba(10, 58, 142, 0.65) 70%, rgba(10, 58, 142, 0.2) 100%);
}

.service-card-content {
    padding: 2.25rem;
    color: white;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.service-card-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.service-card-content p {
    font-size: 0.925rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-more-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-more-btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.een-service-card:hover .service-more-btn {
    background-color: white;
    color: var(--primary);
    transform: rotate(45deg);
}

/* Statistics Counter Strip */
.stats-counter-strip {
    background: linear-gradient(135deg, rgba(10, 58, 142, 0.95) 0%, rgba(6, 36, 92, 0.98) 100%), url('../images/counterbg.svg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 4px solid var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.stat-item-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.stat-item-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
    background: rgba(255, 212, 0, 0.1);
    color: var(--secondary);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 212, 0, 0.15);
    transition: var(--transition);
}

.stat-icon-wrapper i,
.stat-icon-wrapper svg {
    width: 1.75rem;
    height: 1.75rem;
}

.stat-item-card:hover .stat-icon-wrapper {
    background: var(--secondary);
    color: var(--text-dark);
    transform: scale(1.05);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-unit {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-top: 0.15rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    margin: 0;
    line-height: 1.3;
}

/* Interactive Map Section */
.een-map-section {
    background-color: #ffffff;
}

.map-card-wrapper {
    background: white;
    padding: 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

#map {
    height: 480px;
    width: 100%;
    border-radius: 1rem;
    z-index: 10;
}

@media (max-width: 900px) {
    .een-hero-content h2 {
        font-size: 2.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}

.column-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 2.25rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.25rem;
    position: relative;
}

.column-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(10, 58, 142, 0.06);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.column-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.column-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffd400;
    border-radius: 50px;
}

.column-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.news-row-card,
.event-row-card {
    display: flex;
    flex-direction: row;
    padding: 1.25rem;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
    position: relative;
    overflow: hidden;
}

.news-row-card::before,
.event-row-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    transition: width 0.25s ease;
}

.news-row-card::before {
    background: var(--primary);
}

.event-row-card::before {
    background: #ffd400;
}

.news-row-card:hover,
.event-row-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -4px rgba(10, 58, 142, 0.08);
    border-color: #e2e8f0;
}

.news-row-card:hover::before,
.event-row-card:hover::before {
    width: 6px;
}

.row-image-box {
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.row-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-row-card:hover .row-image-box img {
    transform: scale(1.08);
}

.row-image {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 10px;
}

.event-row-card .event-date-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #062356 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 5.25rem;
    height: 5.25rem;
    border-radius: 12px;
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(10, 58, 142, 0.12);
}

.event-row-card .event-date-badge .month {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffd400;
    margin-bottom: 2px;
}

.event-row-card .event-date-badge .day {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.row-content h4 {
    font-size: 1.15rem;
    line-height: 1.45;
    font-weight: 700;
    margin: 0;
}

.row-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.row-content h4 a:hover {
    color: var(--primary);
}

.row-date,
.row-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.row-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.column-footer {
    margin-top: 1.75rem;
    display: flex;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    width: 100%;
}

@media (max-width: 992px) {
    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.partner-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    width: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.partner-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.partner-logo-card:hover .partner-img {
    transform: scale(1.05);
}

.partner-logo-card span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    line-height: 1.4;
    font-weight: 500;
}

/* Partners Slider Pagination */
.partners-pagination .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.partners-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Smooth Linear Marquee Swiper Wrapper Transition */
.partners-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partners-pagination {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================
   6. About Page Styles
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3.5rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.about-main-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--primary);
    line-height: 1.3;
}

.about-main-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1.75rem 0 1rem 0;
    color: #0f172a;
}

.about-main-text p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-main-text .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.8;
}

/* ==========================================================================
   ABOUT PAGE MODERN DESIGN SYSTEM
   ========================================================================== */

/* 1. Key Metrics Strip (Light Modern Style) */
.about-stats-strip {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.about-stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.15rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat-card:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 58, 142, 0.08);
    border-color: #93c5fd;
}

.about-stat-card.highlight {
    border-left: 4px solid #f59e0b;
    background: #fffdf5;
}

.about-stat-card.highlight:hover {
    background: #ffffff;
    border-color: #f59e0b;
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(10, 58, 142, 0.08);
    color: #0a3a8e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.08);
}

.about-stat-card.highlight .about-stat-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.about-stat-icon i,
.about-stat-icon svg {
    width: 22px;
    height: 22px;
}

.about-stat-info {
    display: flex;
    flex-direction: column;
}

.about-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a3a8e;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.about-stat-card.highlight .about-stat-num {
    color: #d97706;
}

.about-stat-title {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

/* 2. Main Section Card */
.about-section-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 2.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(10, 58, 142, 0.03);
}

/* 3. AİA 6 Core Service Pillars Grid */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0 1rem 0;
}

.about-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.about-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0a3a8e 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(10, 58, 142, 0.08);
    border-color: #bfdbfe;
}

.about-pillar-card:hover::before {
    opacity: 1;
}

.about-pillar-card .pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eff6ff;
    color: #0a3a8e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.about-pillar-card:hover .pillar-icon {
    transform: scale(1.06);
    background: #dbeafe;
}

.about-pillar-card .pillar-icon i,
.about-pillar-card .pillar-icon svg {
    width: 22px;
    height: 22px;
}

.about-pillar-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.about-pillar-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* 4. Strategic Regional Focus Sectors */
.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.875rem;
    margin: 1.5rem 0 2rem 0;
}

.about-focus-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0a3a8e;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    transition: all 0.25s ease;
}

.about-focus-item:hover {
    background: #ffffff;
    border-left-color: #ffd400;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(10, 58, 142, 0.06);
}

.about-focus-item i,
.about-focus-item svg {
    color: #0a3a8e;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* 5. Mission & Vision Cards */
.about-mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 0.5rem 0;
}

.about-mv-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.about-mv-card.mission {
    border-top: 4px solid #0a3a8e;
}

.about-mv-card.vision {
    border-top: 4px solid #f59e0b;
}

.about-mv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(10, 58, 142, 0.07);
}

.about-mv-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-mv-card p {
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* 6. Target Audience Cards (Solid Modern Grid) */
.about-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0 0 0;
}

.about-audience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.about-audience-card:hover {
    transform: translateY(-3px);
    border-color: #93c5fd;
    box-shadow: 0 12px 24px rgba(10, 58, 142, 0.08);
}

.about-audience-card .aud-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.about-audience-card:hover .aud-icon {
    transform: scale(1.08);
}

.about-audience-card .aud-icon i,
.about-audience-card .aud-icon svg {
    width: 22px;
    height: 22px;
}

.about-audience-card.aud-blue .aud-icon {
    background: #eff6ff;
    color: #0284c7;
}

.about-audience-card.aud-indigo .aud-icon {
    background: #eef2ff;
    color: #4f46e5;
}

.about-audience-card.aud-emerald .aud-icon {
    background: #ecfdf5;
    color: #059669;
}

.about-audience-card.aud-amber .aud-icon {
    background: #fffbeb;
    color: #d97706;
}

.about-audience-info {
    display: flex;
    flex-direction: column;
}

.about-audience-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.025rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem 0;
}

.about-audience-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 7. Sidebar Styles */
.about-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    padding: 1.75rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(10, 58, 142, 0.03);
}

.sidebar-card.highlight-box {
    background-color: #ffffff;
}

.sidebar-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.sidebar-partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.sidebar-partner-item:hover {
    background: #ffffff;
    border-color: #93c5fd;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(10, 58, 142, 0.05);
}

.region-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.region-badge {
    background: #f1f5f9;
    color: #0a3a8e;
    border: 1px solid #cbd5e1;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.region-badge:hover {
    background: #0a3a8e;
    color: #ffffff;
    border-color: #0a3a8e;
}

.about-cta-box {
    background: linear-gradient(135deg, #0a3a8e 0%, #032a69 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    color: white;
    text-align: center;
    margin-top: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(10, 58, 142, 0.15);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .about-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
    .about-mv-grid {
        grid-template-columns: 1fr;
    }
    .about-audience-grid {
        grid-template-columns: 1fr;
    }
    .about-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

.about-cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
}

.about-cta-box p {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

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

/* ==========================================
   7. Service & Detail Styles
   ========================================== */
.services-main-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-list-card {
    display: flex;
    flex-direction: row;
    padding: 2.5rem;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .service-list-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }
}

.service-icon-wrapper {
    background-color: rgba(10, 58, 142, 0.05);
    color: var(--primary);
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(10, 58, 142, 0.1);
}

.service-icon-wrapper i {
    width: 2.25rem;
    height: 2.25rem;
}

.service-list-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-list-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
}

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

.detail-main {
    padding: 3rem;
}

@media (max-width: 480px) {
    .detail-main {
        padding: 1.5rem;
    }
}

.detail-icon-badge {
    background-color: rgba(10, 58, 142, 0.05);
    color: var(--primary);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(10, 58, 142, 0.1);
}

.detail-icon-badge i {
    width: 2rem;
    height: 2rem;
}

.detail-body-content h2,
.detail-body-content h3 {
    margin: 2rem 0 1rem 0;
    color: var(--primary);
}

.detail-body-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.detail-body-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.detail-body-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.sidebar-nav-card {
    padding: 2rem;
}

.sidebar-nav-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.sidebar-nav-card ul {
    list-style: none;
}

.sidebar-nav-card li {
    margin-bottom: 0.5rem;
}

.sidebar-nav-card a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.975rem;
}

.sidebar-nav-card a:hover,
.sidebar-nav-card a.active {
    background-color: var(--primary);
    color: white;
}

.sidebar-nav-card a i {
    width: 1.1rem;
    height: 1.1rem;
}

/* ==========================================
   8. Event & Detail Styles
   ========================================== */
.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.section-title i {
    width: 1.8rem;
    height: 1.8rem;
}

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

.event-card {
    display: flex;
    flex-direction: column;
}

.event-image-box img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.event-card-body {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.event-date-badge {
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    border-bottom: 4px solid var(--secondary);
}

.event-date-badge .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.event-date-badge .day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.event-text {
    flex-grow: 1;
}

.event-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.event-meta i,
.event-meta svg {
    width: 1rem;
    height: 1rem;
}

.event-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.past-events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.past-event-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 2.5rem;
    gap: 3rem;
}

@media (max-width: 768px) {
    .past-event-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
    }
}

.past-date {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 8rem;
}

.past-title {
    flex-grow: 1;
}

.past-title h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.past-loc {
    font-size: 0.85rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.past-loc i,
.past-loc svg {
    width: 0.9rem;
    height: 0.9rem;
}

.detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.detail-card {
    overflow: hidden;
}

.detail-image-box img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.detail-content-wrapper {
    padding: 3rem;
}

@media (max-width: 480px) {
    .detail-content-wrapper {
        padding: 1.5rem;
    }
}

.detail-meta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
    .detail-meta-box {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-item i,
.meta-item svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.meta-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.meta-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.event-main-content h2,
.event-main-content h3 {
    margin: 2rem 0 1rem 0;
    color: var(--primary);
}

.event-main-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.registration-cta {
    background-color: rgba(10, 58, 142, 0.03);
    border: 1px dashed var(--primary);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.registration-cta h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.registration-cta p {
    color: var(--text-light);
    font-size: 0.975rem;
    margin-bottom: 1rem;
}

/* ==========================================
   9. News & Detail Styles
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-image-box {
    position: relative;
    overflow: hidden;
    height: 14rem;
    flex-shrink: 0;
}

.news-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image-box img {
    transform: scale(1.05);
}

.placeholder-box {
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.placeholder-box i,
.placeholder-box svg {
    width: 3rem;
    height: 3rem;
}

.news-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    flex-grow: 1;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--primary);
}

.read-more-link:hover {
    color: var(--primary-hover);
    gap: 0.5rem;
}

.pagination-row {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Premium Pagination Overrides */
.pagination-row nav {
    width: 100%;
}

.pagination-row nav>div:first-child {
    display: none !important;
}

.pagination-row nav>div:last-child {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pagination-row nav>div:last-child>div:last-child {
    display: flex;
    align-items: center;
}

/* Hide default Laravel text showing results if present in the flex wrapper */
.pagination-row nav p {
    display: none !important;
}

.pagination-row span[aria-current="page"] span,
.pagination-row a,
.pagination-row span[disabled] span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    margin: 0 3px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pagination-row a:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0a3a8e;
    transform: translateY(-1px);
}

.pagination-row span[aria-current="page"] span {
    background: #0a3a8e !important;
    color: white !important;
    border-color: #0a3a8e !important;
    box-shadow: 0 4px 12px rgba(10, 58, 142, 0.15);
}

.pagination-row span[disabled] span {
    background: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-row svg {
    width: 1.1rem;
    height: 1.1rem;
}

.news-meta-row {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.news-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta-row i,
.news-meta-row svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--primary);
}

.news-main-content h2,
.news-main-content h3 {
    margin: 2rem 0 1rem 0;
    color: var(--primary);
}

.news-main-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ==========================================
   10. Contact Page Styles
   ========================================== */
.contact-form-card {
    padding: 3rem;
}

.contact-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 1.5rem;
    }
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 58, 142, 0.15);
}

.info-card {
    padding: 2.5rem;
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i,
.info-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.info-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.map-card {
    padding: 2rem;
    background-color: #f1f5f9;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: var(--text-light);
}

.map-placeholder i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.map-placeholder span {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Leaflet MarkerCluster Styling (matches reference site exactly) */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background-color: rgba(10, 58, 142, 0.15) !important;
    border-radius: 50% !important;
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background-color: white !important;
    border: 3px solid var(--primary) !important;
    color: var(--primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(10, 58, 142, 0.25) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 30px !important;
    height: 30px !important;
    margin: 5px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marker-cluster:hover div {
    transform: scale(1.1);
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
}

/* cfs Firm Accordion Widget Styles (contact layout style) */
#cfsFirmArea {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cfs-firm-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.cfs-firm-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cfs-firm-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.cfs-firm-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 4px;
    flex-shrink: 0;
}

.cfs-firm-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cfs-firm-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.cfs-firm-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.cfs-firm-social a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.cfs-firm-social a:hover {
    color: var(--primary);
}

.cfs-rehber-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #f8fafc;
    border-top: 1px solid transparent;
}

.cfs-firm-item.open .cfs-rehber-panel {
    border-color: #e2e8f0;
}

.cfs-rehber-inner {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cfs-expert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.cfs-expert-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.cfs-expert-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
    flex-shrink: 0;
}

.cfs-expert-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cfs-expert-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cfs-expert-title {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cfs-expert-email {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: underline;
}

.cfs-expert-email:hover {
    color: var(--secondary);
}

/* ==========================================
   5. Mobile Drawer Menu Styles
   ========================================== */

.een-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

@media (max-width: 900px) {
    .een-burger {
        display: flex;
    }
}

.een-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.een-burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.een-burger.active span:nth-child(2) {
    opacity: 0;
}

.een-burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.een-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.een-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.een-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85%;
    background: linear-gradient(135deg, #0a3a8e 0%, #06245c 100%);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.een-mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-body {
    overflow-y: auto;
    flex-grow: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-links>li>a {
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    opacity: 0.9;
    transition: var(--transition);
}

.mobile-menu-links>li>a:hover,
.mobile-menu-links>li>a.active {
    color: var(--secondary);
    opacity: 1;
    padding-left: 5px;
}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    opacity: 0.9;
    transition: var(--transition);
}

.mobile-dropdown-btn:hover {
    color: var(--secondary);
    opacity: 1;
}

.mobile-dropdown-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.mobile-submenu {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 1.5px dashed rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
}

.mobile-submenu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    transition: var(--transition);
}

.mobile-submenu a:hover {
    color: var(--secondary);
    padding-left: 3px;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-btn-register {
    background-color: var(--secondary);
    color: var(--text-dark) !important;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 212, 0, 0.2);
    transition: var(--transition);
}

.mobile-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 212, 0, 0.35);
}

.mobile-lang-picker {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    padding: 0.6rem;
}

.mobile-lang-picker a {
    color: white;
    opacity: 0.6;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-lang-picker a:hover {
    opacity: 1;
    color: var(--secondary);
}

.mobile-lang-picker .active {
    color: var(--secondary);
    opacity: 1;
}

.mobile-admin-btn {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: block;
    opacity: 0.8;
    transition: var(--transition);
}

.mobile-admin-btn:hover {
    color: white;
    opacity: 1;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1rem;
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-menu-social a:hover {
    background: var(--secondary);
    color: var(--text-dark);
    border-color: var(--secondary);
}

.mobile-menu-social svg {
    width: 1.1rem;
    height: 1.1rem;
}

/* Success Stories Showcase Styles */
.home-success-stories {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.success-showcase-card {
    transition: all 0.3s ease;
}

.story-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -5px rgba(10, 58, 142, 0.08) !important;
    border-color: #0a3a8e !important;
}

.story-step-card.step-card-final:hover {
    border-color: #10b981 !important;
    box-shadow: 0 12px 25px -5px rgba(16, 185, 129, 0.12) !important;
}

@media (max-width: 900px) {
    .success-showcase-card {
        padding: 1.75rem !important;
        border-radius: 18px !important;
    }
    .showcase-header-bar {
        padding: 1.25rem 1.5rem !important;
    }
    .story-steps-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .success-showcase-card {
        padding: 1.25rem !important;
    }
    .showcase-header-bar {
        padding: 1rem 1.25rem !important;
    }
    .showcase-footer-cta {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .showcase-footer-cta a {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ==========================================
   Custom Pagination Styles
   ========================================== */
.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-pagination {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 6px 10px;
    margin: 0;
    background: white;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.custom-pagination .page-item {
    display: inline-flex;
}

.custom-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}

.custom-pagination .page-link:hover {
    color: #0a3a8e;
    background: #f1f5f9;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.custom-pagination .page-item.active .page-link {
    background: #0a3a8e;
    color: #ffffff;
    font-weight: 700;
    border-color: #0a3a8e;
    box-shadow: 0 4px 10px rgba(10, 58, 142, 0.25);
}

.custom-pagination .page-item.disabled .page-link {
    color: #cbd5e1;
    pointer-events: none;
    background: transparent;
}

.custom-pagination .page-link.dots {
    color: #94a3b8;
    pointer-events: none;
}

@media (max-width: 640px) {
    .custom-pagination {
        gap: 3px;
        padding: 4px 6px;
    }
    .custom-pagination .page-link {
        min-width: 34px;
        height: 34px;
        font-size: 0.85rem;
        padding: 0 6px;
    }
}