html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1AC4C6;
    /* Specific Aquamarine requested */
    --primary-hover: #16A8A9;
    --secondary: #FFA500;
    /* Orange from image */
    --dark: #1A3C40;
    --text: #2C3E50;
    --text-light: #444444;
    --bg-light: #F8FBFB;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 206, 209, 0.15);
}

/* Global Star Fill */
.fill,
.fill svg,
.fill svg * {
    fill: #FFD700 !important;
    stroke: #FFD700 !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 30px 0;
}

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

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

.subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.main-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: none;
}

#navbar.scrolled .main-logo {
    height: 60px;
    filter: none;
    /* Original colors for white navbar */
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled .logo-main {
    color: #000;
}

.i-char {
    position: relative;
}

.chevron-char {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FF4500 100%);
    clip-path: polygon(25% 0%, 75% 50%, 25% 100%, 0% 100%, 50% 50%, 0% 0%);
    transform: translateY(2px);
}

.logo-dots {
    display: flex;
    gap: 4px;
    margin-left: 5px;
    align-items: center;
    transform: translateY(8px);
}

.logo-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.logo-dots span:nth-child(1) {
    background-color: #FF3B30;
}

.logo-dots span:nth-child(2) {
    background-color: #FF9500;
}

.logo-dots span:nth-child(3) {
    background-color: #FFCC00;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: -2px;
    letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#navbar.scrolled .logo-sub {
    color: var(--primary-hover);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
}

.nav-links .btn {
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links .btn i {
    width: 18px;
    height: 18px;
}

#navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: #1ac4c6;
    color: var(--dark) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-call:hover {
    background: #1ac4c6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.3);
}

.mobile-menu {
    display: none;
    cursor: pointer;
    color: var(--white);
}

#navbar.scrolled .mobile-menu {
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    /* Moved to top */
    justify-content: flex-end;
    text-align: right;
    overflow: hidden;
    padding-right: 5%;
    /* Pushes content further right */
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    /* Ensure top is visible */
    z-index: -1;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 40%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 160px 0 60px;
    /* Increased top padding to avoid navbar */
    color: var(--white);
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    text-align: right;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-pre-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-script {
    font-family: 'Playfair Display', serif !important;
    margin-right: 0 !important;
    font-size: 8rem !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    color: #FFA500 !important;
    text-transform: capitalize;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    letter-spacing: -2px;
    opacity: 0;
    animation: cinematicTextReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.premium-title {
    text-align: right;
    margin-right: 0 !important;
    font-size: 8rem !important;
    font-family: 'Dancing Script', cursive !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    color: white !important;
    text-transform: capitalize;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    letter-spacing: -2px;
    opacity: 0;
    animation: cinematicTextReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.hero p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0 0 40px auto;
    max-width: 550px;
    text-align: right;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeUpScale 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards;
}

@keyframes slideDownBlur {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
        filter: blur(15px);
    }

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

@keyframes cinematicTextReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        letter-spacing: 15px;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: -2px;
        filter: blur(0);
    }
}

@keyframes fadeUpScale {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    color: var(--white);
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Hero Form */
.hero-form-container {
    flex: 0 0 380px;
}

.hero-form-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(26, 196, 198, 0.12),
        0 0 0 10px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 196, 198, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 5;
}

.hero-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(26, 196, 198, 0.2),
        0 0 0 10px rgba(255, 255, 255, 0.9);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-family: 'Dancing Script', cursive !important;
    font-size: 3.2rem !important;
    color: var(--secondary);
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 700;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-form label i {
    width: 14px;
    color: var(--primary);
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 14px 20px;
    border-radius: 15px;
    border: 1.5px solid rgba(26, 196, 198, 0.2);
    background: #fafdfd;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--dark);
}

.hero-form input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 196, 198, 0.15);
    background: #ffffff;
}

.submit-btn {
    width: 100%;
    border: none;
    font-size: 1rem;
    padding: 12px;
    margin-top: 5px;
}

