:root {
    --red: #D91E25;
    --red-dark: #a8141a;
    --gold: #C9A84C;
    --gold-light: #F0C84A;
    --dark: #0f0f1a;
    --dark2: #1a1a2e;
    --cream: #faf7f2;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --text: #1f1f2e;
    --gradient: linear-gradient(135deg, #D91E25 0%, #1e5ac5 100%);
    --gradient-dark: linear-gradient(135deg, #a8141a 0%, #1e5ac5 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* ─── PRELOADER ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-circle {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: 900;
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    background: var(--gradient);
    width: 0;
    animation: preloaderLoad 2s ease forwards;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.7;
        transform: scale(0.97)
    }
}

@keyframes preloaderLoad {
    to {
        width: 100%;
    }
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.section-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-title span {
    color: var(--red);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
}



/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(217, 30, 37, 0.35);
}

.btn-primary:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 30, 37, 0.5);
}

.btn-outline {
    background: #fffbfb;
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: white;
    color: var(--red);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-outline-red:hover {
    background: var(--red);
    color: white;
}

.btn-white {
    background: white;
    color: var(--red);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
}

/* ─── NAVBAR ─── */
#navbar {
    background: white;
    position: relative;
    /* ✅ normal flow initially */
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
      padding: 7px 0px;
}

#navbar.scrolled {
    position: fixed;
    /* ✅ becomes fixed on scroll */
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1225px;
    margin: 0 auto;
    padding: 0 24px;
    
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo-circle {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(217, 30, 37, 0.4);
    font-family: 'Playfair Display', serif;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

#navbar.scrolled .nav-logo-text {
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 11px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

#navbar.scrolled .nav-link {
    color: var(--text);
}

.nav-link:hover,
.nav-link.active {
    color: #bd1b0e;
}

#navbar.scrolled .nav-link:hover {
    background: var(--gray-light);
    color: var(--red);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.87rem;
    color: var(--text);
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--gray-light);
    color: var(--red);
    padding-left: 20px;
}

.dropdown a::before {
    content: '→';
    color: var(--red);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
    margin-right: -4px;
}

.dropdown a:hover::before {
    opacity: 1;
}

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(217, 30, 37, 0.35);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 30, 37, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgb(0, 0, 0);
    border-radius: 2px;
    transition: var(--transition);
}

#navbar.scrolled .hamburger span {
    background: var(--text);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 72px);
    background: white;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--red);
}

.mobile-dropdown {
    display: none;
    padding-left: 16px;
}

.mobile-dropdown.open {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 8px;
    font-size: 0.88rem;
    color: var(--gray);
    transition: var(--transition);
}

.mobile-dropdown a:hover {
    color: var(--red);
}

/* ─── HERO ─── */
#hero {
        position: relative;
    height: 88vh;
    min-height: 529px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(15 15 26 / 82%) 0%, rgb(0 0 0 / 17%) 100%);
}
.slide-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=1920&q=80');
}

.slide-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920&q=80');
}

.slide-bg-3 {
    background-image: url('https://images.unsplash.com/photo-1478436127897-769e1b3f0f36?w=1920&q=80');
}

