:root {
    /* Color Palette (Logo Matched) */
    --primary: #45B3E6;
    /* Logo Cyan/Blue */
    --primary-light: #6ACDF7;
    --primary-glow: rgba(69, 179, 230, 0.4);

    --secondary: #185E8A;
    /* Deeper Logo Blue */
    --secondary-light: #2178B0;
    --secondary-glow: rgba(24, 94, 138, 0.4);
    --accent: #E5F348;
    /* Logo Lime/Yellow Leaf */

    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F4FAFC;
    /* Light cyan tint */
    --bg-white: #FFFFFF;
    --bg-dark: #0A2433;
    /* Very dark logo blue */

    --danger: #EF4444;
    /* Keep for pain points */
    --success: #10B981;

    /* Typography */
    --font-sans: 'Outfit', sans-serif;

    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

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

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

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

.mb-2 {
    margin-bottom: 2rem;
}

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

/* Scroll reveal animation classes (used by JS IntersectionObserver) */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--secondary-glow);
}

.btn-glow {
    box-shadow: 0 0 20px var(--secondary-glow);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 10px var(--secondary-glow);
    }

    to {
        box-shadow: 0 0 25px var(--secondary-glow);
    }
}

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

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

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

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* Navbar - Stunning Premium Update */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1390px;
    /* Matched the banner's new width */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    top: 10px;
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding: 0 2rem;
}

.logo img {
    height: 90px;
    margin: -15px 0;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* 1. HERO SECTION - FLOATING ISLAND DESIGN */
.hero-island {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #F8FAFC;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.island-wrapper.container {
    position: relative;
    width: 90%;
    max-width: 1390px;
    padding: 0;
    margin: 0 auto;
}

.island-container {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(10, 36, 51, 0.15);
}

.island-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.island-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 36, 51, 0.4) 0%, rgba(10, 36, 51, 0.7) 100%);
    z-index: 1;
}

.island-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-pill i {
    color: #FCD34D;
    font-size: 1.1rem;
}

.island-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-island {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #FCD34D, #4ADE80);
    /* Stunning Yellow-green gradient */
}

.island-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.island-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-island {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(69, 179, 230, 0.4);
}

.btn-outline-island {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-island:hover {
    background: #fff;
    color: var(--text-main);
    transform: translateY(-3px);
}

.island-search-bar {
    position: absolute;
    bottom: -40px;
    /* Overlap the bottom of the video */
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: var(--radius-full);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(10, 36, 51, 0.08);
    z-index: 10;
    width: 90%;
    max-width: 1000px;
}

.search-item {
    flex: 1;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-item:focus-within .search-label {
    color: var(--primary);
}

.search-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    outline: none;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 20px;
    /* space for icon */
}

.search-input:focus {
    color: var(--primary);
}

.search-input-wrapper i {
    position: absolute;
    right: 0;
    color: var(--primary);
    pointer-events: none;
    /* Let clicks pass through to the select */
    font-size: 1.1rem;
}

/* Fix default styling on date input placeholder text */
.search-input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 10;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #E2E8F0;
}