.form-footer {
    text-align: center;
    font-size: 0.7rem !important;
    color: var(--text-light) !important;
    margin-top: 10px !important;
    opacity: 0.8 !important;
}

/* Enquiry Section styling */
.enquiry-section {
    background-image: radial-gradient(rgba(26, 196, 198, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
}

.ocean-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.ocean-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.ocean-divider .shape-fill {
    fill: var(--bg-light);
}

.enquiry-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.enquiry-info {
    flex: 1;
}

.enquiry-info h2 {
    text-align: left;
    align-items: flex-start;
}

/* Breadcrumb styling */
.breadcrumb-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-mini a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb-mini i {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* Premium List styling */
.premium-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 10px;
}

.premium-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 55px;
    bottom: -10px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(26, 196, 198, 0.3), transparent);
    z-index: 0;
}

.list-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 196, 198, 0.15) 0%, rgba(26, 196, 198, 0.05) 100%);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    border: 1px solid rgba(26, 196, 198, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.premium-list li:hover .list-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(26, 196, 198, 0.25);
}

.list-text {
    padding-top: 3px;
    position: relative;
    z-index: 1;
}

.list-text h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #0D2B3E;
    transition: color 0.3s ease;
}

.premium-list li:hover .list-text h4 {
    color: var(--primary);
}

