/* ============================================
   Khidmah Travels & Consultation
   Main Frontend Stylesheet
   Version: 2.0.0 — Green Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1a8a4d;
    --primary-dark: #14703d;
    --primary-light: #eef8f0;
    --primary-foreground: #ffffff;
    --accent: #1fb956;
    --accent-dark: #17a34a;
    --foreground: #141414;
    --muted-foreground: #666666;
    --muted: #f2f7f4;
    --border: #d4ddd6;
    --card: #ffffff;
    --white: #ffffff;
    --destructive: #dc2626;
    --background: #ffffff;
    --gradient: linear-gradient(135deg, #1a8a4d, #1fb956);
    --shadow-card: 0 4px 24px -4px rgba(26,138,77,0.1);
    --shadow-hover: 0 12px 40px -8px rgba(26,138,77,0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Epilogue', sans-serif;
    --container-max: 1200px;
    --section-py: 80px;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--foreground);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 700; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

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

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

ul, ol {
    list-style: none;
}

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

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.section-py {
    padding: var(--section-py) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .badge-pill {
    display: inline-block;
    padding: 6px 18px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.section-title h2 {
    margin-bottom: 14px;
    color: var(--foreground);
}

.section-title p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-muted {
    background-color: var(--muted) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: #ffffff !important;
}

.text-muted {
    color: var(--muted-foreground) !important;
}

.text-foreground {
    color: var(--foreground) !important;
}

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-inline-block { display: inline-block; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

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

.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.p-0 { padding: 0 !important; }

.position-relative { position: relative; }

.overflow-hidden { overflow: hidden; }

.rounded-circle { border-radius: 50%; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
    line-height: 1.5;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.97);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(26,138,77,0.3);
    transform: translateY(-1px);
    color: var(--white);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26,138,77,0.3);
}

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

.btn-ghost:hover {
    background: var(--primary-light);
}

.btn-gradient {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(26,138,77,0.35);
    transform: translateY(-1px);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    color: var(--primary-dark);
}

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

.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
    transform: translateY(-1px);
}

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

.btn-destructive:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-1px);
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 44px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition);
    padding: 0;
    height: 75px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-menu .nav-item {
    position: relative;
}

.navbar-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--foreground);
    transition: var(--transition);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}

.navbar-menu .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.navbar-menu .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.navbar-menu .nav-link .arrow {
    font-size: 0.65rem;
    transition: transform var(--transition);
}

.navbar-menu .nav-item:hover > .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.navbar-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1001;
    border: 1px solid var(--border);
}

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

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--foreground);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 400;
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown a i {
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.7;
    width: 18px;
    text-align: center;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher-wrap {
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--foreground);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-switcher-btn .fa-globe {
    font-size: 0.85rem;
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1060;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--muted);
    color: var(--primary);
}

.lang-option.active {
    background: var(--primary-light);
    color: var(--primary);
}

.lang-option .lang-flag {
    font-size: 1.1rem;
}

.lang-option .lang-check {
    margin-left: auto;
    font-size: 0.7rem;
    opacity: 0;
    color: var(--primary);
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1050;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 1040;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--foreground);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--destructive);
    color: var(--white);
}

.mobile-menu-body {
    padding: 20px 24px;
}

.mobile-menu-body .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu-body .nav-link:hover,
.mobile-menu-body .nav-link.active {
    color: var(--primary);
}

.mobile-menu-body .mobile-submenu {
    display: none;
    padding-left: 16px;
}

.mobile-menu-body .mobile-submenu a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu-body .mobile-submenu a:hover {
    color: var(--primary);
}

.mobile-menu-body .mobile-submenu.open {
    display: block;
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.mobile-menu-footer .btn {
    width: 100%;
    margin-bottom: 12px;
}

.mobile-menu-footer .mobile-lang {
    margin-top: 12px;
    position: relative;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-lang-btn .fa-globe {
    color: var(--primary);
}

.mobile-lang-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1060;
}

.mobile-lang-dropdown.show {
    opacity: 1;
    visibility: visible;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-lang-option:hover {
    background: var(--muted);
    color: var(--primary);
}

.mobile-lang-option.active {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-lang-option .fa-check {
    margin-left: auto;
    font-size: 0.7rem;
    opacity: 0;
    color: var(--primary);
}

.mobile-lang-option.active .fa-check {
    opacity: 1;
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0,0,0,0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.12;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-content h1 span {
    display: inline;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

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

.hero-stat .counter-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

/* Hero Service Slider */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slider-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}
.hero-slide-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.06;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}
.hero-slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.hero-slide-icon-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: heroPulse 4s ease-in-out infinite;
}
.hero-slide-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* Full-bleed slider image */
.hero-slide-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-slide-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 138, 77, 0.9), transparent);
    z-index: 2;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 16px;
}
.hero-slider-arrow {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}
.hero-slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.hero-slider-dot {
    border: none;
    background: rgba(255,255,255,0.3);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.hero-slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #fff;
}
.hero-slider-dot-label {
    display: none;
}
.hero-slider-dot:hover .hero-slider-dot-label {
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-bottom: 8px;
    pointer-events: none;
}

