/* ========================================
   QIBLA INTERNATIONAL TRAVEL - PREMIUM UI
   Modern, Clean & Professional Design
   ======================================== */

:root {
    /* Premium Blue Color Palette - FLAT */
    --primary-color: #0A4DA0;
    --primary-dark: #063670;
    --primary-light: #1A73E8;
    --accent-color: #3D8EE1;
    --accent-light: #F8FAFC;
    /* Flat alternative */
    --secondary-color: #00B4D8;
    --gold-accent: #D4A853;

    /* Neutral Colors - High Contrast */
    --text-dark: #1A202C;
    --text-body: #2D3748;
    --text-muted: #4A5568;
    --text-light: #FFFFFF;

    /* Backgrounds - FLAT SOLID */
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-soft: #EDF2F7;
    --bg-solid: #FFFFFF;
    --bg-dark-flat: #0A4DA0;

    /* Glassmorphism REMOVED - Using SOLID */
    --glass-bg: #FFFFFF;
    --glass-border: #E2E8F0;

    /* Shadows REMOVED */
    --shadow-xs: none;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
    --shadow-glow: none;
    --shadow-card: none;

    /* Borders */
    --border-light: #E2E8F0;
    --border-soft: #CBD5E0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a,
.text-white strong {
    color: #FFFFFF !important;
}

/* ========================================
   BUTTON STYLES - ALL VARIANTS
   ======================================== */

/* Base Button */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Primary Button — Blue background, white text */
.btn-primary,
.btn.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* Outline Button — Transparent background, blue border/text */
.btn-outline,
.btn.btn-outline {
    background-color: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-outline:hover,
.btn.btn-outline:hover {
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* Outline White Button — for dark backgrounds */
.btn-outline-white,
.btn.btn-outline-white {
    background-color: transparent;
    color: #FFFFFF !important;
    border-color: #FFFFFF;
}

.btn-outline-white:hover,
.btn.btn-outline-white:hover {
    background-color: #FFFFFF;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Light Large Button — White background */
.btn-light-large,
.btn.btn-light-large {
    background-color: #FFFFFF;
    color: var(--primary-color) !important;
    border-color: #FFFFFF;
    padding: 16px 45px;
    font-size: 1.05rem;
}

.btn-light-large:hover,
.btn.btn-light-large:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ========================================
   PACKAGE CARD BUTTONS
   ======================================== */
.btn-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
}

/* Package Solid Button — Blue bg, white text */
.btn-package--solid {
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    border-color: var(--primary-color);
}

.btn-package--solid:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* Package Outline Button — transparent bg, blue border */
.btn-package--outline {
    background-color: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-package--outline:hover {
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ========================================
   FORM SUBMIT BUTTON
   ======================================== */
.submit-btn-home {
    display: inline-block;
    width: 100%;
    padding: 16px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.submit-btn-home:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ========================================
   THANK YOU PAGE BUTTONS
   ======================================== */
.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-home:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    background-color: #25D366;
    color: #FFFFFF !important;
    border: 2px solid #25D366;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ========================================
   PACKAGE FILTER BAR - Responsive
   ======================================== */
.package-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}

.package-filter-bar .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .package-filter-bar {
        gap: 10px;
        justify-content: center;
    }

    .package-filter-bar .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .package-filter-bar {
        gap: 8px;
        justify-content: center;
    }

    .package-filter-bar .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 30px;
    }
}

@media (max-width: 360px) {
    .package-filter-bar {
        gap: 6px;
    }

    .package-filter-bar .btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
}

/* ========================================
   ACCESSIBILITY - ADA COMPLIANCE
   ======================================== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Focus visible styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-body);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* ========================================
   BUTTONS - Premium Modern Style
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.btn-light-large {
    background: white;
    color: var(--primary-color);
    padding: 18px 48px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-lg);
}

.btn-light-large:hover {
    background: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   TOP BAR - Elegant Contact Info
   ======================================== */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 25px;
}

.top-bar-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.top-bar-info a i {
    color: #FFFFFF;
}

.top-bar-info a:hover {
    color: white;
    opacity: 0.8;
}

.top-bar-social {
    display: flex;
    gap: 18px;
}

.top-bar-social a {
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.9;
}

.top-bar-social a:hover {
    color: white;
    opacity: 1;
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION - Clean & Modern
   ======================================== */
.navbar {
    position: fixed;
    top: 45px;
    /* Height of top bar */
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    padding: 10px 0;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 4px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--accent-light);
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    transform: translateY(-120%);
    transition: var(--transition-slow);
    z-index: 999;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--accent-light);
    color: var(--primary-color);
}

/* ========================================
   HERO SLIDER - Premium Look
   ======================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 77, 160, 0.6);
    /* Solid flat overlay */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
}

