/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1200;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(44,62,80,0.22);
}
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
    }
}
/* --- Modern Why Choose Us Section (Refined) --- */
.why-choose-us-modern {
    padding: 64px 0 48px 0;
    background: #f8fafc;
}
.why-choose-us-modern .section-header-modern {
    margin-bottom: 48px;
}
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    justify-items: center;
}
.modern-feature-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.10);
    padding: 36px 28px 32px 28px;
    text-align: center;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.modern-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.16);
}
.modern-feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 22px auto;
    border-radius: 50%;
    background: #e6f4ea;
    color: #2d6a4f;
    box-shadow: 0 2px 12px 0 rgba(44, 62, 80, 0.08);
}
.gradient-bg {
    background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    color: #fff !important;
}
.modern-feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b4332;
    letter-spacing: 0.01em;
}
.modern-feature-card p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0;
    margin-top: 0;
}
@media (max-width: 900px) {
    .modern-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    .modern-feature-card {
        padding: 24px 10px 18px 10px;
        min-height: 180px;
    }
    .modern-feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
        margin-bottom: 14px;
    }
}
/* --- Modern Why Choose Us Section --- */
.why-choose-us-modern {
    padding: 64px 0 48px 0;
    background: #f8fafc;
}
.why-choose-us-modern .section-header-modern {
    margin-bottom: 48px;
}
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    justify-items: center;
}
.modern-feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.08);
    padding: 36px 28px 32px 28px;
    text-align: center;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
    position: relative;
    min-height: 320px;
}
.modern-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.16);
}
.modern-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(44, 62, 80, 0.10);
}
.gradient-bg {
    background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
}
.modern-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b4332;
}
.modern-feature-card p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .modern-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    .modern-feature-card {
        padding: 28px 12px 24px 12px;
        min-height: 240px;
    }
}
/* Kyrgyz Nature - Modern Tour Operator Website CSS */
/* Enhanced UI/UX with animations and transitions */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Nature Green */
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --primary-lighter: #52b788;
    --primary-pale: #d8f3dc;
    
    /* Secondary Colors - Warm Orange */
    --secondary-color: #f4a261;
    --secondary-dark: #e76f51;
    --secondary-light: #f6bd7a;
    
    /* Accent Colors */
    --accent-color: #e76f51;
    --accent-gradient: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    
    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-light: #4a4a68;
    --text-muted: #6c757d;
    --text-lighter: #adb5bd;
    --text-on-primary: #ffffff;
    
    /* Background Colors */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --lighter-bg: #f1f3f5;
    --dark-bg: #1a1a2e;
    
    /* Border Colors */
    --border-color: #e9ecef;
    --border-light: #dee2e6;
    --border-dark: #ced4da;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(45, 106, 79, 0.3);
    --shadow-secondary: 0 8px 24px rgba(244, 162, 97, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Header */
    --header-height: 80px;
    --header-scrolled-height: 70px;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Mobile Table Fix ===== */
table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ===== Responsive Images ===== */
img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Selection ===== */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-light); }

/* ===== Utility Classes ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-gradient {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 18px; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-pulse { animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(45, 106, 79, 0); }
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

/* Make nav elements visible on white background when scrolled */
.header.scrolled .nav-logo { color: var(--text-dark); }
.header.scrolled .nav-link { color: var(--text-dark); }
.header.scrolled .nav-link:hover, 
.header.scrolled .nav-link.active {
    color: var(--primary-color);
    background: rgba(45, 106, 79, 0.1);
}
.header.scrolled .nav-link i { color: var(--primary-color); }

/* ===== Destinations Header Banner ===== */
.destinations-header-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.destinations-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.destinations-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.destinations-header-icon {
    color: var(--secondary-color);
    font-size: 1.1rem;
    animation: globeSpin 10s linear infinite;
}

