﻿:root {
    /* Colors */
    --primary-blue: #382e80;
    --secondary-purple: #7C7FD9;
    --accent-white: #FFFFFF;
    --bg-light-blue: rgb(255, 255, 255);
    --text-dark: #1A1A2E;
    --text-grey: #6B7280;
    --success-green: #10B981;
    --gradient-purple: linear-gradient(135deg, #7C7FD9 0%, #5B5ED9 100%);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 30px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light-blue);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-purple);
    color: white;
}

.btn-primary:hover {
    background-color: #5B5ED9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(91, 94, 217, 0.3);
}

.btn-gradient {
    background: var(--gradient-purple);
    color: white;
    border: none;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header */
#main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    height: 100px;
    display: flex;
    align-items: center;
}

.header-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
}

.header-cta .btn:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(0);
}

.desktop-nav a {
    font-weight: 500;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    /* letter-spacing: 0.5px; */
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Logo */
.main-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.581);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}



.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-dark);
}

.desktop-nav a:hover {
    color: var(--secondary-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    color: #fff;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    font-size: 20px;
    background: none;
    margin-bottom: 20px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Section */
#hero {
    position: relative;
    padding: 70px 0 10px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #333;
    color: white;
    background-image: linear-gradient(rgba(1, 9, 45, 0.45), rgba(0, 10, 53, 0.45)), url('../images/hero-bg-v.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0 0 25px 25px;
}

/* Fix for iOS background-attachment: fixed issue */
@media (max-width: 1024px) {
    #hero {
        background-attachment: scroll;
    }
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    gap: 30px;
}

.hero-content {
    width: 40%;
}

.hero-title {
    font-size: 3.2rem;
    /* Reduced by ~30% */
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 1.4rem;
    /* Reduced by ~30% */
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 1;
}

.countdown-timer {
    margin-bottom: 40px;
}

.timer-label {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.7;
    font-weight: 200;
    letter-spacing: 1px;
}

.timer-boxes {
    display: flex;
    gap: 20px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: auto;
}

.time-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    font-size: 0.45rem;
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
}

.hero-btn {
    background: #5a4bcf;
    /* Specific purple from design */
    border: none;
    color: white;
    font-weight: 700;
    padding: 10px 50px;
    border-radius: 50px;
    font-size: 1.125rem;
    /* box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4); */
}

.hero-btn:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 15px 35px rgba(108, 92, 231, 0.5); */
    background: #6f5cff;
}

/* Hero Cards (Right Side) */
/* Hero Cards (Right Side) */
.hero-cards {
    width: 55%;
    position: relative;
    height: auto;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.destination-card {
    position: relative;
    width: 200px;
    /* Slim vertical card */
    height: 400px;
    /* Tall */
    background: white;
    border-radius: 15px;
    /* More rounded */
    /* box-shadow: 0 20px 40px rgba(1, 3, 52, 0.5); */
    overflow: hidden;
    /* transition: transform 0.3s ease; */
    /* cursor: pointer; */
    border: none;
}

/* Override specific positioning */
.card-1,
.card-2,
.card-3 {
    top: auto;
    right: auto;
    z-index: 1;
}

.destination-card .card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-image {
    transform: scale(1.1);
}

.destination-card .card-content {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 7, 42, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-blue);
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.destination-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.destination-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.card-arrow {
    position: absolute;
    bottom: 25px;
    left: 25px;
    /* Left aligned as per design */
    color: white;
    font-size: 34px;
    opacity: 0.8;
}

.card-arrow1 {
    position: absolute;
    bottom: 10px;
    left: 25px;
    /* Left aligned as per design */
    color: white;
    font-size: 34px;
    opacity: 0.5;
    font-weight: 200;
}

/* Core Section Styles */
.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: white;
    /* Or very light grey */
}

.section-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.section-desc {
    color: var(--primary-blue);
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 100 !important;
}

.text-center {
    text-align: center;
}