.list-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 20px 0 40px;
    }

    .breadcrumb-mini {
        justify-content: center;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .enquiry-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .enquiry-info h2 {
        text-align: center;
        align-items: center;
    }

    .premium-list li {
        text-align: left;
        flex-direction: row;
        /* Keep icon on left for small screens unless it's too cramped */
    }

    .hero-form-container {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Ocean Waves Animation */
.ocean-waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: 2;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Birds Animation */
.birds {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.bird {
    background-image: url('https://www.transparentpng.com/download/bird/bird-png-transparent-images-27.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 30px;
    position: absolute;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.bird-1 {
    animation: fly-right 20s linear infinite;
    top: 10%;
}

.bird-2 {
    animation: fly-right 30s linear infinite;
    animation-delay: -10s;
    top: 30%;
}

.star-gold {
    color: #FFD700;
    fill: #FFD700;
}

@keyframes fly-right {
    0% {
        left: -10%;
        transform: scale(0.5) translateY(0);
    }

    50% {
        transform: scale(0.6) translateY(-20px);
    }

    100% {
        left: 110%;
        transform: scale(0.5) translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--secondary);
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 206, 209, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* CTA Banner Content */
.cta-subtitle {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0;
    display: block;
    font-family: 'Great Vibes', cursive;
}

.cta-title {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-text {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.9;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Section Headers */
.section-header {

    position: relative;

    flex-direction: column;
    align-items: center;
    text-align: center;
}



.subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;

    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5px;
}

.subtitle::before,
.subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #C5A059;
    opacity: 0.3;
}

.varied-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem !important;
    font-weight: 800;
    color: #0D2B3E;
    display: block;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
}

.varied-title .script-text {
    font-family: 'Dancing Script', cursive !important;
    color: var(--primary);
    font-size: 4rem !important;
    font-weight: 700 !important;
    text-transform: none;
    letter-spacing: normal;
    margin-left: 12px;
    display: inline-block;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(26, 196, 198, 0.15);
}

.single-line-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem !important;
    font-weight: 800;
    color: #0D2B3E;
    display: block;
    line-height: 1.2;
    margin-bottom: 20px;
}

.single-line-title .script-text {
    font-family: 'Dancing Script', cursive !important;
    color: var(--primary);
    font-size: 3.8rem !important;
    font-weight: 700 !important;
    margin-left: 10px;
    display: inline-block;
}

.header-icon {
    color: #8B4513;
    margin-bottom: 10px;
}

.header-icon i {
    width: 40px;
    height: 40px;
    color: #4CAF50;
    /* Green for palm */
}


.feature-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1A3C40;
    margin-top: 20px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary);
    opacity: 1;
}

.breadcrumb-nav span {
    opacity: 0.7;
}

.breadcrumb-nav .active {
    color: var(--secondary);
    opacity: 1;
}

.script-text {
    font-family: 'Great Vibes', cursive;
    color: var(--secondary);
    font-size: 5rem;
    font-weight: 400;
    vertical-align: middle;
    text-shadow: 0 2px 10px rgba(0, 196, 204, 0.15);
}

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Google Reviews Section - Premium Redesign */
.google-reviews {
    background-color: #fafdfd;
    background-image: radial-gradient(rgba(26, 196, 198, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.floral-decor {
    position: absolute;
    width: 350px;
    height: 350px;
    color: var(--primary);
    opacity: 0.08;
    /* Very subtle so it doesn't distract from the content */
    z-index: 1;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.floral-decor.top-left {
    top: -50px;
    left: -50px;
    transform: rotate(15deg);
}

.floral-decor.bottom-right {
    bottom: -50px;
    right: -50px;
    transform: rotate(-15deg);
}

.google-reviews:hover .floral-decor.top-left {
    transform: rotate(20deg) scale(1.05);
}

.google-reviews:hover .floral-decor.bottom-right {
    transform: rotate(-20deg) scale(1.05);
}

.google-reviews .container {
    max-width: 1100px;
}

.reviews-summary {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 50px;
    margin-bottom: 80px;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.summary-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.rating-display {
    text-align: center;
    flex-shrink: 0;
}

.rating-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-stars {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.rating-stars i {
    width: 24px;
    height: 24px;
    color: #FFD700;
}

.rating-stars i,
.rating-stars svg,
.rating-stars .fill,
.rating-stars .fill * {
    fill: #FFD700 !important;
    stroke: #FFD700 !important;
}

.rating-stars .star-half {
    fill: linear-gradient(to right, #FBBC05 50%, transparent 50%);
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    opacity: 0.8;
}

.summary-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.brand-display {
    flex: 1;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.google-badge img {
    height: 35px;
}

.google-badge span {
    background: #E8F0FE;
    color: #1967D2;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285F4;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
    transition: var(--transition);
}

.review-btn:hover {
    background: #3367D6;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.3);
    color: var(--white);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 196, 198, 0.1);
    border-color: rgba(26, 196, 198, 0.2);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.user-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-text p {
   
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--dark);
    font-weight: 700;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
}

.google-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
}

.card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.card-stars i {
    width: 16px;
    height: 16px;
}

.review-body {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
}

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

    .summary-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .summary-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    }

    .brand-display {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

    .rating-number {
        font-size: 4rem;
    }

    .reviews-summary {
        padding: 40px 25px;
    }
}

gap: 30px;
}

.highlights {
    background: radial-gradient(circle at top right, rgba(0, 196, 204, 0.03), transparent),
        radial-gradient(circle at bottom left, rgba(255, 165, 0, 0.03), transparent);
    position: relative;
}

.highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

/* Subtle floating animation for cards */
.highlight-card:nth-child(odd) {
    animation: float-slow 6s ease-in-out infinite;
}

.highlight-card:nth-child(even) {
    animation: float-slow 8s ease-in-out infinite reverse;
}

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

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

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

.highlight-card:hover {
    animation-play-state: paused;
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 196, 204, 0.15);
    border-color: rgba(0, 196, 204, 0.2);
}

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

.highlight-card i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 196, 204, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.highlight-card:hover i {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.highlight-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

/* Adjust grid for 5 items to look balanced */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-content: center;
}

/* On very large screens, force 5 columns */
@media (min-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

/* Premium Image Overlay Style (Optimized for Visibility) */
.tour-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 620px;
    background: #000;
    border-radius: 30px;
    overflow: visible;
    /* Allow popups to expand outside the card */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(26, 196, 198, 0.3);
    z-index: 50;
    /* Ensure active card and popup are on top */
}

.tour-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 30px;
    overflow: hidden;
}

.tour-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    /* Shifts the subjects as high as possible */
    transition: transform 1.5s ease;
}

.tour-card:hover .tour-img-container img {
    transform: scale(1.1);
}

.tour-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.2) 15%,
            transparent 25%,
            transparent 50%,
            rgba(0, 0, 0, 0.6) 65%,
            rgba(0, 0, 0, 0.85) 85%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tour-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 25px 25px;
    z-index: 5;
    color: white;
    display: flex;
    flex-direction: column;
}

.tour-package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2px;
    font-style: italic;
    color: white !important;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.tour-duration {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.tour-highlights-mini {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    opacity: 0.9;
    letter-spacing: 0.3px;
    color: white;
}

/* Integrated Itinerary Button - Positioned to Left */
.itinerary-btn-wrap {
    position: relative;
    z-index: 10;
    margin-bottom: 75%;
    display: flex;
    justify-content: flex-start;
}

.itinerary-btn {

    background: rgba(26, 196, 198, 0.3);
    border: 1px solid var(--primary);
    color: white;
    padding: 1.3px 5px;
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.itinerary-btn i {
    width: 12px;
    height: 12px;
}

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

.itinerary-popup {
    position: absolute;
    bottom: 125%;
    /* Opens upwards */
    left: 0;
    background: white;
    color: #333;
    width: 280px;
    max-height: 450px;
    overflow-y: auto;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

/* Custom scrollbar for popup */
.itinerary-popup::-webkit-scrollbar {
    width: 4px;
}

.itinerary-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.itinerary-popup::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.itinerary-btn-wrap:hover .itinerary-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.itinerary-popup::after {
    content: '';
    position: absolute;
    bottom: -10px;
    /* Pointer at the bottom */
    left: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    /* Pointing DOWN */
}

.itinerary-quote-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.itinerary-quote-link:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 196, 198, 0.3);
}

.itinerary-quote-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.itinerary-quote-link:hover i {
    transform: translateX(5px);
}

.itinerary-popup h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-align: center;
}

.itinerary-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-popup li {
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    color: #444;
}

.itinerary-popup li i {
    color: #22c55e;
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 2px;
}

.itinerary-popup li i svg {
    width: 100%;
    height: 100%;
}

/* Pricing Row */
.tour-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-top: auto;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #ff4d4d;
    margin-bottom: -2px;
    font-weight: 700;
    opacity: 0.9;
}