/* ---------- Features Bar ---------- */
.features-bar {
    position: relative;
    z-index: 3;
    margin-top: -40px;
}

.features-bar .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 36px 40px;
    border: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-light);
}

.feature-item .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.feature-item:hover .icon {
    background: var(--gradient);
    color: var(--white);
}

.feature-item h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.78rem;
    margin: 0;
    color: var(--muted-foreground);
}

/* ---------- Cards (Base) ---------- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,138,77,0.15);
}

/* ---------- Service Cards ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,138,77,0.15);
}

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

.service-card .icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all var(--transition);
}

.service-card:hover .icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.08);
}

.service-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: var(--font-heading);
}

.service-card .learn-more:hover {
    gap: 10px;
}

/* ---------- Package Cards ---------- */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,138,77,0.15);
}

.package-card .package-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.package-card .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.06);
}

.package-card .package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card .package-badge.hot {
    background: var(--destructive);
}

.package-card .package-badge.new {
    background: var(--accent);
}

.package-card .wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.package-card .wishlist-btn:hover,
.package-card .wishlist-btn.active {
    background: var(--destructive);
    color: var(--white);
}

.package-card .package-content {
    padding: 22px;
}

.package-card .package-location {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card .package-title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--foreground);
}

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

.package-card .package-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.package-card .package-meta span {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card .package-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}

.package-card .package-rating .stars {
    color: #f59e0b;
    font-size: 0.82rem;
}

.package-card .package-rating span {
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

.package-card .package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.package-card .package-price {
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

.package-card .package-price .current-price {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.package-card .package-price .original-price {
    font-size: 0.82rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-left: 8px;
}

.package-card .package-price .price-note {
    font-size: 0.7rem;
    color: var(--muted-foreground);
}

.package-card.featured {
    border: 2px solid var(--primary);
}

/* ---------- Country/Visa Cards ---------- */
.visa-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    cursor: pointer;
}

.visa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,138,77,0.2);
}

.visa-card .country-flag {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.visa-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.visa-card .processing-time {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 8px;
}

.visa-card .fee-info {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.country-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.country-card:hover img {
    transform: scale(1.08);
}

.country-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.country-card .country-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
}

.country-card .country-info h4 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.country-card .country-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    margin: 0;
}

.country-card .country-info .packages-count {
    color: var(--accent);
    font-weight: 600;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.testimonial-card .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--foreground);
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-card .rating {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.testimonial-card .author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-card .author-name {
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.92rem;
    margin-bottom: 1px;
}

.testimonial-card .author-designation {
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ---------- Pricing Table ---------- */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: scale(1.04);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-5px);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 22px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.pricing-card .price {
    margin-bottom: 28px;
}

.pricing-card .price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--foreground);
    font-family: var(--font-heading);
    line-height: 1;
}

.pricing-card .price .currency {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    vertical-align: top;
}

.pricing-card .price .period {
    font-size: 0.88rem;
    color: var(--muted-foreground);
}

.pricing-card .price .original-price {
    display: block;
    font-size: 1rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-top: 6px;
}

.pricing-card .features-list {
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.pricing-card .features-list li .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card .features-list li .cross {
    color: var(--muted-foreground);
    opacity: 0.4;
}

/* ---------- Why Choose Us ---------- */
.why-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.why-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: rgba(26,138,77,0.15);
}

.why-card .icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .icon-box {
    background: var(--gradient);
    color: var(--white);
}

.why-card h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.why-card p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* ---------- Team Cards ---------- */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.team-card .team-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    gap: 10px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.82rem;
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.team-card .team-info {
    padding: 20px;
}