/* About Section */
.about-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.about-image {
    width: 50%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.about-content {
    width: 50%;
    background-color: #E0E7FF;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    /* Horizontal alignment */
    align-items: center;
    text-align: left;
    gap: 15px;
}

.feature-item span {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.3;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(46, 63, 143, 0.1);
    /* Light fade of primary */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 0;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.package-content {
    padding: 15px;
}

.package-header h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0px;
}

.package-location {
    font-size: 0.8rem;
    color: var(--secondary-purple);
    font-weight: 500;
    margin-bottom: 10px;
}

.package-desc {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 10px;
    line-height: 1.5;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-grey);
    font-size: 1rem;
}

.new-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.new-price small {
    font-size: 0.8rem;
    font-weight: 400;
}

.btn-full {
    width: 100%;
    display: block;
}

/* More Offers Section */
#more-offers {
    background-color: #e3e9ff;
}

.offers-slider {
    width: 100%;
    position: relative;
    padding-bottom: 20px;
    /* Minimal padding */
    overflow: hidden;
}

.custom-pagination {
    position: static;
    /* Flow naturally below */
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.custom-pagination .swiper-pagination-bullet {
    background: var(--primary-blue);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
}

.custom-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-purple);
    width: 12px;
    height: 12px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.03);
}

.offer-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.offer-content {
    padding: 10px 10px;
}

.offer-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0px;
    font-size: 1.1rem;
}

.offer-loc {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.offer-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-purple);
    margin-bottom: 0px;
}

.offer-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-grey);
}

.btn-text {
    color: var(--secondary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 20px;
    background-color: #5a4bcf;
    border-radius: 50px;
    color: white;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

/* Lead Capture Form */
.leads-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.leads-content-card {
    width: 60%;
    /* Adjusted width */
    background-color: #635bff;
    /* Reference Purple */
    padding: 60px 80px;
    color: white;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leads-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 500;
}

.leads-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 60%;
}

.timer-label {
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Updated Timer Styles */
.leads-timer .timer-boxes {
    display: flex;
    gap: 15px;
}

.leads-timer .timer-box {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Circle */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #635bff;
}

.leads-timer .time-value {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.leads-timer .time-label {
    font-size: 0.55rem;
    text-transform: capitalize;
    margin-top: 2px;
}

/* Floating Form Card */
.leads-form-card {
    width: 380px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 12%;
    /* Moved Right to clear text */
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.leads-form-card .form-group {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 1px;
}

.leads-form-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.leads-form-card input,
.leads-form-card select {
    width: 100%;
    border: none;
    background: transparent;
    padding: 5px 0;
    font-size: 0.95rem;
    color: #555;
    outline: none;
}

.leads-form-card .form-check {
    display: flex;
    align-items: center;
    /* Correct vertical alignment */
    gap: 10px;
    margin-bottom: 25px;
}

.leads-form-card .form-check input {
    margin: 0;
    width: auto;
    /* Reset width from 100% */
}

.leads-form-card .form-check label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 0;
}

.leads-form-card button[type="submit"] {
    background-color: #635bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
}

.leads-form-card button[type="submit"]:hover {
    background-color: #5046e5;
}

/* Image Placeholder styling */
.leads-image-placeholder {
    position: absolute;
    right: 0;
    /* Adjust to pull it towards the edge */
    bottom: -60px;
    /* Hide bottom cut-off if any */
    z-index: 5;
    /* Behind form (z-index 10) */
    pointer-events: none;
}

.leads-image-placeholder img {
    height: 580px;
    /* Adjust height to match section */
    width: auto;
    object-fit: contain;
    /* Optional: Mix blend mode if background isn't perfectly transparent */
    mix-blend-mode: multiply;
    /* Since image has white bg and section is white/purple, multiply might help blend white edges if any */
}

/* Helper */
.text-white {
    color: white !important;
}



.form-error {
    color: red;
    font-size: 0.8rem;
    position: absolute;
    bottom: -20px;
    left: 0;
    display: none;
    /* Show via JS */
}



#form-message {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

.message-success {
    color: var(--success-green);
}

.message-error {
    color: red;
}

/* Social Proof */
/* Social Proof */
.testimonials-slider {
    padding-bottom: 30px;
    /* Space for pagination */
    overflow: hidden;
}

.testimonials-pagination {
    position: static;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: var(--primary-blue);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-purple);
    width: 12px;
    height: 12px;
}


.testimonial-card {
    background: #F9FAFF;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-align: right;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
}

.user-info h5 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-grey);
}