.slide h1 {
    color: white;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide.active h1,
.slide.active p,
.slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 32px;
}

.next-btn {
    right: 32px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.1);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: var(--primary-dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 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.03'%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;
}

.page-header .hero-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}

.section-subtitle::before {
    left: -52px;
}

.section-subtitle::after {
    right: -52px;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-desc {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Light Section Variants */
.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title-light {
    color: white;
    margin-bottom: 16px;
}

.section-desc-light {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto;
}

.section-title-alt {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Background Helpers */
.bg-white {
    background: var(--bg-white);
}

.bg-light {
    background: var(--bg-light);
}

.bg-soft {
    background: var(--bg-soft);
}

.bg-off-white {
    background: var(--bg-light);
}

.bg-gradient {
    background: var(--bg-gradient);
}

.bg-soft-gradient {
    background: var(--bg-gradient);
}

.bg-light-gradient {
    background: var(--bg-light);
}

.bg-primary {
    background: var(--primary-color);
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

/* ========================================
   CARDS - Modern Clean Design
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 32px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}


.card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-light);
    position: relative;
}


.card:hover {
    border-color: var(--primary-color);
}

.card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* No animations for flat UI */

.card-content {
    padding: 28px;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Feature Cards */
.card-feature {
    text-align: center;
    padding: 48px 32px;
    background: white;
}

.card-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: block;
    transition: var(--transition);
}

.card-feature:hover i {
    color: var(--accent-color);
}

.card-feature .card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-feature .card-text {
    font-size: 0.95rem;
}

/* ========================================
   CEO SECTION
   ======================================== */
.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 64px;
    align-items: center;
}

.ceo-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 3px solid var(--border-light);
}

.ceo-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ceo-decoration-1 {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100px;
    height: 100px;
    background: var(--accent-light);
    border-radius: 50%;
    z-index: -1;
}

.ceo-decoration-2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.ceo-message-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    border-left: 6px solid var(--primary-color);
}

.ceo-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 20px;
    position: relative;
}

.ceo-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.ceo-signature {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    margin-top: 24px;
}

.ceo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.ceo-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ceo-company {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ceo-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding: 12px;
    border: 2px solid rgba(6, 54, 112, 0.08);
    /* Outer subtle contour */
    border-radius: var(--radius-xl);
}