.tour-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
}

.tour-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.tour-icon-item i,
.tour-icon-item svg,
.tour-icon-item [data-lucide] {
    width: 22px !important;
    height: 22px !important;
    color: #FFD700 !important;
    stroke: #FFD700 !important;
    stroke-width: 2px !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.price-main-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.per-couple-stack {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.0;
    color: #fff;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.starts-from {
    color: #FFD700;
    display: block;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    margin-top: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.current-price-wrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.current-price-wrap .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.current-price-wrap .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.9);
}

.price-inclusion {
    font-size: 0.8rem;
    color: #FFD700;
    /* Rich Gold for premium visibility */
    font-weight: 800;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.price-inclusion::before {
    content: '✓';
    color: #FFD700;
    font-weight: 900;
    font-size: 0.9rem;
}

.tour-right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.promo-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff8cff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Action Area */
.tour-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-deal {
    flex: 1;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-deal:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 196, 198, 0.4);
}

.btn-whatsapp-small {
    width: 48px;
    height: 48px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-small:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.btn-whatsapp-small i {
    width: 24px;
    height: 24px;
}


.highlights-list {
    padding: 0;
    list-style: none;
    font-size: 1rem;
    /* Slightly larger */
    color: #1A3C40;
    /* Darker, high-contrast color */
    line-height: 1.8;
}

.highlights-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    /* Bolder */
}

.highlights-list li::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.8rem;
}

