/* --- CSS Variables & Theming --- */
:root {
    --primary-color: #d10056;
    --secondary-color: #ff9a44;
    --accent-color: #fc6076;
    --bg-dark: #121212;
    --bg-light: #fff8f5;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #7b7b7b;

    --gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-2: linear-gradient(45deg, #ff4e50, #f9d423);
    --gradient-text: linear-gradient(to right, var(--primary-color), var(--secondary-color));

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);

    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    --footer-bg: #000370;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Serif Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h2 {
    font-size: 2.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.w-100 {
    width: 100%;
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

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

.mt-4 {
    margin-top: 1.5rem;
}

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

.d-block {
    display: block;
}

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

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

/* --- Form Success Fixes --- */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    width: 100%;
    animation: fadeInUp 0.5s ease both;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
}

.success-icon {
    font-size: 3.5rem;
    color: #25D366;
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--text-dark) !important;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-muted) !important;
    font-size: 1.05rem;
    max-width: 400px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-light);
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(209, 0, 86, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(209, 0, 86, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.gradient-btn:hover::before {
    opacity: 1;
}

/* --- Floating Actions --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.fab-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

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

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp::after {
    background-color: #25D366;
}

.btn-phone {
    background-color: #007bff;
}

.btn-phone::after {
    background-color: #007bff;
}

.btn-ai {
    background: var(--gradient-1);
}

.btn-ai::after {
    background: var(--primary-color);
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    padding: 15px 0;
    background: transparent;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrapper img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: -webkit-linear-gradient(#00b4d8, #0d47a1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.company-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-light);
    /* Default for transparent header */
    line-height: 1;
}

.company-quote {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.main-header.scrolled .company-name {
    color: var(--text-dark);
}

.main-header.scrolled .company-quote {
    color: var(--text-muted);
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-header.scrolled .desktop-nav a {
    color: var(--text-dark);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

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

.main-header.scrolled .mobile-toggle {
    color: var(--text-dark);
}

/* --- Off-Canvas Menu --- */
.off-canvas-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--text-light);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.off-canvas-menu.active {
    left: 0;
}

.off-canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.off-canvas-header .company-name {
    color: var(--primary-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.mobile-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    padding: 0 10px;
}

.mobile-btn {
    width: 135px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 600;
    color: white;
}

.mobile-btn.btn-call {
    background: var(--gradient-1);
}

.mobile-btn.btn-whatsapp-mob {
    background: #25D366;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--text-light);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.location-badge i {
    color: #ff5252;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(4px);
}

.feature-badge i {
    color: var(--secondary-color);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.btn-call-hero,
.btn-whatsapp-hero {
    width: 100%;
    height: 55px;
    /* Ensures both buttons match identically in height */
}

.btn-whatsapp-hero {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp-hero:hover {
    background: #20b858;
    border-color: #20b858;
    color: white;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    width: 30px;
    border-radius: 10px;
    background: var(--text-light);
}

/* --- Why Choose Us --- */
.section-header {
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.gradient-bg {
    background: var(--gradient-1);
}

.feature-card:hover .icon-box {
    transform: rotateY(180deg);
}

/* --- Stats Banner --- */
.stats-banner {
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    margin: 15px;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    margin-bottom: 0;
    display: inline-block;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* --- Popular Destinations --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dest-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.dest-overlay-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.dest-card:hover .dest-overlay-label {
    opacity: 1;
}

.dest-content {
    padding: 25px;
}

.dest-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dest-header-top h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.label-badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dest-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btnnn {
    color: #ffffff !important;
}

.btn-text:hover {
    gap: 15px;
}

/* --- Trending Packages --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pkg-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.package-card:hover .pkg-img-wrapper img {
    transform: scale(1.1);
}

.price-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.price-label span {
    font-size: 0.8rem;
    font-weight: normal;
}

.pkg-content {
    padding: 25px;
}

.pkg-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pkg-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pkg-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-meta i {
    color: var(--secondary-color);
}

.pkg-inclusions {
    margin-bottom: 25px;
}

.inclusions-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.inclusions-list {
    display: none;
    padding-top: 10px;
}

.inclusions-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions-list i {
    color: #28a745;
}

/* --- Custom PKG CTA --- */
.custom-pkg-cta {
    position: relative;
    color: white;
    background: linear-gradient(135deg, rgba(209, 0, 86, 0.9), rgba(255, 154, 68, 0.9)), url('https://images.unsplash.com/photo-1595815771614-ade9d652a65d?q=80&w=2070&auto=format&fit=crop') center/cover;
    background-attachment: fixed;
}

.custom-pkg-cta h2 {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.8);
}

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

.review-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-details {
    text-align: left;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1.1rem;
}

.reviewer-details span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gradient-star-divider {
    margin: 20px 0;
    font-size: 1.5rem;
}

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

.highlight-text {
    margin-bottom: 5px;
}

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

/* --- Contact & Form --- */
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 20px;
}

.info-box {
    background: var(--text-light);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 1;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.info-box:hover::before {
    opacity: 0.5;
}

.info-box .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.map-box {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.map-box iframe {
    flex-grow: 1;
    height: 100% !important;
    min-height: 250px;
    width: 100%;
}

.contact-form-container {
    flex: 1;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 45px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.booking-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.input-glow {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-sm);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--primary-color);
    transition: var(--transition);
}

.input-glow:focus-within {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), inset 0 2px 4px rgba(0, 0, 0, 0.01);
    transform: translateY(-2px);
}

.input-glow:focus-within .input-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.input-glow input,
.input-glow textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1.05rem;
    background: transparent;
    transition: all 0.3s ease;
}

.input-glow textarea {
    padding-left: 20px;
}

/* textarea no icon needed */

.input-glow input:focus,
.input-glow textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.radio-wrapper {
    display: flex;
    gap: 20px;
}

.radio-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-btn input {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.radio-btn input:checked+.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gradient-1);
    border-radius: 50%;
}

.form-success {
    display: none;
    width: 100%;
    background: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

/* --- Footer --- */
.main-footer {
    background: #02066F;
    /* Unique gradient using the theme footer color */
    color: whitesmoke;
    margin: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: start;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer-logo-img {
    height: 60px;
    /* balanced height */
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-logo .company-name {
    font-size: 1.5rem;
    font-family: 'DM Serif Display', serif;
}

.footer-col h4 {
    color: var(--text-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

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

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

.useful-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.useful-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

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

/* Responsive Media Queries */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 80%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        height: auto;
        min-height: 580px;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .hero-carousel, .hero-carousel .slide {
        height: 100%;
        min-height: 580px;
    }

    .carousel-indicators {
        bottom: 10px !important;
    }
}

/* --- Form Confirmation Modal --- */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none; /* Changed to flex in JS */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.confirmation-modal.active {
    display: flex;
}

.confirm-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.4s ease;
}

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

.confirm-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.confirm-label {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.confirm-value {
    font-weight: 600;
    color: var(--text-dark);
}

/* ======================================
   PREMIUM BOOKING POPUP MODAL
   ====================================== */

/* — Overlay: subtle dark blur behind the card — */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 10, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* — Card: fully opaque, dark, no scroll — all fields visible in one view — */
.modal-container {
    position: relative;
    width: 100%;
    max-width: 780px;
    /* wider to fit 2-col grid better */
    height: auto;
    /* shrink-wrap to content, no fixed height */
    overflow: visible;
    /* NO scroll whatsoever */
    border-radius: 22px;
    padding: 28px 36px 28px;
    /* tighter padding so form fits */

    /* Solid dark background */
    background: #12122a;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 32px 80px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05);

    animation: modalPop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalPop {
    from {
        transform: scale(0.88) translateY(36px);
        opacity: 0;
    }

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

/* — Close button — */
.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.3s;
    z-index: 2;
}

.close-modal:hover {
    background: #d10056;
    border-color: #d10056;
    transform: rotate(90deg);
    color: #fff;
}

/* — Header block — */
.modal-header-block {
    text-align: center;
    margin-bottom: 14px;
}

.modal-icon-ring {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, #fff 0%, #81807f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 5px 16px rgba(209, 0, 86, 0.45);
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 5px 16px rgba(209, 0, 86, 0.45);
    }

    50% {
        box-shadow: 0 5px 28px rgba(209, 0, 86, 0.75);
    }
}

.modal-title {
    font-size: 1.55rem;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    margin-bottom: 4px;
    line-height: 1.2;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.82rem;
    max-width: 420px;
    margin: 0 auto;
}

.selected-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    background: linear-gradient(135deg, #d10056, #ff9a44);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(209, 0, 86, 0.35);
    animation: badgeFadeIn 0.4s ease both;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* — Form grid — */
.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3-col to pack more in one row */
    gap: 10px 14px;
}

.modal-field-full {
    grid-column: 1 / -1;
}

.modal-field-half {
    grid-column: span 1;
}

.modal-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.modal-field label i {
    margin-right: 3px;
    opacity: 0.65;
}

.req {
    color: #ff9a44;
}

/* Solid, fully readable inputs */
.modal-field input,
.modal-field textarea {
    width: 100%;
    padding: 8px 11px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #1e1e40;
    color: #f0f0f0;
    font-size: 0.88rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.modal-field input::placeholder,
.modal-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.modal-field input:focus,
.modal-field textarea:focus {
    border-color: #d10056;
    box-shadow: 0 0 0 3px rgba(209, 0, 86, 0.22);
    background: #22224e;
}

.modal-field textarea {
    resize: none;
}

/* Date picker icon invert */
.modal-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

/* — Radio buttons — */
.modal-radio-group {
    display: flex;
    gap: 18px;
    margin-top: 4px;
}

.modal-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    user-select: none;
}

.modal-radio-label input[type="radio"] {
    display: none;
}

.modal-radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.modal-radio-label input[type="radio"]:checked+.modal-radio-custom {
    border-color: #d10056;
    background: #d10056;
    box-shadow: 0 0 0 3px rgba(209, 0, 86, 0.25);
}

.modal-radio-label input[type="radio"]:checked+.modal-radio-custom::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    display: block;
}

.modal-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
}

/* — Submit button — */
.modal-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 11px 20px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #d10056 0%, #ff9a44 100%);
    box-shadow: 0 6px 20px rgba(209, 0, 86, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.modal-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fc6076 0%, #ffb347 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-submit-btn:hover::before {
    opacity: 1;
}

.modal-submit-btn span {
    position: relative;
    z-index: 1;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(209, 0, 86, 0.5);
}

.modal-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* — Success state — */
.modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    text-align: center;
    animation: fadeInUp 0.45s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.modal-success-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d10056, #ff9a44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 10px 28px rgba(209, 0, 86, 0.4);
    animation: successPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successPop {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-success h3 {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.modal-success p {
    color: var(--text-muted);
    max-width: 340px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Modal specific overrides if on dark overlay */
.booking-modal-overlay .modal-success h3 {
    color: #fff;
}

.booking-modal-overlay .modal-success p {
    color: rgba(255, 255, 255, 0.68);
}

/* — Responsive — */
@media (max-width: 700px) {
    .modal-container {
        padding: 36px 20px 28px;
        height: auto;
        max-height: 90vh;
        /* give more height on small screens */
        border-radius: 18px;
    }

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

    .modal-title {
        font-size: 1.5rem;
    }
}