@keyframes globeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.destinations-header-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.destinations-header-countries {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .destinations-header-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .destinations-header-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .destinations-header-countries {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled .nav { height: var(--header-scrolled-height); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.nav-logo-img { height: 50px; width: auto; transition: var(--transition); }
.header.scrolled .nav-logo-img { height: 40px; }

.nav-list { display: flex; align-items: center; gap: 8px; }

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    margin: 0 4px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--primary-pale);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    margin: 8px 0;
    background: var(--border-color);
}

.dropdown-menu .dropdown-header {
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.dropdown-menu .country-link {
    font-weight: 700;
    background: var(--light-bg);
    border-radius: 4px;
    margin-bottom: 4px;
}

.dropdown-menu .country-link:hover {
    background: var(--primary-pale);
    color: var(--primary-color);
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu,
.dropdown-menu > .dropdown-submenu > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: 0;
    margin-left: 1px;
    display: none;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu > .dropdown-menu.active {
    display: block;
}

.dropdown-submenu > a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    margin-left: 10px;
}

@media (max-width: 992px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        display: block;
        margin-left: 20px;
    }
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 20px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* ===== Mobile Navigation ===== */
.nav-toggle { display: none; }

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        z-index: 10000;
        transition: var(--transition-slow);
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        font-size: 24px;
        border-radius: var(--radius-full);
        background: var(--light-bg);
    }
    
    .nav-close:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    .nav-list { flex-direction: column; padding: 80px 24px 24px; gap: 8px; }
    .nav-link { color: var(--text-dark); font-size: 16px; padding: 14px 16px; background: var(--light-bg); }
    .nav-link:hover, .nav-link.active { background: var(--primary-color); color: var(--white); }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
    }
    
    .dropdown-menu.active { display: block; }
    .nav-actions { padding: 0 24px 24px; flex-wrap: wrap; gap: 12px; }
}

/* ===== Hero Section - Modern ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-modern {
    min-height: 100vh;
    padding-top: 80px;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(45, 106, 79, 0.6) 100%);
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 24px;
}

.hero-text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #f4a261 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-divider {
    display: block;
    font-size: 0.6em;
    color: rgba(255,255,255,0.7);
    margin: 10px 0;
}

.hero-description-large {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.trust-badge i { color: #f4a261; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Quick Booking Bar ===== */
.quick-booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -48px;
    padding: 0 24px 32px;
}

.quick-booking-form {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.qb-field {
    flex: 1;
    min-width: 180px;
}

.qb-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.qb-field label i { color: var(--primary-color); }

.qb-field select,
.qb-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.qb-field select:focus,
.qb-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .quick-booking-form { flex-wrap: wrap; }
    .qb-field { min-width: calc(50% - 8px); }
    .quick-booking-bar .btn { width: 100%; }
}

@media (max-width: 576px) {
    .qb-field { min-width: 100%; }
}

/* ===== Section Labels ===== */
.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-pale);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== About Preview ===== */
.about-preview { padding: 100px 0; background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content { padding-right: 40px; }

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-features { display: grid; gap: 20px; margin-bottom: 40px; }

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-pale);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.about-images { position: relative; }

.about-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img { width: 100%; height: auto; }

.about-image-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image-grid {
    position: absolute;
    bottom: -40px;
    right: -40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-image-grid img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-content { padding-right: 0; }
    .about-images { max-width: 500px; margin: 0 auto; }
    .about-image-grid { right: 0; }
}

/* ===== Featured Tours Section ===== */
.featured-tours-section { padding: 100px 0; background: var(--light-bg); }