.close-points {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #f0fdfa;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-points:hover {
    background: var(--primary);
    color: var(--white);
}

/* Full-width Quote Button */
.tour-card-footer {
    width: 100%;
    margin-top: auto;
}

.btn-quote-primary {
    width: 100%;
    background: linear-gradient(135deg, #1AC4C6 0%, #008B8B 100%);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(26, 196, 198, 0.2);
    transition: all 0.4s ease;
}

.btn-quote-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 196, 198, 0.4);
    filter: brightness(1.1);
}

.btn-quote-primary i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-quote-primary:hover i {
    transform: translateX(5px);
}

.tour-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

.tour-inclusions {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligned to left */
}

.tour-inclusions li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligned to left */
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 500;
}

.tour-inclusions i {
    width: 18px;
    color: #008B8B;
    /* Teal-ish color for icons */
}

.tour-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.tour-link {
    color: #007A7C;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.tour-link i {
    width: 20px;
    transition: var(--transition);
}

.tour-link:hover {
    color: var(--secondary);
}

.tour-link:hover i {
    transform: translateX(5px);
}

/* Attractions */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.mobile-only-adventure {
    display: none;
}

.attraction-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
}

.attraction-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.attraction-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 25px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    transition: var(--transition);
    text-align: left;
    z-index: 2;
}

.attraction-item:hover img {
    transform: scale(1.1);
}

.attraction-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.attraction-content p {
    display: none;
}

.attraction-item:hover .attraction-content {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.attraction-item:hover .attraction-content p {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.9;
}


.attraction-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    text-align: left;
    width: 100%;
}

/* Why Choose Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    width: 100%;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    width: 100%;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0fdfa;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 25px;
    /* Removed auto margin for left alignment */
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    /* Removed rotation */
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 196, 204, 0.2);
}



.feature-icon-wrapper i {
    width: 38px;
    height: 38px;
}



.section-desc {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Tour Packages Section */
.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.price-header p {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0 30px;
}

.price-value span {
    font-size: 1rem;
    color: var(--text-light);
}

.price-body ul {
    margin-bottom: 40px;
}

.price-body li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.price-body i {
    color: var(--primary);
}

.special-offer {
    background: rgba(255, 165, 0, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed var(--secondary);
    margin-bottom: 40px;
}

.offer-badge {
    background: var(--secondary);
    color: var(--white);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* CTA Buttons Layout */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Testimonials */
.testimonial-slider {
    padding-bottom: 50px;
}

/* Testimonials Redesign - Premium */
.info-combined {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    padding-top: 100px;
}

.premium-bg-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 10% 20%, rgba(26, 196, 198, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.03) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.testimonial-premium-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(26, 196, 198, 0.12),
        0 0 0 10px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 196, 198, 0.15);
    text-align: center;
    position: relative;
    margin: 40px 0;
    transition: var(--transition);
}

.info-column .varied-title {
    font-size: 2.2rem !important;
    white-space: normal;
}

.info-column .varied-title .script-text {
    font-size: 2.6rem !important;
    display: inline-block;
}

.testimonial-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(26, 196, 198, 0.12);
}

.quote-icon-wrap {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 196, 198, 0.3);
}

.quote-svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    width: 20px;
    height: 20px;
    color: #FFD700;
}

.testimonial-rating .fill,
.testimonial-rating .fill * {
    fill: #FFD700 !important;
    stroke: #FFD700 !important;
}

.testimonial-quote p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 35px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.author-details h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 2px;
    font-weight: 800;
}

.author-details span {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}


/* CTA Banner refinement */
.cta-banner {
    padding: 150px 0;
    margin-top: 0;
    text-align: center;
}

.cta-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #0d1e21;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-simple {
    padding: 10px 0;
    text-align: center;
    background: #0D2B3E !important;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-text {
    margin: 0;
    font-size: 0.75rem !important;
    opacity: 0.8;
    letter-spacing: 0.3px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about h3 span {
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 18px;
}