.ceo-stat-item {
    text-align: center;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 2px solid #EDF2F7;
    /* Main item contour */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ceo-stat-item:hover {
    border-color: #063670;
    /* Brand color contour on hover */
    transform: translateY(-5px);
}

.ceo-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.ceo-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-icon-card {
    background: var(--primary-dark);
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-icon-card:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.service-icon-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.service-icon-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.services-extra-info {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.info-primary {
    font-size: 1.05rem;
    color: white;
    margin-bottom: 12px;
}

.info-primary i {
    color: #4ADE80;
    margin-right: 10px;
}

.info-secondary {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FORMS - Clean Modern Design
   ======================================== */
.contact-form-home {
    background: white;
    padding: 48px;
    border-radius: var(--radius-2xl);
    border: 2px solid var(--border-light);
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group-home {
    margin-bottom: 24px;
}

.form-group-home label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group-home input,
.form-group-home select,
.form-group-home textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group-home input:focus,
.form-group-home select:focus,
.form-group-home textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-group-home input::placeholder,
.form-group-home textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn-home {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

.direct-call-text {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.direct-call-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.direct-call-text a:hover {
    text-decoration: underline;
}

/* ========================================
   FLEX LAYOUTS
   ======================================== */
.flex-split {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.flex-split>* {
    flex: 1;
    min-width: 300px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-track {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--radius-2xl);
    padding: 48px;
    border: 2px solid var(--border-light);
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-stars {
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--border-soft);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ========================================
   SPECIAL OFFERS
   ======================================== */
.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.offer-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.offer-card.featured {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-dark);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--bg-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.offer-card.featured .offer-icon {
    background: rgba(255, 255, 255, 0.2);
}

.offer-card.featured .offer-icon i {
    color: white;
}

.offer-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.offer-card.featured h3 {
    color: white;
}

.offer-discount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.offer-card.featured .offer-discount {
    color: var(--gold-accent);
}

.offer-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.offer-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-full {
    background: var(--primary-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-full::before {
    content: '';
    position: absolute;
    inset: 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");
}

.cta-full .container {
    position: relative;
    z-index: 2;
}

.cta-full h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-full p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ========================================
   BOOKING PAGE
   ======================================== */
.booking-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ========================================
   FOOTER - Clean Modern
   ======================================== */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.footer-col p {
    color: #ffffff;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links li {
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
}

.copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

.copyright p {
    color: #ffffff;
}



/* ========================================
   RESPONSIVE DESIGN - COMPREHENSIVE
   ======================================== */

/* Extra Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .services-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ceo-grid {
        gap: 48px;
    }

    .special-offers-grid {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-slider {
        height: 90vh;
        min-height: 650px;
    }

    .slide h1 {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .ceo-message-card {
        padding: 32px;
    }

    .ceo-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .services-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .service-icon-card {
        padding: 24px 16px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .service-icon-wrapper i {
        font-size: 1.5rem;
    }

    .service-icon-card h3 {
        font-size: 0.9rem;
    }

    .service-icon-card p {
        font-size: 0.8rem;
        display: none;
    }

    .special-offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-slider {
        height: 80vh;
        min-height: 550px;
    }

    .slide h1 {
        font-size: 2.5rem;
    }

    .slide p {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .testimonials-carousel {
        padding: 0 50px;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        padding: 36px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
        padding: 12px 0;
    }

    .logo-img {
        height: 45px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 140px 0 70px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.05rem;
    }

    .cards-grid {
        gap: 24px;
    }

    .card-feature {
        padding: 36px 24px;
    }

    .contact-form-home {
        padding: 36px;
    }

    .grid-2-col {
        gap: 20px;
    }

    .counter-grid {
        gap: 20px;
    }

    .counter-card {
        padding: 30px 20px;
    }

    .counter-number-wrapper {
        font-size: 2.5rem;
    }

    .package-card__image {
        height: 200px;
    }

    .faq-container {
        max-width: 100%;
    }
}

/* Large Mobile / Small Tablet (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        top: 70px;
        padding: 20px 16px;
    }

    .mobile-menu a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ceo-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ceo-stat-item {
        padding: 24px 20px;
    }

    .ceo-stat-number {
        font-size: 2rem;
    }

    .services-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-icon-card {
        padding: 20px 12px;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .service-icon-wrapper i {
        font-size: 1.25rem;
    }

    .service-icon-card h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .services-extra-info {
        padding: 24px 16px;
        margin-top: 32px;
    }

    .info-primary {
        font-size: 0.95rem;
    }

    .info-secondary {
        font-size: 0.85rem;
    }

    .special-offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-form-home {
        padding: 28px 20px;
    }

    .ceo-message-card {
        padding: 24px 20px;
    }

    .ceo-quote {
        font-size: 1rem;
    }

    .ceo-text {
        font-size: 0.9rem;
    }

    .ceo-name {
        font-size: 1.25rem;
    }

    .hero-slider {
        height: 75vh;
        min-height: 500px;
        max-height: 700px;
    }

    .slide h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .slide h1 br {
        display: none;
    }

    .slide p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .slide .hero-buttons {
        gap: 12px;
    }

    .slide .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .prev-btn {
        left: 12px;
    }

    .next-btn {
        right: 12px;
    }

    .slider-dots {
        bottom: 24px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .cta-full {
        padding: 60px 0;
    }

    .cta-full h2 {
        font-size: 1.75rem;
    }

    .cta-full p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }

    .testimonials-carousel {
        padding: 0;
    }

    .testimonial-btn {
        display: none;
    }

    .testimonial-track {
        min-height: 400px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .testimonial-author img {
        width: 48px;
        height: 48px;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }

    .flex-split {
        flex-direction: column;
        gap: 32px;
    }

    .flex-split>* {
        min-width: 100%;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .card-feature {
        padding: 32px 24px;
    }

    .card-feature i {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .counter-card {
        padding: 28px 24px;
    }

    .counter-number-wrapper {
        font-size: 2.25rem;
    }

    .counter-label {
        font-size: 0.9rem;
    }

    .package-card__image {
        height: 180px;
    }

    .package-card__content {
        padding: 0 20px 20px;
    }

    .package-card__title {
        font-size: 1rem;
    }

    .package-row-title {
        font-size: 1.4rem;
        margin: 40px 0 20px;
    }

    .package-details-section {
        padding: 24px 16px;
    }

    .package-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-question {
        padding: 18px 16px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .offer-card {
        padding: 32px 24px;
    }

    .offer-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .offer-card h3 {
        font-size: 1.2rem;
    }

    .form-group-home label {
        font-size: 0.85rem;
    }

    .form-group-home input,
    .form-group-home select,
    .form-group-home textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .submit-btn-home {
        padding: 14px;
    }

    .intro-section h4 {
        font-size: 1.5rem !important;
    }

    .intro-section p {
        font-size: 1rem !important;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 12px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .services-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-icon-card {
        padding: 16px 10px;
    }

    .service-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .service-icon-wrapper i {
        font-size: 1.1rem;
    }

    .service-icon-card h3 {
        font-size: 0.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-light-large {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-slider {
        height: 70vh;
        min-height: 450px;
        max-height: 600px;
    }

    .slide h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .slide p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .slide .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }

    .slide .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .slider-btn {
        display: none;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .testimonial-track {
        min-height: 450px;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-stars i {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .testimonial-dots {
        margin-top: 24px;
    }

    .ceo-stat-number {
        font-size: 1.75rem;
    }

    .ceo-stat-label {
        font-size: 0.75rem;
    }

    .ceo-stat-item {
        padding: 20px 16px;
    }

    .offer-card {
        padding: 28px 20px;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
    }

    .offer-icon i {
        font-size: 1.5rem;
    }

    .offer-card h3 {
        font-size: 1.1rem;
    }

    .offer-discount {
        font-size: 1.1rem;
    }

    .offer-card p {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 110px 0 40px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .contact-form-home {
        padding: 24px 16px;
    }

    .form-group-home {
        margin-bottom: 16px;
    }

    .form-group-home label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .form-group-home input,
    .form-group-home select,
    .form-group-home textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-btn-home {
        padding: 12px;
        font-size: 0.9rem;
    }

    .direct-call-text {
        font-size: 0.8rem;
    }

    .card-feature {
        padding: 28px 20px;
    }

    .card-feature i {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .counter-card {
        padding: 24px 20px;
    }

    .counter-number-wrapper {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .ceo-image-container {
        max-width: 280px;
    }

    .ceo-message-card {
        padding: 20px 16px;
        border-left-width: 4px;
    }

    .ceo-quote {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .ceo-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .ceo-signature {
        padding-top: 16px;
        margin-top: 16px;
    }

    .ceo-name {
        font-size: 1.1rem;
    }

    .ceo-role,
    .ceo-company {
        font-size: 0.8rem;
    }

    .package-card__image {
        height: 160px;
    }

    .package-card__content {
        padding: 0 16px 16px;
    }

    .package-card__title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .package-card__info-row {
        margin-bottom: 14px;
    }

    .package-card__info-item {
        font-size: 0.75rem;
    }

    .package-card__hotel {
        padding: 8px 12px;
    }

    .package-card__hotel-images {
        width: 38px;
        height: 38px;
    }

    .package-card__hotel-name {
        font-size: 0.8rem;
    }

    .package-card__hotel-nights {
        font-size: 0.7rem;
    }

    .btn-package {
        padding: 10px;
        font-size: 0.8rem;
    }

    .package-row-title {
        font-size: 1.25rem;
        margin: 32px 0 16px;
        padding-bottom: 12px;
    }

    .package-details-section {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .package-details-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .detail-item h4 {
        font-size: 1rem;
    }

    .detail-list li {
        font-size: 0.85rem;
    }

    .faq-question {
        padding: 14px 12px;
    }

    .faq-question h3 {
        font-size: 0.9rem;
        padding-right: 24px;
    }

    .faq-answer {
        padding: 0 12px 12px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-col p {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
        padding-top: 24px;
    }

    .cta-full {
        padding: 48px 0;
    }

    .cta-full h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .cta-full p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .intro-section {
        padding-top: 60px !important;
        padding-bottom: 10px !important;
    }

    .intro-section .section-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    .intro-section h4 {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
    }

    .intro-section p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }
}

/* Extra Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .hero-slider {
        min-height: 400px;
    }

    .slide h1 {
        font-size: 1.4rem;
    }

    .slide p {
        font-size: 0.8rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .services-icons-grid {
        gap: 8px;
    }

    .service-icon-card {
        padding: 14px 8px;
    }

    .service-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .service-icon-wrapper i {
        font-size: 1rem;
    }

    .service-icon-card h3 {
        font-size: 0.7rem;
    }

    .package-card__image {
        height: 140px;
    }

    .counter-number-wrapper {
        font-size: 1.75rem;
    }

    .ceo-image-container {
        max-width: 240px;
    }

    .testimonial-card {
        padding: 20px 14px;
    }

    .page-header {
        padding: 100px 0 36px;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary {
    color: var(--primary-color);
}

.text-muted {
    color: var(--text-muted);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 0.95rem;
}

.benefit-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ========================================
   ENHANCED PACKAGE CARDS (Redesign)
   ======================================== */
.package-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #edf2f7;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 0.35s ease;
}

.package-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-card__image-container {
    position: relative;
    padding: 12px;
}

.package-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.package-card__price-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #314d1c;
    /* Solid flat dark green */
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    border: none;
    box-shadow: none;
    /* Removed shadow for flat look */
}

.package-card__content {
    padding: 0 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #2d3436;
    /* Flat dark grey */
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.package-card__info-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.package-card__info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #636e72;
    /* Flat grey */
}

.package-card__info-item i {
    font-size: 0.9rem;
    color: #0A4DA0;
    /* Brand Blue */
}

.package-card__hotels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.package-card__hotel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.package-card__hotel-images {
    width: 44px;
    height: 44px;
    background: #f1f2f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.package-card__hotel-images i {
    color: #0A4DA0;
    /* Brand Blue */
}

.package-card__hotel-details {
    flex-grow: 1;
}

.package-card__hotel-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card__hotel-nights {
    font-size: 0.75rem;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-package {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-package--outline {
    background: #FFFFFF;
    color: #063670;
    border: 2px solid #063670;
}

.btn-package--outline:hover {
    background: #f1f2f6;
}

.btn-package--solid {
    background: #063670;
    color: #ffffff;
}

.btn-package--solid:hover {
    background: #0A4DA0;
}

/* ========================================
   PACKAGE ROWS & DETAILS
   ======================================== */
.package-row-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-family: 'Playfair Display', serif;
}

.package-details-section {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid #E2E8F0;
}

.package-details-title {
    font-size: 1.5rem;
    color: #063670;
    margin-bottom: 25px;
    font-weight: 700;
}

.package-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-item h4 {
    font-size: 1.1rem;
    color: #0A4DA0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list li i {
    color: #0A4DA0;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .package-row-title {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }

    .package-details-section {
        padding: 25px;
    }
}


@media (max-width: 768px) {
    .package-card__image {
        height: 180px;
    }
}

/* ========================================
   PACKAGE SLIDER - Enhanced
   ======================================== */
.package-slider-section {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: sliderFadeIn 0.6s ease forwards;
}

@keyframes sliderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.package-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.package-slider-track .package-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-slider-track .package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Slider Navigation Arrows */
.package-slider-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.97);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #063670;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.package-slider-nav:hover {
    background: #063670;
    color: white;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 25px rgba(6, 54, 112, 0.4);
}

.package-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.package-slider-nav:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.package-slider-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.97);
    color: #063670;
    transform: translateY(-50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.package-slider-prev {
    left: -24px;
}

.package-slider-next {
    right: -24px;
}

/* Slider Dots Navigation */
.package-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 8px 0;
}

.package-slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    border: none;
}

.package-slider-dot:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: scale(1.15);
}

.package-slider-dot.active {
    background: white;
    width: 28px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Package Category Tabs/Filters */
.package-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.package-category-tab {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.package-category-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-category-tab:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.package-category-tab:hover::before {
    opacity: 1;
}

.package-category-tab.active {
    background: white;
    color: #063670;
    border-color: white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.package-category-tab.active::before {
    opacity: 0;
}

/* View All Button */
.view-all-packages {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.view-all-packages .btn {
    padding: 16px 44px;
    font-size: 1rem;
    border-width: 2px;
    letter-spacing: 0.3px;
}

/* Responsive Package Slider */
@media (max-width: 1199px) {
    .package-slider-track .package-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .package-slider-prev {
        left: 8px;
    }

    .package-slider-next {
        right: 8px;
    }
}

@media (max-width: 767px) {
    .package-slider-track .package-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .package-slider-track {
        gap: 16px;
    }

    .package-slider-nav {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    .package-slider-prev {
        left: 4px;
    }

    .package-slider-next {
        right: 4px;
    }

    .package-slider-dots {
        gap: 8px;
        margin-top: 22px;
    }

    .package-slider-dot {
        width: 8px;
        height: 8px;
    }

    .package-slider-dot.active {
        width: 22px;
    }

    .package-category-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .package-category-tab {
        padding: 10px 22px;
        font-size: 0.82rem;
    }
}

@media (max-width: 575px) {
    .package-slider-nav {
        display: none;
    }

    .package-slider-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .package-slider-wrapper::-webkit-scrollbar {
        display: none;
    }

    .package-slider-track {
        padding-right: 16px;
    }

    .package-slider-track .package-card {
        flex: 0 0 calc(100% - 32px);
    }
}

/* ========================================
   STATS COUNTER SECTION
   ======================================== */
.stats-counter-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.counter-card {
    background: #F8FAFC;
    padding: 32px 20px;
    border-radius: 16px;
    border: 1.5px solid #E2E8F0;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #063670;
    margin-bottom: 8px;
    white-space: nowrap;
    width: 100%;
}

.counter-value {
    font-family: 'Playfair Display', serif;
}

.counter-suffix {
    font-size: 1.5rem;
    font-weight: 700;
}

.counter-label {
    font-size: 0.85rem;
    color: #4A5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .counter-grid {
        gap: 20px;
    }

    .counter-number-wrapper {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #FFF;
    animation: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ========================================
   LIVE CHAT WIDGET
   ======================================== */
.chat-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background-color: #063670;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 54, 112, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.05);
}

.chat-status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: #25d366;
    border: 2px solid white;
    border-radius: 50%;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: slideInChat 0.3s ease-out;
}

@keyframes slideInChat {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background-color: #063670;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.chat-status-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    border: 1px solid white;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-header p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #F7FAFC;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.4;
}

.chat-message.bot {
    background-color: #EDF2F7;
    color: #2D3748;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-message.user {
    background-color: #063670;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #E2E8F0;
    padding: 8px 12px;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chat-footer button {
    background-color: #063670;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.chat-footer button:hover {
    background-color: #0A4DA0;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        bottom: 70px;
    }
}

/* ========================================
   LET'S PLAN YOUR UMRAH SECTION
   ======================================== */
.plan-umrah-section {
    background-color: #FFFFFF;
    padding: 50px 0 60px;
    border-bottom: 1px solid #E2E8F0;
}

.plan-umrah-title {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.plan-umrah-form {
    max-width: 1280px;
    margin: 0 auto;
}

.plan-umrah-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.plan-umrah-row:last-child {
    margin-bottom: 0;
}

.plan-umrah-field {
    display: flex;
    flex-direction: column;
}

.plan-umrah-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.field-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 0 14px;
    height: 48px;
    transition: all 0.3s ease;
}

.field-input-wrapper:hover {
    border-color: var(--primary-dark);
}

.field-input-wrapper:focus-within {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(10, 77, 160, 0.15);
}

.field-input-wrapper i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.field-input-wrapper.field-whatsapp i {
    color: #25D366;
    font-size: 1.25rem;
}

.field-input-wrapper input,
.field-input-wrapper select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    height: 100%;
    cursor: pointer;
}

.field-input-wrapper input::placeholder {
    color: #A0AEC0;
}

.field-input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 25px;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230A4DA0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 0 center;
    background-size: 20px;
}

.field-input-wrapper select option {
    padding: 10px;
}

/* Submit Button Field */
.plan-umrah-submit {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-send:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 54, 112, 0.35);
}

.btn-send:active {
    transform: translateY(0);
}

.btn-send i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-send:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plan-umrah-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .plan-umrah-submit {
        grid-column: 1 / -1;
        max-width: none;
        margin-left: 0;
    }

    .plan-umrah-submit .btn-send {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plan-umrah-section {
        padding: 40px 0 50px;
    }

    .plan-umrah-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .plan-umrah-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .plan-umrah-submit {
        grid-column: 1 / -1;
        max-width: none;
        margin-left: 0;
    }

    .plan-umrah-submit .btn-send {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .plan-umrah-section {
        padding: 30px 0 40px;
    }

    .plan-umrah-title {
        font-size: 1.35rem;
        margin-bottom: 25px;
    }

    .plan-umrah-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .plan-umrah-submit {
        grid-column: span 1;
    }

    .plan-umrah-submit .btn-send {
        max-width: 100%;
        width: 100%;
    }

    .field-input-wrapper {
        height: 46px;
    }

    .btn-send {
        height: 50px;
        font-size: 1.05rem;
    }
}

/* ========================================
   LOGO SLIDER SECTION
   ======================================== */
.logo-slider-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}

.logo-slider-title {
    text-align: center;
    margin-bottom: 40px;
}

.logo-slider-title h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-slider {
    display: flex;
    width: calc(250px * 28);
    /* Adjust based on number of logos * 2 */
    animation: scroll 40s linear infinite;
}

.logo-slider:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-slide img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 14));
        /* Adjust based on number of logos */
    }
}

@media (max-width: 768px) {
    .logo-slider-section {
        padding: 40px 0;
    }

    .logo-slide {
        width: 180px;
        padding: 0 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 14));
        }
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE OVERHAUL
   Ensures all pages adapt to every device
   ======================================== */

/* --- Contact Page: Icon Method Cards --- */
.contact-methods>div {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.contact-methods>div>div:first-child {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* --- Contact form card responsive padding --- */
.contact-info-col .section-desc {
    text-align: left !important;
    margin-bottom: 40px !important;
}

/* --- Booking Sidebar --- */
.booking-sidebar .card,
.booking-sidebar>div {
    border-radius: 20px !important;
}

/* --- Package Card Info Row wrapping --- */
.package-card__info-row {
    flex-wrap: wrap;
}

/* ====== TABLET (max-width: 991px) ====== */
@media (max-width: 991px) {

    /* Booking grid: stack on tablet */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-form-wrapper {
        padding: 30px !important;
    }

    .booking-sidebar .card,
    .booking-sidebar>div {
        padding: 25px !important;
    }

    /* Contact page flex-split: stacks via existing rule */
    .contact-info-col {
        order: 2;
    }

    /* Form card */
    .card[style*="padding: 40px"] {
        padding: 30px !important;
    }

    /* Package info row: allow wrapping */
    .package-card__info-row {
        gap: 10px;
    }
}

/* ====== MOBILE (max-width: 767px) ====== */
@media (max-width: 767px) {

    /* Typography scaling */
    h1 {
        font-size: clamp(1.6rem, 6vw, 2.5rem) !important;
    }

    h2 {
        font-size: clamp(1.3rem, 5vw, 2rem) !important;
    }

    h3 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    /* Booking form wrapper */
    .booking-form-wrapper {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .form-header h2 {
        font-size: 1.5rem !important;
    }

    .form-header i {
        font-size: 2.5rem !important;
    }

    .form-section-home h3 {
        font-size: 1.1rem !important;
    }

    /* Booking sidebar */
    .booking-sidebar .card,
    .booking-sidebar>div {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .booking-sidebar h3 {
        font-size: 1.25rem !important;
    }

    /* Contact methods: smaller icons */
    .contact-methods>div>div:first-child {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
    }

    .contact-methods h4 {
        font-size: 1rem !important;
    }

    .contact-methods p {
        font-size: 0.9rem !important;
        word-break: break-word;
    }

    /* Contact form card */
    .card[style*="padding: 40px"] {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }

    .card[style*="padding: 40px"] h3 {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
    }

    /* Textarea override */
    textarea[style*="width: 100%"] {
        padding: 12px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
    }

    /* Package cards: info items wrapping */
    .package-card__info-row {
        gap: 8px;
    }

    .package-card__info-item {
        font-size: 0.75rem;
    }

    /* Package price badge */
    .package-card__price-badge {
        font-size: 0.78rem;
        padding: 5px 10px;
    }

    /* Logo slider section */
    .logo-slider-title h2 {
        font-size: 1rem !important;
        letter-spacing: 1px;
    }

    /* CTA section buttons */
    .cta-full .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer: contact info text wrapping */
    .footer-links li {
        word-break: break-word;
        font-size: 0.85rem;
    }
}

/* ====== SMALL MOBILE (max-width: 575px) ====== */
@media (max-width: 575px) {

    /* Base layout */
    body {
        -webkit-text-size-adjust: 100%;
        overflow-x: hidden;
    }

    /* Ensure nothing overflows viewport */
    .container {
        overflow-x: hidden;
    }

    /* Booking form: single column forced */
    .booking-form-wrapper {
        padding: 16px !important;
        border-radius: 14px !important;
    }

    .form-header {
        margin-bottom: 24px !important;
    }

    .form-header h2 {
        font-size: 1.3rem !important;
    }

    .form-header i {
        font-size: 2rem !important;
        margin-bottom: 12px !important;
    }

    .form-section-home {
        margin-bottom: 24px !important;
    }

    .form-section-home h3 {
        font-size: 1rem !important;
        padding-bottom: 8px !important;
    }

    /* Booking sidebar cards */
    .booking-sidebar .card,
    .booking-sidebar>div {
        padding: 16px !important;
        border-radius: 14px !important;
        margin-bottom: 16px !important;
    }

    .booking-sidebar h3 {
        font-size: 1.15rem !important;
        margin-bottom: 14px !important;
    }

    .booking-sidebar p,
    .booking-sidebar span {
        font-size: 0.88rem !important;
    }

    /* Contact page: method cards */
    .contact-methods>div {
        gap: 14px;
        margin-bottom: 20px;
    }

    .contact-methods>div>div:first-child {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }

    .contact-methods h4 {
        font-size: 0.95rem !important;
        margin-bottom: 3px !important;
    }

    .contact-methods p {
        font-size: 0.82rem !important;
    }

    /* Contact form card */
    .card[style*="padding: 40px"] {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }

    .card[style*="padding: 40px"] h3 {
        font-size: 1.2rem !important;
        margin-bottom: 16px !important;
    }

    /* Package card hotels */
    .package-card__hotel {
        padding: 8px 10px;
        gap: 10px;
    }

    .package-card__hotel-images {
        width: 36px;
        height: 36px;
    }

    .package-card__hotel-images i {
        font-size: 1.4rem !important;
    }

    .package-card__hotel-name {
        font-size: 0.78rem;
    }

    .package-card__hotel-nights {
        font-size: 0.68rem;
    }

    /* Filter bar buttons */
    .btn.btn-outline,
    .btn.btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Package detail sections */
    .package-details-section {
        padding: 16px 12px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .package-details-title {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .package-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-item h4 {
        font-size: 0.95rem;
        gap: 8px;
    }

    .detail-list li {
        font-size: 0.82rem;
        gap: 8px;
    }

    /* Footer: tighten spacing */
    footer {
        padding: 50px 0 24px;
    }

    .footer-grid {
        gap: 24px;
        margin-bottom: 24px;
    }

    /* WhatsApp button: prevent overlap with footer */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
}

/* ====== EXTRA SMALL (max-width: 400px) ====== */
@media (max-width: 400px) {

    /* Even tighter spacing */
    .booking-form-wrapper {
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .grid-2-col {
        gap: 12px;
    }

    .form-group-home input,
    .form-group-home select,
    .form-group-home textarea {
        padding: 9px 10px;
        font-size: 0.85rem;
    }

    /* Package cards */
    .package-card__content {
        padding: 0 12px 14px;
    }

    .package-card__title {
        font-size: 0.88rem;
    }

    .package-card__image-container {
        padding: 8px;
    }

    .package-card__image {
        height: 130px !important;
        border-radius: 10px;
    }

    .package-card__buttons {
        gap: 6px;
    }

    .btn-package {
        padding: 8px;
        font-size: 0.78rem;
        border-radius: 8px;
    }

    /* Contact methods */
    .contact-methods>div>div:first-child {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.9rem;
    }

    /* Booking sidebar */
    .booking-sidebar .card,
    .booking-sidebar>div {
        padding: 14px !important;
    }

    .booking-sidebar li {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }

    /* Package row titles */
    .package-row-title {
        font-size: 1.1rem;
        margin: 24px 0 14px;
        padding-bottom: 10px;
    }
}

/* ====== LANDSCAPE PHONES ====== */
@media (max-height: 500px) and (orientation: landscape) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 1.5rem !important;
    }

    .page-header p {
        font-size: 0.85rem;
    }

    .section {
        padding: 40px 0;
    }

    .hero-slider {
        min-height: 350px;
        height: 100vh;
    }
}

/* ====== HOVER DISABLED FOR TOUCH DEVICES ====== */
@media (hover: none) {

    .card:hover,
    .package-card:hover,
    .counter-card:hover,
    .offer-card:hover,
    .ceo-stat-item:hover {
        transform: none;
        box-shadow: none;
    }

    .slider-btn:hover {
        transform: translateY(-50%);
    }
}

/* ====== PRINT STYLES ====== */
@media print {

    .top-bar,
    .navbar,
    .mobile-menu,
    .mobile-menu-btn,
    .whatsapp-float,
    .chat-wrapper,
    .slider-btn,
    .slider-dots {
        display: none !important;
    }

    .page-header {
        padding: 20px 0 !important;
    }

    .section {
        padding: 20px 0 !important;
    }

    body {
        font-size: 12pt;
    }
}