/* Footer */
/* Footer */
footer {
    background-color: #635bff;
    /* Secondary Purple */
    padding-top: 80px;
    border-top: none;
    color: white;
    border-radius: 20px 20px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col a {
    color: white;
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer Logo Styling (Glassmorphism) */
.footer-logo {
    display: inline-block;
    background: rgba(251, 251, 251, 0.604);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo img {
    margin-bottom: 0 !important;
    /* Override inline style */
    display: block;
}

.chat-bubble {
    background: #FFD700;
    padding: 10px 15px;
    border-radius: 20px 20px 20px 0;
    font-size: 0.9rem;
    color: black;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #635bff;
    font-weight: 700;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: #FFD700;
    color: black;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    /* Slightly darker overlay */
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        margin-top: 30px;
        flex-direction: column;
        /* text-align: center; */
    }

    .hero-content {
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cards {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .destination-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        height: 150px;
        width: 100%;
        max-width: 360px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .desktop-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* About Section Responsive */
    .about-container {
        flex-direction: column;
        border-radius: 0;
        gap: 20px;
    }

    .about-image {
        display: none;
    }

    .about-content {
        width: 100%;
        border-radius: 16px;
        padding: 30px;
    }

    /* Lead Capture Responsive */
    .leads-wrapper {
        flex-direction: column;
        padding-bottom: 50px;
        /* Space for the floating form bottom */
        width: 95%;
        /* Prevent full edge on mobile */
    }

    .leads-content-card {
        width: 100%;
        padding: 40px 20px 100px 20px;
        /* Extra bottom padding for overlap */
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .leads-title {
        font-size: 2.2rem;
    }

    .leads-desc {
        max-width: 100%;
        font-size: 1rem;
    }

    .leads-timer .timer-boxes {
        justify-content: center;
    }

    .leads-form-card {
        position: relative;
        width: 90%;
        max-width: 400px;
        right: auto;
        top: auto;
        transform: translateY(-100px);
        /* Pull up to overlap */
        margin: 0 auto;
        margin-bottom: -100px;
        /* Counteract the pull up for flow */
        padding: 25px;
    }

    .leads-image-placeholder {
        display: none;
        /* Hide image on mobile if present */
    }

    /* Footer Responsive */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .chat-bubble {
        border-radius: 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Mobile Menu Toggle */

    .mobile-menu-toggle {
        display: flex;
    }

    /* About Responsive */
    .about-container {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

    .about-image {
        height: 300px;
    }

    /* Offers Responsive */
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Leads Responsive */
    .leads-container {
        flex-direction: column;
    }

    .leads-left,
    .leads-right {
        width: 100%;
        padding: 40px 20px;
    }

    .leads-title {
        font-size: 2.5rem;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0px;
    }

    .hero-subtitle {
        margin-bottom: 30px;
    }

    .destination-card h3 {
        /* color: white; */
        /* font-size: 1.8rem; */
        margin-bottom: 5px;
        /* text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
    }

    .destination-card p {
        /* color: rgba(255, 255, 255, 0.8); */
        /* font-size: 0.8rem; */
        margin-bottom: 20px;
    }

    .card-arrow {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .leads-title {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .timer-boxes {
        gap: 5px;
    }

    .timer-box {
        min-width: 55px;
        padding: 5px;
    }

    .time-value {
        font-size: 1.4rem;
    }
}

/* Promotional Feature Section */
#promo-feature {
    background-color: #e3e9ff;
}

.promo-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 10px;
}

.promo-content {
    flex: 1;
}

.promo-title {
    color: var(--secondary-purple);
    /* Purple Heading */
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 600;
}

.promo-location {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.promo-location i {
    color: var(--secondary-purple);
    margin-right: 8px;
}

.promo-desc {
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.promo-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.promo-pricing {
    margin-bottom: 0;
    /* Remove bottom margin as it's now in a flex row */
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.new-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--secondary-purple);
}

.new-price-label {
    font-size: 1.5rem;
    font-weight: 700;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
}

.price-unit {
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

.promo-main-image {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.promo-main-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 350px;
    object-fit: cover;
}

.save-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--secondary-purple);
    padding: 5px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.promo-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.promo-gallery img:hover {
    transform: translateY(-3px);
}

/* Responsive Promo */
@media (max-width: 992px) {
    .promo-inner-container {
        border: 1px solid rgb(255, 255, 255);
        /* Thin border as requested */
        padding: 20px;
        border-radius: 15px;
        /* background: white; */
        /* Ensure content stands out against section bg */
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .promo-wrapper {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }

    .promo-main-image {
        display: none;
        /* Hide main image on mobile as requested */
    }

    .promo-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-title {
        font-size: 2rem;
    }

    /* Reduce Pricing & Button Size on Mobile (~30%) */
    .new-price-label {
        font-size: 1rem;
    }

    .new-price {
        font-size: 1.4rem;
    }

    .price-unit {
        font-size: 0.6rem;
    }

    .promo-action-row {
        gap: 15px;
        margin-bottom: 5px;

    }

    .promo-action-row .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* FAQ Section */
/* FAQ Section */
.faq-accordion {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    gap: 30px;
    align-items: start;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    /* Add padding inside item */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* Reduced vertical padding */
    cursor: pointer;
    /* font-weight: 600; */
    color: var(--text-dark);
    /* font-family: var(--font-heading); */
    font-size: 1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--secondary-purple);
}

.faq-icon i {
    transition: transform 0.3s;
    color: var(--secondary-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-grey);
    line-height: 1.6;
}

.faq-answer p {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* FAQ Active State */
.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    /* Turn plus to x */
}

/* Responsive FAQ */
@media (max-width: 992px) {
    .faq-accordion {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 0;
    }
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: popupSlideUp 0.4s ease-out;
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-grey);
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: var(--secondary-purple);
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    color: var(--secondary-purple);
    font-weight: 700;
    margin-bottom: 5px;
}

.popup-header p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--secondary-purple);
    outline: none;
}

.popup-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

/* Package Actions Buttons */
.package-actions {
    display: flex;
    gap: 5px;
    margin-top: 5px;
    justify-content: space-between;
}

.btn-action {
    flex: 1;
    padding: 8px 4px;
    font-size: 0.75rem;
    border-radius: 6px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-action i {
    font-size: 0.9em;
}

.btn-action:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-call {
    background-color: #fd661e;
}

.btn-whatsapp {
    color: var(--primary-blue);
    background-color: rgba(213, 213, 213, 0.282);
    font-weight: bold;
    border: 1px solid rgb(8, 85, 0);
}

.btn-enquiry {
    background-color: var(--primary-blue);
}

/* About Features - Layout Fix */
.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--secondary-purple);
    width: 50px;
    height: 50px;
    background: rgba(124, 127, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Mobile Responsive - Row-wise (2 per row) */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-item {
        padding: 10px;
    }
}

.btn-call i {
    transform: scaleX(-1);
}


/* Fixed WhatsApp Button */
.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2ed573;
    /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
    background-color: #25bb65;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 213, 115, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0);
    }
}

@media (max-width: 576px) {
    .fixed-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}



.read-more-link {
    color: #fd661e;
    cursor: pointer;
    font-weight: 600;
    margin-left: 5px;
    font-size: 0.85rem;
}

.read-more-link:hover {
    text-decoration: underline;
}