.tours-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tour-card-vertical {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tour-card-vertical:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tour-card-vertical.featured {
    grid-row: span 2;
}

.tour-card-image-vertical {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.tour-card-vertical.featured .tour-card-image-vertical { aspect-ratio: 4/5; }

.tour-card-image-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card-vertical:hover .tour-card-image-vertical img {
    transform: scale(1.1);
}

.tour-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tour-card-vertical:hover .tour-card-overlay { opacity: 1; }

.tour-card-content-vertical { padding: 24px; }

.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.tour-card-meta i { color: var(--primary-color); margin-right: 4px; }

.tour-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tour-card-title a:hover { color: var(--primary-color); }

.tour-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.tour-card-price { display: flex; flex-direction: column; }

.price-label { font-size: 12px; color: var(--text-muted); }
.price-value { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); }

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-pale);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.tour-card-rating i { color: #ffc107; }

@media (max-width: 992px) {
    .tours-showcase { grid-template-columns: repeat(2, 1fr); }
    .tour-card-vertical.featured { grid-row: span 1; }
}

/* ===== Tours Grid Styles (for tours.php) ===== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.08);
}

.tour-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-destination {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 500;
}

.tour-destination i { color: var(--primary-color); }

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tour-title a { color: var(--text-dark); transition: var(--transition); }
.tour-title a:hover { color: var(--primary-color); }

.tour-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.tour-meta span { display: flex; align-items: center; gap: 6px; }
.tour-meta i { color: var(--primary-color); }

.tour-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.tour-price { display: flex; flex-direction: column; }

.price-from { font-size: 12px; color: var(--text-muted); }
.price-amount { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); }
.price-person { font-size: 12px; color: var(--text-muted); }

/* ===== Filter Bar Styles ===== */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.filter-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232d6a4f' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.filter-actions {
    display: flex;
    gap: 12px;
}

.results-count {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.results-count strong { color: var(--text-dark); }

@media (max-width: 768px) {
    .tours-grid { grid-template-columns: 1fr; }
    .filter-row { flex-direction: column; }
    .filter-group { width: 100%; }
    .filter-actions { width: 100%; }
    .filter-actions .btn { flex: 1; }
}

@media (max-width: 768px) {
    .tours-showcase { grid-template-columns: 1fr; }
}

/* ===== Destinations Showcase ===== */
.destinations-showcase {
    padding: 120px 0;
    background: var(--white);
}

.destinations-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.country-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 auto 60px;
    max-width: 920px;
}

.country-filter .filter-btn {
    padding: 14px 28px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    font-size: 1rem;
    min-width: 180px;
    text-align: center;
}

.country-filter .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.country-filter .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #52b788 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.25);
    transform: translateY(-2px);
}

.filter-info {
    text-align: center;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.filter-info a {
    color: var(--text-muted);
    text-decoration: underline;
    transition: var(--transition);
}

.filter-info a:hover {
    color: var(--text-dark);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: rgba(45, 106, 79, 0.05);
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(45, 106, 79, 0.2);
}

.empty-state i {
    font-size: 4rem;
    color: rgba(45, 106, 79, 0.35);
    margin-bottom: 22px;
}

.empty-state h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Destination Card Large ===== */
.destination-card-large {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    min-height: 420px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.4) 0%, rgba(82, 183, 136, 0.2) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.destination-card-large:hover::before {
    opacity: 0;
}

.destination-card-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top-left, rgba(255, 255, 255, 0.2), transparent);
    z-index: 0;
    pointer-events: none;
}

.destination-card-large {
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
    
.destination-card-large:hover {
    box-shadow: 0 20px 60px rgba(45, 106, 79, 0.25);
    transform: translateY(-12px);
}

.destination-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.88) saturate(1.2) contrast(1.05);
    will-change: transform;
    position: relative;
    z-index: 0;
}

.destination-card-large:hover img { 
    transform: scale(1.15) rotate(1deg);
}

/* ===== Destination Card Overlay ===== */
.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(45, 106, 79, 0.3) 60%, rgba(45, 106, 79, 0) 100%);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    padding: 44px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.destination-card-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 0;
}

.destination-card-large:hover .destination-card-overlay {
    background: linear-gradient(to top, rgba(45, 106, 79, 0.9) 0%, rgba(45, 106, 79, 0.5) 60%, rgba(45, 106, 79, 0.2) 100%);
    backdrop-filter: blur(10px);
}

/* ===== Flag Badge ===== */
.destination-flag {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
    position: relative;
}