.footer-bottom {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    gap: 20px;
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* FAQ Premium Redesign */
.faq-accordion-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.faq-item-premium {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(26, 196, 198, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04),
        0 0 0 6px rgba(255, 255, 255, 0.6);
}

.faq-item-premium:hover {
    box-shadow: 0 20px 50px rgba(26, 196, 198, 0.1),
        0 0 0 6px rgba(255, 255, 255, 0.8);
    border-color: rgba(26, 196, 198, 0.25);
}

.faq-header-premium {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.4;
    font-family: 'Outfit', sans-serif;
}

.faq-header-premium h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--dark);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-icon-premium {
    width: 40px;
    height: 40px;
    background: #f0fdfa;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon-premium i {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.faq-item-premium.active .faq-icon-premium {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-body-premium {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium.active .faq-body-premium {
    max-height: 500px;
}

.faq-inner-premium {
    padding: 0 30px 30px 70px;
}

.faq-inner-premium p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item-premium.active {
    background: #ffffff;
    border-color: rgba(26, 196, 198, 0.4);
    box-shadow: 0 20px 50px rgba(26, 196, 198, 0.15),
        0 0 0 8px rgba(255, 255, 255, 0.9);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.fade-up {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Flex for Combined Section */
.info-flex {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    justify-content: space-between;
}

.info-column {
    flex: 1;
    min-width: 0;
}

.text-left {
    text-align: left !important;
    align-items: flex-start !important;
}

@media (max-width: 992px) {
    .info-flex {
        flex-direction: column;
        gap: 50px;
        width: 100%;
    }

    .info-column {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .text-left {
        text-align: center !important;
        align-items: center !important;
    }

    .hero-script {
        font-size: 2.8rem;
        margin-bottom: -10px;
    }

    .premium-title {
        font-size: 3.8rem !important;
        line-height: 1.2 !important;
        letter-spacing: -1px;
        margin-bottom: 20px !important;
    }

    .hero p {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        max-width: 90% !important;
        margin-bottom: 30px !important;
    }



    .info-column .varied-title {
        font-size: 1.8rem !important;
    }

    .info-column .varied-title .script-text {
        font-size: 2.2rem !important;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    #navbar {
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        padding: 5px 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .main-logo {
        height: 50px;
        filter: none;
    }

    .nav-links {
        display: flex;
        gap: 10px;
    }

    .nav-links .btn {
        padding: 10px 20px;
        font-size: 1rem;
        color: var(--dark) !important;
    }

    .nav-links .btn i {
        width: 18px;
        height: 18px;
        color: var(--dark);
    }

    .mobile-menu {
        display: none;
    }

    .nav-links .btn-whatsapp {
        display: none;
    }

    .pricing-table {
        padding: 30px 20px;
    }

    .price-value {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {}

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-premium-card {
        padding: 40px 20px;
        margin: 20px 0;
    }

    .testimonial-quote p {
        font-size: 1.2rem;
    }

    .faq-header-premium {
        padding: 20px 15px;
    }

    .faq-inner-premium {
        padding: 0 15px 25px 15px;
    }

    .faq-title-wrap {
        gap: 15px;
    }

    .faq-header-premium h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-number {
        font-size: 0.9rem;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }

    .cta-btns {
        flex-direction: column;
        gap: 15px !important;
    }

    .cta-subtitle {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .attraction-item {
        height: 300px;
    }

    .tour-duration-row {
        padding: 8px 15px;
        gap: 10px;
    }

    .duration-item {
        font-size: 0.75rem;
    }
}

/* Hamburger Menu styles */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-links.mobile-active a {
    color: var(--dark) !important;
    font-size: 1.2rem;
}

/* Mobile Bottom CTA Bar */
.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #159b9d 100%);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    color: white !important;
    /* Bright Yellow */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-cta-item:last-child {
    border-right: none;
}

.mobile-cta-item i {
    width: 24px;
    height: 24px;
    color: #FFD700;
}

@media (max-width: 768px) {
    .mobile-bottom-cta {
        display: grid;
    }

    body {
        padding-bottom: 70px;
        /* Space for the fixed bar */
    }
}

#hero-form {
    scroll-margin-top: 120px;
}

/* Swiper Tour Slider Perfect Height */
.tour-slider .swiper-slide {
    height: auto;
    display: flex;
}

.tour-slider .tour-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-slider .tour-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-slider .tour-footer {
    margin-top: auto;
}

/* Itinerary Accordion */
.itinerary-accordion {
    margin-top: auto;
    width: 100%;
}

.itinerary-accordion summary {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    list-style: none;
    cursor: pointer;
}

.itinerary-accordion summary::-webkit-details-marker {
    display: none;
}

.itinerary-accordion summary .plan-toggle {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(11, 44, 61, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.itinerary-accordion summary .plan-toggle:hover {
    background: rgba(11, 44, 61, 0.1);
}

.itinerary-accordion summary .plan-toggle::after {
    content: "+";
    font-size: 1.1rem;
    font-weight: normal;
    transition: transform 0.3s;
}

.itinerary-accordion[open] summary .plan-toggle::after {
    content: "-";
    transform: rotate(180deg);
}

.itinerary-list {
    margin-top: 15px;
    padding: 15px;
    list-style: none;
    border-left: 2px dashed var(--primary);
    margin-left: 10px;
    background: #f8f9fa;
    border-radius: 0 12px 12px 0;
}

.itinerary-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.itinerary-list li::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid white;
}

.itinerary-list li span {
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 2px;
}

.itinerary-accordion summary .tour-link {
    white-space: nowrap;
    font-weight: 600;
    color: var(--secondary) !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    text-decoration: none;
}

/* Reveal on Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Fun Fact Card Hover Effect */
.fact-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(26, 196, 198, 0.1) !important;
}

.fact-card:hover div:first-child {
    transform: scale(1.1) rotate(5deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 45deg));
    }

    50% {
        transform: translateY(-20px) rotate(calc(var(--rot, 45deg) + 5deg));
    }
}

.leaf-decor {
    --rot: 45deg;
}

.leaf-decor:nth-child(2) {
    --rot: -135deg;
}

.leaf-decor:nth-child(3) {
    --rot: -30deg;
}

/* Fun Facts Responsive Styles */
.fun-facts-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    background: rgba(26, 196, 198, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(26, 196, 198, 0.1);
}

.fun-facts-subtitle {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0;
}

.fun-facts-title {
    margin-bottom: 40px;
    font-size: 2.8rem;
    color: #102A43;
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .fun-facts-title {
        font-size: 1.4rem !important;
        margin-bottom: 12px;
    }

    .fun-facts-subtitle {
        font-size: 1rem;
    }

    .fun-facts-badge {
        padding: 3px 10px;
        margin-bottom: 5px;
    }

    .fun-facts {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .fact-card {
        padding: 20px !important;
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
        gap: 20px !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    }

    .fact-card div:first-child {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
        transform: none !important;
    }

    .fact-card div:first-child i {
        width: 24px !important;
        height: 24px !important;
    }

    .fact-card div:nth-child(2) {
        text-align: left !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .fact-card div:nth-child(2) div:first-child {
        font-size: 1.7rem !important;
        margin-bottom: 2px !important;
        white-space: nowrap !important;
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        font-weight: 900 !important;
        display: inline-block !important;
    }

    .fact-card div:nth-child(2) div:nth-child(2) {
        font-size: 0.8rem !important;
        margin-bottom: 4px !important;
        letter-spacing: 0.5px !important;
    }

    .fact-card div:nth-child(2) div:nth-child(3) {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
    }

    .fun-facts-footer p {
        font-size: 1rem !important;
    }

    .fun-facts-footer div:first-child {
        margin-bottom: 3px !important;
    }

    .fun-facts-grid {
        gap: 15px !important;
    }

    /* FAQ Mobile Overrides */
    .faq-header-premium {
        padding: 15px 20px;
    }

    .faq-header-premium h3 {
        font-size: 1rem;
    }

    .faq-title-wrap {
        gap: 12px;
    }

    .faq-number {
        font-size: 0.85rem;
    }

    .faq-icon-premium {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .faq-inner-premium {
        padding: 0 20px 20px 20px;
    }

    .faq-inner-premium p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Floral Decor Mobile Scaling */
    .floral-decor {
        width: 80px;
        height: 80px;
    }

    .floral-decor.top-left {
        top: -10px;
        left: -10px;
    }

    .floral-decor.bottom-right {
        bottom: -10px;
        right: -10px;
    }

    /* General Section Padding for Mobile */
    .section-padding {
        padding: 20px 0;
    }

    .varied-title {
        font-size: 1.8rem !important;
    }

    .varied-title .script-text {
        font-size: 2rem !important;
    }

    .hero-form-card {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 2.3rem !important;
        white-space: nowrap;
        margin-bottom: 10px !important;
    }

    .form-header p {
        font-size: 0.75rem !important;
        white-space: nowrap;
        letter-spacing: -0.2px;
    }

    /* Attractions Mobile Layout - 2 per row */
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .mobile-only-adventure {
        display: block !important;
    }

    .attraction-item {
        height: 180px !important;
        border-radius: 15px !important;
    }

    .attraction-content {
        padding: 10px !important;
    }

    .attraction-content h3 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    /* Hero Section Mobile Styling */
    .hero {
        padding: 40px 0 20px;
        justify-content: center !important;
        text-align: center !important;
        padding-right: 0 !important;
        width: 100% !important;
        height: 85vh;
        overflow-x: hidden;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 21%) 40%, rgb(0 0 0 / 61%) 60%, rgb(0 0 0 / 64%) 100%) !important;
    }

    .hero-flex {
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-text {
        max-width: 90% !important;
        text-align: center !important;
    }

    .hero-script {
        font-size: 4rem !important;
        margin-bottom: -10px !important;
        margin-right: 0 !important;
        text-align: center !important;
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.6), 0 2px 5px rgba(0, 0, 0, 0.9) !important;
    }

    .premium-title {
        font-size: 5rem !important;
        line-height: 1 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        margin-right: 0 !important;
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 5px 25px rgba(0, 0, 0, 0.9) !important;
        word-wrap: break-word;
        max-width: 100%;
    }

    .hero p {
        font-size: 1.15rem !important;
        line-height: 1.5 !important;
        max-width: 320px !important;
        margin: 0 auto 15px !important;
        text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 1) !important;
        text-align: center !important;
        font-weight: 600 !important;
    }

    .hero-btns {
        justify-content: center !important;
    }

    /* Itinerary Popup Mobile Fix */
    .itinerary-popup {
        width: 90vw !important;
        max-width: 300px !important;
        left: -20% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(15px) !important;
        bottom: 110% !important;
        /* Ensure it opens UP and stays above button */
    }

    .itinerary-btn-wrap:hover .itinerary-popup {
        transform: translateX(-50%) translateY(0) !important;
    }

    .itinerary-popup::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: -10px !important;
        border-top: 10px solid white !important;
        border-bottom: none !important;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    border-radius: 30px;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.close-modal:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-container .hero-form-card {
    box-shadow: none !important;
    border: none !important;
    padding: 40px 30px;
    margin: 0 !important;
}

body.modal-open {
    overflow: hidden;
}

/* Ensure form in modal looks perfect */
.modal-container .form-header h3 {
    font-size: 2.2rem !important;
    margin-bottom: 5px !important;
}

.modal-container .form-header p {
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
}

.modal-container .hero-form .form-group input,
.modal-container .hero-form .form-group select {
    background: #f8f9fa;
    border: 1px solid #eee;
}

.modal-container .submit-btn {
    width: 100%;
    margin-top: 10px;
}