.team-card .team-info h4 {
    margin-bottom: 4px;
    font-size: 1.02rem;
}

.team-card .team-info p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--primary);
    font-weight: 500;
}

/* ---------- Blog Cards ---------- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.blog-card .blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-card .blog-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.2;
}

.blog-card .blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.blog-card .blog-date .month {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.blog-card .blog-content {
    padding: 22px;
}

.blog-card .blog-category {
    display: inline-block;
    padding: 3px 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card .blog-title {
    font-size: 1.02rem;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.blog-card .blog-excerpt {
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.blog-card .blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

.blog-card .blog-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card .blog-read-more {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Blog Single */
.blog-single .blog-header {
    margin-bottom: 28px;
}

.blog-single .blog-header img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.blog-single .blog-content {
    font-size: 1rem;
    line-height: 1.9;
}

.blog-single .blog-content h2 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.blog-single .blog-content h3 {
    margin-top: 22px;
    margin-bottom: 10px;
}

.blog-single .blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 22px;
    background: var(--primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
    color: var(--foreground);
}

.blog-single .blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blog-single .blog-content table th,
.blog-single .blog-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}

.blog-single .blog-content table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.blog-single .blog-content table tr:nth-child(even) {
    background: var(--primary-light);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.blog-sidebar .widget-title {
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    font-weight: 700;
}

.blog-sidebar .search-form {
    display: flex;
    gap: 8px;
}

.blog-sidebar .search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.blog-sidebar .search-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,138,77,0.1);
}

.blog-sidebar .search-form button {
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-sidebar .search-form button:hover {
    background: var(--primary-dark);
}

.blog-sidebar .category-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.blog-sidebar .category-list li a:hover {
    color: var(--primary);
}

.blog-sidebar .category-list li .count {
    background: var(--primary-light);
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
}

.blog-sidebar .recent-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.blog-sidebar .recent-post:last-child {
    border-bottom: none;
}

.blog-sidebar .recent-post img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.blog-sidebar .recent-post h5 {
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.blog-sidebar .recent-post h5 a:hover {
    color: var(--primary);
}

.blog-sidebar .recent-post .date {
    font-size: 0.72rem;
    color: var(--muted-foreground);
}

.blog-sidebar .tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-sidebar .tags-cloud a {
    padding: 5px 14px;
    background: var(--muted);
    border-radius: 9999px;
    font-size: 0.78rem;
    color: var(--muted-foreground);
    transition: var(--transition);
    font-weight: 500;
}

.blog-sidebar .tags-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Tables ---------- */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table thead th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-heading);
}

.data-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
}

.data-table tbody tr:nth-child(even) {
    background: var(--primary-light);
}

.data-table tbody tr:hover {
    background: rgba(26,138,77,0.06);
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--foreground);
    font-family: var(--font-body);
}

.form-group label .required {
    color: var(--destructive);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--foreground);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,138,77,0.1);
}

.form-control::placeholder {
    color: #999;
}