.destination-card-large:hover .destination-flag {
    transform: scale(1.2) rotate(-5deg);
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ===== Title Styling ===== */
.destination-card-overlay h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 14px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    line-height: 1.2;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.destination-card-large:hover h3 {
    transform: translateY(-4px);
}

/* ===== Description Text ===== */
.destination-card-overlay p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.75;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.destination-card-large:hover p {
    transform: translateY(-2px);
}

/* ===== Stats Section ===== */
.destination-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.destination-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: rgba(82, 183, 136, 0.25);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.destination-stats span:hover {
    background: rgba(82, 183, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.2);
}

.destination-stats i { 
    color: #ffd700;
    transition: transform 0.3s ease;
}

.destination-stats span:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ===== Button Styling ===== */
.destination-card-overlay .btn {
    align-self: flex-start;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    padding: 16px 36px;
    box-shadow: 0 4px 16px rgba(82, 183, 136, 0.3);
    background: linear-gradient(135deg, #52b788 0%, #2d6a4f 100%);
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    position: relative;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-card-overlay .btn:hover {
    background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(45, 106, 79, 0.4);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.destination-card-overlay .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
}

.destination-card-overlay .btn i {
    transition: transform 0.3s ease;
}

.destination-card-overlay .btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .destinations-showcase-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .destination-card-large {
        min-height: 380px;
    }
    
    .destination-card-overlay h3 {
        font-size: 2rem;
    }
    
    .destination-card-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .destinations-showcase-grid { 
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .destination-card-large {
        min-height: 360px;
        aspect-ratio: 16/9;
    }
    
    .country-filter {
        gap: 12px;
        margin-bottom: 36px;
    }
    
    .country-filter .filter-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .destination-card-overlay {
        padding: 32px;
    }
    
    .destination-flag {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .destination-card-overlay h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .destination-card-overlay p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .destination-stats {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .destination-stats span {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .destination-card-overlay .btn {
        font-size: 0.95rem;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .destinations-showcase-grid {
        gap: 16px;
    }
    
    .destination-card-large {
        min-height: 300px;
        aspect-ratio: 1/1;
    }
    
    .country-filter {
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .country-filter .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .destination-card-overlay {
        padding: 24px;
        justify-content: center;
    }
    
    .destination-flag {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .destination-card-overlay h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .destination-card-overlay p {
        display: none;
    }
    
    .destination-stats {
        gap: 8px;
        margin-bottom: 12px;
        flex-direction: column;
    }
    
    .destination-stats span {
        font-size: 0.85rem;
        padding: 4px 10px;
    }
    
    .destination-card-overlay .btn {
        font-size: 0.9rem;
        padding: 10px 24px;
        align-self: stretch;
        justify-content: center;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section { padding: 100px 0; background: var(--light-bg); }

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .testimonials-slider { grid-template-columns: 1fr; }
}

/* ===== CTA Section Modern ===== */
.cta-section-modern {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(45, 106, 79, 0.85) 100%);
}

.cta-content-modern {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content-modern h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content-modern p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links a i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 8px;
    transition: var(--transition);
}

.footer-links a:hover i {
    margin-right: 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover { color: var(--white); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-section:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-section:first-child { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content { text-align: center; }

.loader-logo {
    width: 80px;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus { top: 0; }

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .hero-title-large { font-size: clamp(2rem, 5vw, 3.5rem); }
}

@media (max-width: 992px) {
    .section { padding: 80px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    .hero-trust-badges { flex-direction: column; gap: 12px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { min-height: 100vh; padding: 80px 0; }
    .hero-title-large { font-size: clamp(1.75rem, 4vw, 2.5rem); }
    .cta-buttons { flex-direction: column; }
}

/* ===== Print Styles ===== */
@media print {
    .header, .footer, .back-to-top, .btn { display: none !important; }
    body { font-size: 12pt; }
    .section { padding: 20px 0; }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Services Page Styles ===== */
.services-section { padding: 100px 0; background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 28px;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    text-align: left;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Additional Services */
.additional-services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.additional-services-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.additional-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.additional-service-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.additional-service-item:hover {
    background: var(--primary-pale);
}

.additional-service-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.additional-service-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.additional-service-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.additional-service-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-choose-features {
    display: grid;
    gap: 24px;
}

.why-choose-feature {
    display: flex;
    gap: 20px;
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon i {
    font-size: 1.35rem;
    color: var(--primary-color);
}

.why-choose-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.why-choose-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: var(--primary-color);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-suffix,
.stat-card:hover .stat-label {
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .additional-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .additional-services-wrapper { padding: 40px 24px; }
    .additional-services-grid { grid-template-columns: 1fr; }
    .why-choose-wrapper { grid-template-columns: 1fr; }
    .why-choose-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .why-choose-stats { grid-template-columns: 1fr; }
    .stat-card { padding: 24px; }
    .stat-number { font-size: 2rem; }
}

/* ===== Blog Modern Styles ===== */

/* Blog Hero */
.blog-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
}
.blog-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}
.blog-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.blog-hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 800px;
}
.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.blog-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    color: #fff;
}
.blog-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: #f0f0f0;
}
.blog-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.blog-hero-stats .stat-item { text-align: center; }
.blog-hero-stats .stat-number { display: block; font-size: 2rem; font-weight: 700; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.blog-hero-stats .stat-label { font-size: 13px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; color: #e0e0e0; }
.blog-hero-stats .stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.5); }
.blog-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.9;
    animation: fadeIn 1s ease 1s both;
}
.blog-hero-scroll span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.scroll-indicator { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.8); border-radius: 12px; margin: 0 auto; position: relative; }
.scroll-dot {
    width: 4px; height: 8px; background: #fff; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%, 100% { top: 6px; opacity: 1; } 50% { top: 20px; opacity: 0.5; } }

/* Filter Section */
.blog-filter-section {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.filter-wrapper { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.filter-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
    border: 2px solid var(--border-color); background: white; border-radius: 30px;
    font-size: 14px; font-weight: 500; color: var(--text-light); cursor: pointer; transition: all 0.3s ease;
}
.filter-pill:hover { border-color: var(--primary-color); color: var(--primary-color); }
.filter-pill.active { background: var(--primary-color); border-color: var(--primary-color); color: white; }
.filter-pill .pill-count { background: rgba(0,0,0,0.1); padding: 2px 8px; border-radius: 10px; font-size: 12px; }
.filter-pill.active .pill-count { background: rgba(255,255,255,0.2); }

/* Featured Section */
.blog-featured-section { padding: 60px 0; background: var(--lighter-bg); }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); transition: transform 0.3s ease; }
.featured-card:hover { transform: translateY(-5px); }
.featured-image { position: relative; min-height: 400px; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge {
    position: absolute; top: 20px; left: 20px;
    background: linear-gradient(135deg, #f4a261, #e76f51); color: white;
    padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.featured-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.featured-meta { display: flex; gap: 20px; margin-bottom: 16px; font-size: 14px; color: var(--text-muted); }
.featured-meta .meta-category { color: var(--primary-color); font-weight: 600; }
.featured-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.featured-title a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.featured-title a:hover { color: var(--primary-color); }
.featured-excerpt { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.featured-footer { display: flex; justify-content: space-between; align-items: center; }
.featured-author { display: flex; align-items: center; gap: 10px; }
.featured-author img { width: 36px; height: 36px; border-radius: 50%; }
.featured-author span { font-size: 14px; font-weight: 500; }
.read-more { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 600; text-decoration: none; transition: gap 0.3s; }
.read-more:hover { gap: 12px; }

/* Blog Grid Section */
.blog-grid-section { padding: 80px 0; background: white; }
.blog-grid-section .section-header { text-align: center; margin-bottom: 50px; }
.blog-grid-section .section-tag {
    display: inline-block; background: var(--primary-pale); color: var(--primary-color);
    padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.blog-grid-section .section-title { font-family: var(--font-display); font-size: 2.5rem; }

/* Blog Grid - Enhanced Modern Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
}

.blog-card .card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.12);
}

.blog-card .card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-card:hover .card-overlay {
    opacity: 1;
}

.blog-card .read-btn {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.blog-card:hover .read-btn {
    transform: translateY(0);
}

.blog-card .read-btn:hover {
    background: var(--primary-color);
    color: white;
}

.blog-card .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #888;
}

.blog-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card .card-meta i {
    color: var(--primary-color);
    font-size: 12px;
}

.blog-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card .card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

.blog-card .card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.blog-card .card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card .card-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pale);
}

.blog-card .card-author span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.blog-card .card-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pale), #e8f5e9);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-card .card-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}
.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--primary-color);
}
.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}
.empty-state p { color: var(--text-muted); }

/* Newsletter */
.blog-newsletter-modern {
    position: relative; padding: 100px 0; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}
.blog-newsletter-modern .newsletter-content { position: relative; text-align: center; color: white; max-width: 600px; margin: 0 auto; }
.blog-newsletter-modern .newsletter-icon {
    width: 80px; height: 80px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2rem;
}
.blog-newsletter-modern h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 16px; }
.blog-newsletter-modern p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.blog-newsletter-modern .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.blog-newsletter-modern .newsletter-form input { flex: 1; padding: 16px 24px; border: none; border-radius: 30px; font-size: 16px; }
.blog-newsletter-modern .newsletter-form button {
    padding: 16px 32px; background: var(--secondary-color); border: none; border-radius: 30px;
    color: white; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.blog-newsletter-modern .newsletter-form button:hover { background: var(--secondary-dark); transform: scale(1.05); }
.blog-newsletter-modern .newsletter-note { font-size: 13px; opacity: 0.7; }
.blog-newsletter-modern .newsletter-note i { margin-right: 6px; }

/* CTA Section */
.blog-cta-modern { padding: 80px 0; background: var(--lighter-bg); }
.blog-cta-modern .cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px; padding: 60px; text-align: center; color: white;
}
.blog-cta-modern h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.blog-cta-modern p { opacity: 0.9; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.blog-cta-modern .cta-buttons { display: flex; gap: 16px; justify-content: center; }
.blog-cta-modern .btn-primary { background: white; color: var(--primary-color); }
.blog-cta-modern .btn-primary:hover { background: var(--secondary-color); color: white; }
.blog-cta-modern .btn-outline { border-color: white; color: white; }
.blog-cta-modern .btn-outline:hover { background: white; color: var(--primary-color); }

/* Responsive */
@media (max-width: 992px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 300px; }
    .featured-content { padding: 30px; }
}
@media (max-width: 768px) {
    .blog-hero { min-height: 60vh; }
    .blog-hero-stats { gap: 20px; }
    .blog-hero-stats .stat-number { font-size: 1.5rem; }
    .filter-wrapper { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 10px; }
    .filter-pill { flex-shrink: 0; }
    .blog-newsletter-modern .newsletter-form { flex-direction: column; }
    .blog-cta-modern .cta-card { padding: 40px 24px; }
    .blog-cta-modern .cta-buttons { flex-direction: column; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i { color: var(--primary-color); }

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-card-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-card-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.blog-card-read-more:hover {
    gap: 8px;
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===== Blog Filter Styles ===== */
.blog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.2);
}

.filter-count {
    padding: 2px 8px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 12px;
}

/* ===== Featured Post Styles ===== */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta-top span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-top i {
    color: var(--primary-color);
}

.blog-category {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.blog-featured-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-featured-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-featured-title a:hover {
    color: var(--primary-color);
}

.blog-featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-stats i {
    color: var(--primary-color);
}

/* ===== Blog Recent Section ===== */
.blog-recent-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.blog-recent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-recent-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-recent-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-recent-card img {
    width: 100px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.blog-recent-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-recent-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-recent-content h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-recent-content h4 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-recent-content h4 a:hover {
    color: var(--primary-color);
}

.read-more-link {
    margin-top: auto;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--primary-dark);
}

/* ===== Blog Newsletter Styles ===== */
.blog-newsletter {
    position: relative;
    margin-top: 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-newsletter-bg {
    position: absolute;
    inset: 0;
}

.blog-newsletter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-newsletter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.9) 0%, rgba(27, 67, 50, 0.95) 100%);
}

.blog-newsletter-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    text-align: center;
    color: var(--white);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 2rem;
}

.blog-newsletter-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.blog-newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.blog-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.blog-newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
}

.blog-newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-note {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
}

.newsletter-note i {
    margin-right: 6px;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.empty-state p {
    color: var(--text-muted);
}

/* ===== Responsive Blog Styles ===== */
@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-content {
        padding: 40px;
    }
    
    .blog-featured-image img {
        min-height: 350px;
    }
    
    .blog-recent-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-newsletter-content {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .blog-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .blog-featured-title {
        font-size: 1.5rem;
    }
    
    .blog-featured-content {
        padding: 28px;
    }
    
    .blog-featured-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .blog-newsletter-form {
        flex-direction: column;
    }
    
    .blog-newsletter-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== About Page Modern Styles ===== */

/* About Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: floatStats 15s ease-in-out infinite;
}

@keyframes floatStats {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(2%, 2%); }
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-stat-card {
    text-align: center;
    color: var(--white);
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #f4a261, #e76f51);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-stat-card:hover::before {
    transform: scaleX(1);
}

.about-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-stat-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-stat-card:hover .about-stat-icon::after {
    opacity: 1;
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Glowing orbs for stats section */
.about-stats-section .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite;
}

.about-stats-section .orb-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -100px;
    left: 10%;
}

.about-stats-section .orb-2 {
    width: 200px;
    height: 200px;
    background: #e76f51;
    bottom: -50px;
    right: 5%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-story-content {
    max-width: 560px;
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-story-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-story-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-story-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-story-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story-image-main:hover img {
    transform: scale(1.05);
}

.about-story-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-story-image-overlay .experience-years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.about-story-image-overlay .experience-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-story-image-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-story-image-grid img {
    width: 100%;
    height: 238px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.about-story-image-grid img:hover {
    transform: translateY(-8px);
}

/* About Mission Section */
.about-mission-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-mission-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-top: 24px;
}

.about-mission-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-mission-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
}

.about-mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-mission-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* About Team Section */
.about-team-section {
    padding: 100px 0;
    background: var(--white);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    position: relative;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-team-card:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 106, 79, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.about-team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-social-links {
    display: flex;
    gap: 16px;
}

.team-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.team-social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.team-card-content {
    padding: 28px;
    text-align: center;
}

.team-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.team-card-role {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Responsive About Styles */
@media (max-width: 1200px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-story-content {
        max-width: 100%;
    }
    
    .about-story-images {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat-card {
        padding: 32px 20px;
    }
    
    .about-stat-number {
        font-size: 2.8rem;
    }
    
    .about-stat-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .about-mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats-section {
        padding: 48px 0;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
    
    .about-stat-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-stat-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .about-stats-section .orb {
        display: none;
    }
    
    .about-story-section,
    .about-mission-section,
    .about-team-section {
        padding: 60px 0;
    }
    
    .about-story-images {
        grid-template-columns: 1fr;
    }
    
    .about-story-image-main img {
        height: 350px;
    }
    
    .about-mission-cards {
        grid-template-columns: 1fr;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== 404 Page Styles ===== */
.error-page {
    text-align: center;
    max-width: 700px;
}

.error-icon {
    font-size: 8rem;
    color: var(--primary-lighter);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.error-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.error-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.error-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-search {
    max-width: 400px;
    margin: 40px auto 0;
}

.error-search form {
    display: flex;
    gap: 12px;
}

.error-search input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.error-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 576px) {
    .error-actions { flex-direction: column; }
    .error-actions .btn { width: 100%; }
    .error-search form { flex-direction: column; }
}