.slide-bg-4 {
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80');
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.hero-text {
    max-width: 1045px;
    width: 100%;
    margin: 0 auto;
  
}

.slide-content {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(189 27 14);
    border: 1px solid rgb(255 255 255 / 40%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-tag span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-h1 {
       font-size: 50px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-h1 span {
    color: white;
}

.hero-sub {
       font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    font-weight: 500;
     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-desc {
     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-size: 0.98rem;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    width: 64px;
    background: var(--gold-light);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

#heroNext {
    right: 32px;
}

#heroPrev {
    left: 32px;
}

/* ─── ENQUIRY BAR ─── */
.enquiry-section {
    background: var(--dark2);
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.enquiry-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.enquiry-title {
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 4px;
}

.enquiry-title span {
    color: var(--gold-light);
}

.enq-field {
    flex: 1;
    min-width: 150px;
}

.enq-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.enq-field select,
.enq-field input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.enq-field select option {
    background: var(--dark2);
    color: white;
}

.enq-field select:focus,
.enq-field input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.enq-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.enq-counter button {
    width: 38px;
    height: 44px;
    background: none;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.enq-counter button:hover {
    background: var(--red);
}

.enq-counter span {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.enq-submit {
    flex-shrink: 0;
}

.btn-pulse {
    background: var(--gradient);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(217, 30, 37, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 30, 37, 0.6);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(217, 30, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 30, 37, 0);
    }
}

.btn-pulse:hover {
    transform: translateY(-2px);
}

.enq-note {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.enq-note i {
    color: var(--gold);
    margin-right: 4px;
}

/* ─── ABOUT ─── */
.about-section {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 520px;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #ddd;
    background-size: cover;
    background-position: center;
}

.about-img:nth-child(1) {
    grid-row: span 2;
    background-image: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=600&q=80');
}

.about-img:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=600&q=80');
}

.about-img:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1553621042-f6e147245754?w=600&q=80');
}

.about-badge-float {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.about-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D91E25, #C9A84C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.about-badge-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.about-text {}

.about-text p {
    font-size: 0.97rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-point:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.about-point-icon {
    width: 36px;
    height: 36px;
    background: rgba(217, 30, 37, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.about-point strong {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.about-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── WHY CHOOSE ─── */
.why-section {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    padding: 36px 28px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    cursor: default;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover .why-icon,
.why-card:hover .why-title,
.why-card:hover .why-desc {
    position: relative;
    z-index: 1;
}

.why-card:hover .why-icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.why-card:hover .why-title {
    color: white;
}

.why-card:hover .why-desc {
    color: rgba(255, 255, 255, 0.85);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: rgba(217, 30, 37, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: var(--red);
    transition: var(--transition);
}

.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    transition: var(--transition);
}

.why-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    transition: var(--transition);
}

/* ─── PACKAGES ─── */
.packages-section {
    padding: 100px 0;
    background: var(--cream);
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    background: white;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(217, 30, 37, 0.3);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pkg-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pkg-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.pkg-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.08);
}

.pkg-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pkg-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.pkg-duration i {
    color: var(--gold);
    margin-right: 4px;
}

.pkg-body {
    padding: 22px;
}

.pkg-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.pkg-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
}

.pkg-reviews {
    font-size: 0.78rem;
    color: var(--gray);
}

.pkg-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
}

.pkg-loc {
    font-size: 0.76rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 3px;
}

.pkg-loc i {
    color: var(--red);
    font-size: 0.65rem;
}

.pkg-loc::after {
    content: '→';
    margin-left: 2px;
    font-size: 0.65rem;
    color: #ccc;
}

.pkg-loc:last-child::after {
    display: none;
}

.pkg-inclusions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.incl-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(217, 30, 37, 0.06);
    border-radius: 50px;
    font-size: 0.73rem;
    color: var(--text);
    font-weight: 500;
}

.incl-tag i {
    color: var(--red);
    font-size: 0.68rem;
}

.pkg-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pkg-price-original {
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: line-through;
}

.pkg-price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    font-family: 'Playfair Display', serif;
}

.pkg-save {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 600;
    background: rgba(22, 163, 74, 0.08);
    padding: 3px 8px;
    border-radius: 50px;
}

.pkg-btns {
    display: flex;
    gap: 10px;
}

.pkg-btns .btn {
    flex: 1;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.84rem;
}

/* ─── SERVICES ─── */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.svc-card {
    padding: 30px 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.svc-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(217, 30, 37, 0.3);
}

.svc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.svc-link {
    font-size: 0.84rem;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.svc-link i {
    transition: transform 0.3s;
}

.svc-card:hover .svc-link i {
    transform: translateX(4px);
}

/* ─── STATS ─── */
.stats-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark2) 0%, #0f0f1a 100%);
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920&q=80') center/cover;
    opacity: 0.08;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num span {
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stats-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.2rem;
}

.trust-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ─── DESTINATIONS ─── */
.dest-section {
    padding: 100px 0;
    background: var(--cream);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 280px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.dest-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
}

.dest-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 30, 37, 0.3), rgba(201, 168, 76, 0.2));
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    z-index: 1;
}

.dest-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.dest-spots {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.dest-link {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: var(--transition) 0.1s;
}

.dest-card:hover .dest-link {
    opacity: 1;
    transform: translateY(0);
}

/* ─── TESTIMONIALS ─── */
.testi-section {
    padding: 100px 0;
    background: white;
}

.testi-slider {
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
    min-width: 100%;
    padding: 0 24px;
}

.testi-inner {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testi-quote-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin: 0 auto 24px;
}

.testi-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testi-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 12px;
    font-family: 'Playfair Display', serif;
}

.testi-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.testi-meta {
    font-size: 0.83rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
}

.testi-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--red);
    color: var(--red);
    background: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-btn:hover {
    background: var(--red);
    color: white;
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

/* ─── BLOGS ─── */
.blog-section {
    padding: 100px 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.blog-body {
    padding: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.77rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-read {
    font-size: 0.77rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-summary {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.blog-tag {
    font-size: 0.73rem;
    color: var(--red);
    background: rgba(217, 30, 37, 0.06);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.blog-link {
    font-size: 0.84rem;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-link i {
    transition: transform 0.3s;
}

.blog-card:hover .blog-link i {
    transform: translateX(4px);
}

/* ─── GUIDE CTA ─── */
.guide-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
   
}

.guide-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(15, 15, 26) 0%, rgb(217, 30, 36) 100%);
}

.guide-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.guide-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
}

.guide-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.guide-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.contact-value a {
    color: var(--red);
}

.contact-hours {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 3px;
}

.form-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(217, 30, 37, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(217, 30, 37, 0.4);
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.83rem;
    color: var(--gray);
    justify-content: center;
}

.form-guarantee i {
    color: #16a34a;
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, var(--gold) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 8px;
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    font-size: 0.97rem;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto 20px;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    padding: 15px 22px;
    font-size: 0.9rem;
    outline: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    min-width: 0;
}

.newsletter-btn {
    padding: 15px 28px;
    background: var(--dark2);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: black;
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: white;
    color: var(--red);
    transform: translateY(-3px);
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    color: white;
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo-circle {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: white;
}

.footer-col-title {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--red);
    opacity: 0;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--red);
    margin-top: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-tags {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.footer-tag:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom span {
    color: var(--red);
}

/* ─── FLOATING ELEMENTS ─── */
#whatsappBtn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    font-size: 0.87rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
    animation: whatsappBounce 3s ease infinite;
}

#whatsappBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

#whatsappBtn i {
    font-size: 1.3rem;
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

#backToTop {
    position: fixed;
    bottom: 92px;
    right: 28px;
    z-index: 9000;
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(217, 30, 37, 0.4);
    opacity: 0;
    transform: translateY(12px);
    transition: var(--transition);
    pointer-events: none;
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

#backToTop:hover {
    transform: translateY(-3px);
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity:1;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-grid {
        height: 380px;
    }

    .about-badge-float {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-inner {
        flex-direction: column;
    }

    .enq-field {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .packages-grid,
    .why-grid,
    .services-grid,
    .blog-grid,
    .dest-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        text-align: center;
        justify-content: center;
    }

    #heroPrev,
    #heroNext {
        display: none;
    }

    #whatsappBtn .wa-text {
        display: none;
    }

    #whatsappBtn {
        padding: 14px;
        border-radius: 50%;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .newsletter-form input,
    .newsletter-btn {
        border-radius: var(--radius-sm) !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}




.nav-logo img {
    width: 99px;
}


/* Breadcrumb Wrapper */
.a2-breadcrumb-wrapper {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Inner Flex */
.a2-breadcrumb-inner {
    gap: 15px;
}

/* Title */
.a2-breadcrumb-title h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

/* Breadcrumb List */
.a2-breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

/* Breadcrumb Items */
.a2-breadcrumb-list li {
    position: relative;
    font-size: 14px;
    color: #cbd5e1;
}

/* Links */
.a2-breadcrumb-list li a {
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s ease;
}

/* Hover Effect */
.a2-breadcrumb-list li a:hover {
    color: #38bdf8;
}

/* Separator */
.a2-breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #64748b;
}

/* Active Page */
.a2-breadcrumb-list li span {
    color: #fff;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 576px) {
    .a2-breadcrumb-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .a2-breadcrumb-title h2 {
        font-size: 22px;
    }
}

/* ===== TOPBAR BASE ===== */
.rtx-topbar {
    background: #bd1b0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Poppins', sans-serif;
}

/* WRAPPER */
.rtx-topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 50px;
}

/* LEFT */
.rtx-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ITEM */
.rtx-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    transition: 0.3s ease;
}

.rtx-item i {
    font-size: 13px;
    color: #ffffff;
}

.rtx-item:hover {
    color: #fff;
}

/* SEPARATOR */
.rtx-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

/* RIGHT */
.rtx-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* SOCIAL */
.rtx-social a {
    color: #ffffff;
    font-size: 13px;
    margin-right: 6px;
    transition: 0.3s ease;
}

.rtx-social a:hover {
    color: #38bdf8;
    transform: translateY(-2px);
}

/* BUTTON */
.rtx-btn {
    background: #38bdf8;
    color: #0f172a;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.rtx-btn:hover {
    background: #0ea5e9;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .rtx-topbar-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }

    .rtx-left {
        flex-direction: column;
        gap: 6px;
    }

    .rtx-topbar {
        display: none !important;
    }
}











    /* PACKAGE DETAILS */
    .package-header {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .gallery-main {
        border-radius: var(--radius);
        overflow: hidden;
        height: 380px;
    }

    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-thumbs {
        display: flex;
        gap: 12px;
        margin-top: 14px;
    }

    .gallery-thumbs img {
        width: 90px;
        height: 70px;
        border-radius: 12px;
        object-fit: cover;
        cursor: pointer;
        transition: 0.2s;
        border: 2px solid transparent;
    }

    .gallery-thumbs img.active-thumb {
        border-color: var(--red);
    }

    .package-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .package-title {
        font-size: 34px;
        font-weight: 800;
        color: var(--dark2);
        line-height: 1.2;
    }

    .package-rating {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .stars {
        color: var(--gold);
    }

    .package-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin: 10px 0;
    }

    .highlight {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(227, 27, 35, 0.05);
        padding: 8px 16px;
        border-radius: 40px;
        font-size: 13px;
        font-weight: 500;
    }

    .price-box {
        background: linear-gradient(135deg, #fef5f5, white);
        border: 1px solid rgba(227, 27, 35, 0.2);
        border-radius: 20px;
        padding: 20px;
    }

    .price-old {
        font-size: 20px;
        text-decoration: line-through;
        color: #aaa;
    }

    .price-new {
        font-size: 36px;
        font-weight: 800;
        color: var(--red);
    }

    .price-note {
        font-size: 13px;
        color: var(--text-light);
        margin-top: 6px;
    }

    .action-buttons {
        display: flex;
        gap: 14px;
        margin-top: 10px;
    }

    /* TABS */
    .tabs {
        display: flex;
        gap: 8px;
        border-bottom: 2px solid #eee;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 24px;
        font-weight: 600;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 15px;
        color: var(--text-light);
        transition: 0.2s;
    }

    .tab-btn.active {
        color: var(--red);
        border-bottom: 2px solid var(--red);
        margin-bottom: -2px;
    }

    .tab-pane {
        display: none;
        animation: fadeIn 0.4s;
    }

    .tab-pane.active-pane {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .itinerary-day {
        background: var(--light);
        border-radius: 14px;
        padding: 20px;
        margin-bottom: 16px;
        transition: 0.2s;
        border-left: 4px solid var(--red);
    }

    .itinerary-day h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        margin-bottom: 12px;
        color: var(--dark2);
    }

    .inclusion-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        background: var(--light);
        padding: 28px;
        border-radius: 24px;
    }

    .inclusion-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .inclusion-item i {
        width: 28px;
        color: var(--red);
        font-size: 18px;
    }

    .exclusion-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .exclusion-item i {
        color: #e53935;
    }

    .faq-item {
        border-bottom: 1px solid #eee;
        padding: 16px 0;
        cursor: pointer;
    }

    .faq-question {
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
        color: var(--text-light);
    }

    .faq-item.open .faq-answer {
        max-height: 200px;
        margin-top: 12px;
    }

    /* SIDEBAR BOOKING */
    .sidebar-card {
        background: white;
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 28px;
        position: sticky;
        top: 100px;
        border: 1px solid #eee;
    }

    .sidebar-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--dark2);
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid #e2e2e2;
        border-radius: 12px;
        font-size: 14px;
    }

    .counter-field {
        display: flex;
        align-items: center;
    }

    .counter-btn {
        width: 36px;
        height: 40px;
        background: #f0f0f0;
        border: none;
        cursor: pointer;
        font-size: 18px;
    }

    .counter-field input {
        text-align: center;
        border-radius: 0;
        width: 60px;
    }

    .total-price {
        background: var(--light);
        padding: 16px;
        border-radius: 16px;
        margin: 20px 0;
        text-align: center;
    }

    .total-price span {
        font-size: 28px;
        font-weight: 800;
        color: var(--red);
    }

    /* RELATED PACKAGES */
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .rel-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transition: 0.3s;
    }

    .rel-card:hover {
        transform: translateY(-6px);
    }

    .rel-img {
        height: 180px;
        overflow: hidden;
    }

    .rel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rel-body {
        padding: 18px;
    }

    .rel-title {
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .rel-price {
        color: var(--red);
        font-weight: 800;
    }

    
    .overlay.show {
        display: block;
    }

    .secf{
        padding: 70px 0px;
    }



    .dsff h3 {
    font-size: 21px;
    margin-bottom: 21px;
}

    .dsff h4 {
    font-size: 21px;
    margin-bottom: 21px;
}

@media (max-width: 600px) {
    .about-images {
        display: none !important;
      
    }
    .hero-h1 {
    font-size: 28px;
    }
    
}





















    /* BLOG LAYOUT */
    .blog-layout {
        display: grid;
        grid-template-columns: 2.5fr 1fr;
        gap: 50px;
        margin: 40px 0 70px;
    }

    .blog-article {
        background: white;
        border-radius: 24px;
    }

    .featured-image {
        width: 100%;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .featured-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .blog-meta {
        display: flex;
        gap: 20px;
        color: var(--text-light);
        font-size: 13px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .blog-meta i {
        color: var(--red);
        margin-right: 5px;
    }

    .blog-titlekkk {
        font-size: 36px;
        font-weight: 800;
        color: var(--dark2);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .blog-content {
        font-size: 16px;
        line-height: 1.9;
        color: var(--text);
    }

    .blog-content h2 {
        font-size: 26px;
        margin: 35px 0 15px;
        color: var(--dark2);
    }

    .blog-content h3 {
        font-size: 20px;
        margin: 25px 0 12px;
        color: var(--dark2);
    }

    .blog-content p {
        margin-bottom: 20px;
    }

    .blog-content ul,
    .blog-content ol {
        margin: 15px 0 20px 25px;
    }

    .blog-content li {
        margin-bottom: 8px;
    }

    .blog-content img {
        max-width: 100%;
        border-radius: 16px;
        margin: 20px 0;
    }

    .info-box {
        background: var(--light);
        padding: 24px;
        border-radius: 20px;
        border-left: 5px solid var(--red);
        margin: 25px 0;
    }

    .info-box h4 {
        margin-bottom: 12px;
        color: var(--red);
    }

    .spot-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 25px 0;
    }

    .spot-card {
        background: var(--light);
        border-radius: 16px;
        overflow: hidden;
    }

    .spot-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .spot-card .spot-info {
        padding: 15px;
    }

    .spot-card h4 {
        margin-bottom: 6px;
    }

    .author-box {
        display: flex;
        align-items: center;
        gap: 20px;
        background: var(--light);
        padding: 25px;
        border-radius: 20px;
        margin: 40px 0;
    }

    .author-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }

    .share-buttons {
        display: flex;
        gap: 12px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .share-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
    }

    .share-btn:hover {
        background: var(--red);
        color: white;
    }

    /* SIDEBAR */
    .sidebar {
        position: sticky;
        top: 100px;
    }

    .sidebar-widget {
        background: var(--light);
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 30px;
    }

    .sidebar-widget h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--red);
        display: inline-block;
    }

    .search-box {
        display: flex;
        border-radius: 50px;
        overflow: hidden;
        background: white;
    }

    .search-box input {
        flex: 1;
        padding: 12px 18px;
        border: none;
        outline: none;
    }

    .search-box button {
        background: var(--red);
        color: white;
        border: none;
        padding: 0 18px;
        cursor: pointer;
    }

    .recent-post {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
        align-items: center;
    }

    .recent-post img {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        object-fit: cover;
    }

    .recent-post h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .recent-post span {
        font-size: 11px;
        color: var(--text-light);
    }

    .category-list li {
        list-style: none;
        margin-bottom: 12px;
    }

    .category-list li a {
        display: flex;
        justify-content: space-between;
        color: var(--text);
        transition: 0.2s;
    }

    .category-list li a:hover {
        color: var(--red);
        padding-left: 5px;
    }

    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag {
        background: white;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        transition: 0.2s;
    }

    .tag:hover {
        background: var(--red);
        color: white;
    }

    .cta-widget {
        background: var(--gradient);
        color: white;
        text-align: center;
    }

    .cta-widget h3 {
        color: white;
        border-bottom-color: white;
    }

    .cta-widget .btn {
        background: white;
        color: var(--red);
        margin-top: 15px;
    }

    /* RELATED BLOGS */
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 30px;
    }

    .rel-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transition: 0.3s;
    }

    .rel-card:hover {
        transform: translateY(-6px);
    }

    .rel-img {
        height: 180px;
        overflow: hidden;
    }

    .rel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rel-body {
        padding: 18px;
    }

    .rel-title {
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 6px;
    }

   
    @media (max-width: 600px) {
        .related-grid {
            grid-template-columns: 1fr;
        }
    }

    