.form-control.is-invalid {
    border-color: var(--destructive);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.contact-form .form-info {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.contact-form .form-info .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-form .form-info h5 {
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.contact-form .form-info p {
    font-size: 0.82rem;
    margin: 0;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    transition: var(--transition);
    gap: 14px;
    font-size: 0.95rem;
}

.faq-item .faq-question:hover {
    color: var(--primary);
}

.faq-item .faq-question .icon {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-item .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ---------- Page Banner / Breadcrumb ---------- */
.page-banner {
    background: var(--gradient);
    padding: 130px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

.page-banner h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

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

.breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: var(--gradient);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    color: var(--white);
}

.stat-item .counter-number {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0d2818;
    color: var(--white);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.15;
}

.footer-logo span {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer-widget .footer-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    align-items: flex-start;
}

.footer-contact li i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(31,185,86,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 1px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.6);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
    margin-top: 40px;
}

.footer-newsletter .newsletter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.footer-newsletter .newsletter-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.88rem;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    border: none;
    box-shadow: 0 4px 16px rgba(26,138,77,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,138,77,0.4);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    color: var(--white);
}

/* ---------- Alert/Flash Messages ---------- */
.flash-message {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.flash-message .flash-icon {
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.flash-message .flash-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: var(--transition);
    padding: 4px;
    line-height: 1;
}

.flash-message .flash-close:hover {
    opacity: 1;
}

.flash-success {
    background: rgba(26,138,77,0.1);
    color: var(--primary);
    border: 1px solid rgba(26,138,77,0.2);
}

.flash-success .flash-close {
    color: var(--primary);
}

.flash-error {
    background: rgba(220,38,38,0.1);
    color: var(--destructive);
    border: 1px solid rgba(220,38,38,0.2);
}

.flash-error .flash-close {
    color: var(--destructive);
}

.flash-warning {
    background: rgba(245,158,11,0.1);
    color: #b45309;
    border: 1px solid rgba(245,158,11,0.25);
}

.flash-warning .flash-close {
    color: #b45309;
}

.flash-info {
    background: rgba(59,130,246,0.1);
    color: #1d4ed8;
    border: 1px solid rgba(59,130,246,0.2);
}

.flash-info .flash-close {
    color: #1d4ed8;
}

/* Bootstrap alert fallback */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(26,138,77,0.1);
    color: var(--primary);
    border: 1px solid rgba(26,138,77,0.2);
}

.alert-danger,
.alert-error {
    background: rgba(220,38,38,0.1);
    color: var(--destructive);
    border: 1px solid rgba(220,38,38,0.2);
}

.alert-warning {
    background: rgba(245,158,11,0.1);
    color: #b45309;
    border: 1px solid rgba(245,158,11,0.25);
}

.alert-info {
    background: rgba(59,130,246,0.1);
    color: #1d4ed8;
    border: 1px solid rgba(59,130,246,0.2);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(26,138,77,0.4); }
    70% { box-shadow: 0 0 0 14px rgba(26,138,77,0); }
    100% { box-shadow: 0 0 0 0 rgba(26,138,77,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); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Loading Spinner */
.spinner {
    width: 38px;
    height: 38px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.loader-content .logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ---------- Misc ---------- */
.divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-accent {
    background: rgba(31,185,86,0.1);
    color: var(--accent-dark);
}

.badge-destructive {
    background: rgba(220,38,38,0.1);
    color: var(--destructive);
}

.badge-muted {
    background: var(--muted);
    color: var(--muted-foreground);
}

.badge-success {
    background: rgba(26,138,77,0.1);
    color: var(--primary);
}

/* Tabs */
.nav-tabs-custom {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.nav-tabs-custom .nav-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.88rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-heading);
}

.nav-tabs-custom .nav-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-tabs-custom .nav-tab:hover {
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Accordion (country/visa pages) */
.accordion-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    transition: var(--transition);
    gap: 14px;
}

.accordion-header:hover {
    background: var(--primary-light);
}

.accordion-header .expand-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
    min-width: 20px;
    text-align: center;
}

.accordion-item.active .accordion-header .expand-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
}

.accordion-body-content {
    padding: 0 20px 20px;
}

/* Success / Thank You page */
.success-page {
    text-align: center;
    padding: 60px 20px;
}

.success-page .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.success-page h2 {
    margin-bottom: 14px;
}

.success-page p {
    max-width: 500px;
    margin: 0 auto;
}

/* Overlay for form submission */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--radius-lg);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--foreground);
    color: var(--white);
    padding: 16px 0;
    z-index: 1100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-consent p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.88rem;
}

/* Grid utilities for pages */
.services-grid,
.packages-grid,
.countries-grid,
.pricing-grid,
.testimonials-grid,
.team-grid,
.blog-grid {
    display: grid;
    gap: 24px;
}

.services-grid { grid-template-columns: repeat(3, 1fr); }
.packages-grid { grid-template-columns: repeat(3, 1fr); }
.countries-grid { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid { grid-template-columns: repeat(3, 1fr); }

/* Extra / Special Services */
.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.extra-service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.extra-service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(26, 138, 77, 0.1);
    transform: translateY(-4px);
}

.extra-service-img {
    margin: -28px -28px 20px;
    height: 140px;
    overflow: hidden;
}

.extra-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extra-service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.extra-service-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.extra-service-card p {
    font-size: 0.88rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 16px;
}

.extra-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.extra-service-link:hover {
    gap: 10px;
}

.extra-service-link i {
    font-size: 0.75rem;
}

/* RTL Support */
[dir="rtl"] .navbar-brand {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .about-list li {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-links li a {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-contact li {
    flex-direction: row-reverse;
}

[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

[dir="rtl"] .brand-text {
    text-align: right;
}