.btn-search {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Light styling for the floating socials to match dark video background */
.hero-social-float.light-socials a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-social-float.light-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.float-badge .badge-title {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
}

.float-badge .badge-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* Floating Social Icons Right */
.hero-social-float {
    position: absolute;
    right: 15px;
    /* stick closely to the right side */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center everything */
    gap: 0.8rem;
    z-index: 10;
}

.hero-social-float a {
    font-size: 1.5rem;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Global Brand Colors for font icons */
.hero-social-float a.social-fb i {
    color: #1877F2;
}

.hero-social-float a.social-yt i {
    color: #FF0000;
}

.hero-social-float a.social-ig i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hover effects for Floating Sidebar */
.hero-social-float a.social-fb:hover {
    background: #1877F2;
    transform: translateX(-5px);
}

.hero-social-float a.social-ig:hover {
    background: #E4405F;
    transform: translateX(-5px);
}

.hero-social-float a.social-yt:hover {
    background: #FF0000;
    transform: translateX(-5px);
}

.hero-social-float a:hover i {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

/* 2. PAIN SECTION HIGHLIGHT (NEW PREMIUM) */
.pain-section {
    background: linear-gradient(to bottom, #FFFFFF, #F8FAFC);
    padding-bottom: 2rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pain-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-red {
    width: 65px;
    height: 65px;
    background: rgba(10, 36, 51, 0.08);
    /* Sophisticated soft dark blue background */
    color: #0a2433;
    /* Clean solid dark blue icon */
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.pain-card:hover .icon-red {
    background: #0a2433;
    color: white;
    /* Light text for contrast against dark blue */
    transform: scale(1.05);
}

.pain-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pain-card p {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* 3. HEAVEN SECTION (Transformation) - REDESIGNED PREMIUM */
.heaven-section-new {
    background: #ffffff;
    /* Clean white background */
    position: relative;
    overflow: hidden;
    color: var(--text-main);
    padding-top: 2rem;
    padding-bottom: 6rem;
    /* Reduced padding from 6rem standard to bring it closer to the sections above */
}

.heaven-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* --- Left Side Visuals --- */
.heaven-visuals {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(69, 179, 230, 0.2) 0%, transparent 60%);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulseBlob 8s ease-in-out infinite alternate;
}

@keyframes pulseBlob {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.main-img-new {
    position: absolute;
    width: 70%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 1;
    left: 0;
    top: 5%;
}

.sub-img-new {
    position: absolute;
    width: 50%;
    height: 55%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    right: 0;
    bottom: 5%;
    border: 8px solid #ffffff;
}

.glass-float-card-new {
    position: absolute;
    bottom: 15%;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.icon-wrapper-green {
    width: 45px;
    height: 45px;
    background: #10B981;
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.float-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.float-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Subtle float animations for images */
.float-slow {
    animation: floatImage 8s ease-in-out infinite alternate;
}

.float-fast {
    animation: floatImage 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/* --- Right Side Content --- */
.heaven-content-new {
    padding-left: 2rem;
}

.badge-light-blue {
    background: rgba(69, 179, 230, 0.1);
    color: var(--primary);
    border: 1px solid rgba(69, 179, 230, 0.2);
    border-radius: var(--radius-full);
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.heaven-content-new h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.highlight-blue {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.heaven-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Grid Features */
.heaven-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.feature-item-new:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #10B981;
    /* Green success check color substitute */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Emotional Statement */
.emotional-statement-new {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: #F8FAFC;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
}

.quote-line {
    width: 4px;
    border-radius: 2px;
    background: var(--primary);
    flex-shrink: 0;
    display: none;
}

.emotional-statement-new p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.emotional-statement-new .highlight-text {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.25rem;
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
}

.btn-glow-custom {
    box-shadow: 0 10px 20px rgba(24, 94, 138, 0.2);
}


/* 4. SERVICES SECTION ANIMATED PREMIUM */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(10, 36, 51, 0.05);
    /* Logo dark blue shadow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(69, 179, 230, 0.1);
    /* subtle cyan border */
}

/* Premium Animated Background Hover */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 179, 230, 0.05) 0%, rgba(10, 36, 51, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(69, 179, 230, 0.1);
    /* light cyan */
    color: var(--primary);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.6;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 36, 51, 0.12);
    border-color: rgba(69, 179, 230, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(69, 179, 230, 0.3);
}

/* The Highlight Card (Umrah) */
.highlight-card {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 20px 40px rgba(69, 179, 230, 0.3);
}

.highlight-card::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.highlight-card .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.highlight-card h3,
.highlight-card p {
    color: white;
}

.highlight-card:hover .service-icon {
    background: white;
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

/* 4.5 TRENDING SERVICES (NEW DESIGN) */
.trending-services .container {
    max-width: 1320px;
    padding: 0 4%;
}

.trending-header-left {
    text-align: left;
    margin-bottom: 3.5rem;
    position: relative;
    padding-left: 2rem;
    margin-left: 1rem;
}

.trending-header-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: var(--primary);
    /* Cyan side bar */
    border-radius: var(--radius-full);
}

.trending-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.trending-subtitle-badge i {
    color: #FCD34D;
    /* Yellow */
    font-size: 1.2rem;
}

.trending-title-main {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0A2433;
    /* Dark Logo Blue */
    margin-bottom: 0;
}

.trending-highlight {
    color: #0A2433;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.trending-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -2px;
    right: -4px;
    height: 16px;
    background: #FCD34D;
    /* Yellow marker swoop */
    z-index: -1;
    border-radius: 2px;
    transform: rotate(-1deg);
}

.trendingSwiper {
    margin-top: 2rem;
    padding-bottom: 2rem !important;
    /* Spacing for pagination */
}

.trending-item {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.trending-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    /* To allow the button to overlap */
    width: 100%;
    aspect-ratio: 4/5;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trending-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}

.trending-item:hover .trending-img-wrapper img {
    transform: scale(1.03);
}

.trending-arrow-btn {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #FCD34D;
    /* Yellow button */
    color: #0A2433;
    /* Dark icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(252, 211, 77, 0.4);
    transition: transform 0.3s ease;
    z-index: 2;
}

.trending-item:hover .trending-arrow-btn {
    transform: translateX(5px);
}

.trending-content {
    text-align: left;
    padding: 0 0.5rem;
}

.trending-content h3 {
    font-size: 1.3rem;
    color: #185E8A;
    /* Brand Blue */
    margin-bottom: 1rem;
}

.trending-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.trending-inclusions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-main);
}

.incl-label {
    font-weight: 500;
}

.incl-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #0A2433;
}

/* 5. DESTINATIONS */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.dest-info {
    color: white;
    width: 100%;
}

.dest-info h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dest-info .btn {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

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

.dest-card:hover .dest-info .btn {
    opacity: 1;
    transform: translateY(0);
}

/* 6. WHY CHOOSE US - REDESIGNED PREMIUM */
.trust-section-new {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}


.trust-section-new::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 179, 230, 0.15) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    z-index: 0;
}

.trust-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-content-new {
    padding-right: 2rem;
}

.trust-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(69, 179, 230, 0.1);
    color: var(--primary);
    border: 1px solid rgba(69, 179, 230, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.trust-content-new h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.trust-content-new h2 .highlight {
    color: var(--primary);
    background: none;
}

.trust-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.trust-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-card-new {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.3s ease;
}

.trust-card-new:hover {
    transform: translateX(5px);
}

.trust-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(69, 179, 230, 0.1);
    /* primary color low opacity */
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.trust-card-new:hover .trust-icon-box {
    background: var(--primary);
    color: var(--bg-white);
    transform: rotate(10deg) scale(1.05);
}

.trust-card-new h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.trust-card-new p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.trust-badges-new {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-item-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 36, 51, 0.05);
    /* very light dark logo blue */
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(10, 36, 51, 0.1);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.badge-item-new:hover {
    background: rgba(10, 36, 51, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.badge-item-new i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Right side image wrapper */
.trust-image-wrapper-new {
    position: relative;
    border-radius: var(--radius-lg);
}

/* Ensure <picture> elements don't break layouts */
.trust-image-wrapper-new picture,
.heaven-visuals picture,
.dest-card picture {
    display: contents;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
}

.trust-image-new {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating aesthetic Glassmorphism card */
.trust-float-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    /* light frosted glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(10, 36, 51, 0.1);
    /* light border */
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* softer shadow */
    animation: float 5s ease-in-out infinite;
}

.trust-float-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(69, 179, 230, 0.3);
}

.trust-float-text {
    display: flex;
    flex-direction: column;
}

.trust-float-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.trust-float-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 8. HOW IT WORKS */
.how-it-works-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 3.5rem;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(69, 179, 230, 0.4);
    border: 4px solid var(--bg-white);
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

.step-connector {
    height: 2px;
    background: #C2EAFA;
    flex: 1;
    margin-top: 32px;
    z-index: 1;
}

/* 7. SOCIAL PROOF */
.mySwiper {
    margin-top: 3rem;
    padding: 2rem 1rem 4rem !important;
    /* give space for hover shadow and pagination */
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary) !important;
    width: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.review-card-new {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    text-align: left;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.review-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.review-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(24, 94, 138, 0.05);
    /* very soft secondary color */
    line-height: 1;
}

.stars-new {
    color: #FFB800;
    /* Richer star color */
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
    position: relative;
    z-index: 2;
}

.stars-new i {
    font-size: 1.3rem;
}

.review-text-new {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    min-height: 100px;
}

.review-author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid #F1F5F9;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

.author-dest {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 8.5 INTERACTIVE GALLERY SLIDER */
.testimonial-gallery-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Main Top Slider */
.main-gallery-swiper {
    position: relative;
    width: 100%;
    height: 550px;
    background: #000;
}

.main-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Arrows */
.main-btn-next,
.main-btn-prev {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.main-btn-next:hover,
.main-btn-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.main-btn-next::after,
.main-btn-prev::after {
    display: none;
}

.main-btn-next {
    right: 20px;
}

.main-btn-prev {
    left: 20px;
}

/* Thumbs Section */
.thumbs-gallery-container {
    padding: 1.5rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
}

.thumbs-gallery-swiper {
    width: 100%;
    height: 90px;
    box-sizing: border-box;
}

.thumbs-gallery-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.thumbs-gallery-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 3px solid white;
}

.thumbs-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .main-gallery-swiper {
        height: 350px;
    }

    .thumbs-gallery-container {
        padding: 1rem;
    }

    .thumbs-gallery-swiper {
        height: 70px;
    }
}

/* 9. LEAD CAPTURE - STUNNING REDESIGN */
.lead-capture {
    position: relative;
    padding: 6rem 0;
}

.lead-capture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/4.avif') center/cover no-repeat fixed;
    z-index: 1;
}

.lead-capture-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 51, 0.95) 0%, rgba(69, 179, 230, 0.85) 100%);
}

.lead-container {
    position: relative;
    z-index: 2;
}

.lead-split-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lead-info-stunning {
    padding: 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.accent-badge {
    background: rgba(229, 243, 72, 0.15);
    color: var(--accent);
    border: 1px solid rgba(229, 243, 72, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lead-heading {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead-heading .highlight {
    color: var(--accent);
}

.lead-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.benefit-list-new {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-list-new li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.benefit-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Form Side */
.lead-form-stunning {
    background: var(--bg-white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-new label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group-new input,
.form-group-new select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid transparent;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
}

.form-group-new input:focus,
.form-group-new select:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(69, 179, 230, 0.15);
}

.btn-stunning {
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(69, 179, 230, 0.3);
}

.btn-stunning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(69, 179, 230, 0.4);
}

/* BLOG SECTION */
/* EDITORIAL BLOG GRID */
.blog-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.blog-editorial-card {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
}

.blog-editorial-img-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    aspect-ratio: 4/3;
    position: relative;
}

.blog-editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-editorial-card:hover .blog-editorial-img {
    transform: scale(1.05);
}

.blog-editorial-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.blog-editorial-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.blog-editorial-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-editorial-content h3 a:hover {
    color: var(--primary);
}

.blog-editorial-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

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

/* Footer & WhatsApp */
.site-footer {
    background: #020617;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 150px;
    /* Increased from 100px */
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Footer Brand hover interactions */
.social-links a:hover {
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-col a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #94A3B8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748B;
}

.footer-bottom p {
    margin: 0.35rem 0;
}

.footer-bottom a {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

/* Floating Quick Enquiry (Left) */
.quick-enquiry-float {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background-color: var(--secondary);
    color: white;
    padding: 24px 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-right: none;
}

.quick-enquiry-float:hover {
    background-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-50%) rotate(180deg) translateX(-5px);
    box-shadow: -6px -6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align icon right initially */
    padding-right: 12.5px;
    /* Center 35px icon perfectly inside 60px wide background (60-35)/2 = 12.5 */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounce 2s infinite;
    overflow: hidden;
}

/* Centered Quick Enquiry Modal (Home) */
.lead-capture-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lead-capture-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(6px);
}

.lead-capture-modal-content {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #ffffff;
}

.lead-capture-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(2, 6, 23, 0.12);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.lead-capture-modal-close i {
    font-size: 18px;
    color: #0f172a;
}

.lead-capture-modal .lead-form-stunning {
    padding: 44px 28px 28px;
}

@media (max-width: 768px) {
    .lead-capture-modal {
        padding: 14px;
    }
    .lead-capture-modal-content {
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }
    .lead-capture-modal .lead-form-stunning {
        padding: 48px 18px 18px;
    }
}

.whatsapp-float::before {
    content: "Chat with us";
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    width: 220px;
    /* Expand button leftward */
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 15px;
    animation-play-state: paused;
    /* Pause bouncing to easily click */
}

.whatsapp-float:hover::before {
    opacity: 1;
    max-width: 150px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .headline-new {
        font-size: 3.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        height: 450px;
        margin-top: 2rem;
    }

    .emotional-copy-new {
        text-align: left;
        margin: 0 auto 2.5rem;
        max-width: 650px;
    }

    .subheadline-new {
        margin: 0 auto 2rem;
    }

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

    .float-badge {
        bottom: 5%;
        left: 0%;
    }

    .trust-wrapper-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trust-content-new {
        padding-right: 0;
    }

    .trust-grid-new {
        grid-template-columns: 1fr 1fr;
    }

    .trust-float-card {
        left: 20px;
        bottom: 20px;
    }

    .lead-split-card {
        grid-template-columns: 1fr;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .blog-editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lead-info-stunning {
        padding: 2.5rem 1.5rem;
    }

    .lead-form-stunning {
        padding: 2.5rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 92%;
        top: 15px;
        border-radius: var(--radius-lg);
    }

    .nav-content {
        padding: 0 1.2rem;
        height: 75px;
    }

    .logo img {
        height: 65px;
        margin: -5px 0;
    }

    .nav-links,
    .nav-actions,
    .hero-social-float {
        display: none;
    }

    .navbar.mobile-menu-active {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
    }

    .navbar.mobile-menu-active .nav-content {
        flex-wrap: wrap;
        height: auto;
        padding-bottom: 0;
    }

    .navbar.mobile-menu-active .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 1.5rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        margin-top: 0.5rem;
    }

    .navbar.mobile-menu-active .nav-actions {
        display: flex;
        width: 100%;
        justify-content: center;
        padding-bottom: 2rem;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        font-size: 1.5rem;
        color: var(--primary);
    }

    .section-padding {
        padding: 4rem 0;
    }

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

    .island-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .island-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .btn-island,
    .btn-outline-island {
        width: 100%;
        justify-content: center;
    }

    .heaven-container-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .heaven-visuals {
        height: 400px;
        margin-bottom: 2rem;
    }

    .heaven-content-new {
        padding-left: 0;
    }

    .heaven-features-grid {
        grid-template-columns: 1fr;
    }

    .glass-float-card-new {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .heaven-content-new h2 {
        font-size: 2.2rem;
    }

    .emotional-statement-new {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--secondary);
    }

    .pain-grid,
    .trust-grid-new,
    .services-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .blog-editorial-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: relative;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Vertical timeline line */
    .steps-grid::before {
        content: '';
        position: absolute;
        left: 48px;
        top: 32px;
        bottom: 32px;
        width: 2px;
        background: linear-gradient(to bottom, #C2EAFA, #45B3E6, #C2EAFA);
        z-index: 0;
    }

    .step-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.2rem;
        padding: 1.2rem 0;
        background: transparent;
    }

    .step-num {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        background: var(--primary);
        box-shadow: 0 0 0 4px #fff, 0 6px 20px rgba(69, 179, 230, 0.35);
    }

    .step-card-text {
        padding-top: 0.3rem;
    }

    .step-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
    }

    .step-card p {
        font-size: 0.9rem;
        max-width: 100%;
        margin: 0;
        color: #64748B;
    }

    .step-connector {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .island-container {
        height: 500px;
        border-radius: 24px;
    }

    .island-search-bar {
        position: relative;
        flex-direction: column;
        bottom: auto;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: -30px;
        padding: 1.5rem;
        border-radius: 20px;
        gap: 1rem;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }

    .search-item {
        width: 100%;
        padding: 0;
    }

    .btn-search {
        width: 100%;
    }

    .quick-enquiry-float {
        padding: 8px 4px;
        font-size: 0.65rem;
        letter-spacing: 0;
    }
}

/* NEW: VIDEO TESTIMONIALS SECTION */
.video-testimonials-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.video-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #000;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 173, 239, 0.15);
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-play-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: white;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .video-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .video-card {
        height: 400px;
    }
}
