/* ===== Premium CSS Variables ===== */
:root {
    --primary: #0e8369;
    /* Brand green */
    --primary-dark: #0a6b55;
    --primary-light: #2bb594;
    --secondary: #FF6B6B;
    /* Bold Coral */
    --secondary-dark: #E25555;
    --gold: #FFB703;
    /* Luxury accent */
    --dark: #0B132B;
    --dark-alt: #1C2541;
    --text: #4A5568;
    --text-light: #718096;
    --light: #F7FAFC;
    --white: #FFFFFF;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

img.lazy-media {
    background-color: #EAF3F0;
    background-image: linear-gradient(100deg, #EAF3F0 0%, #F8FCFB 45%, #DDEBE7 70%, #EAF3F0 100%);
    background-size: 220% 100%;
}

img.lazy-media:not(.is-loaded) {
    animation: lazySkeleton 1.25s ease-in-out infinite;
}

img.lazy-media.is-loaded,
img.lazy-media.has-error {
    animation: none;
    background: transparent;
}

@keyframes lazySkeleton {
    from {
        background-position: 120% 0;
    }

    to {
        background-position: -120% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    img.lazy-media:not(.is-loaded) {
        animation: none;
    }
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section {
    padding: 70px 0;
}

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

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

.mt-50 {
    margin-top: 50px;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.text-center.section-header p {
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 150, 199, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 150, 199, 0.4);
    color: var(--white);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

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

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

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* ===== Topbar ===== */
.topbar {
    background-color: var(--dark);
    color: var(--light);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.topbar-left i,
.topbar-right i {
    color: var(--primary-light);
    margin-right: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-mini {
    display: flex;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.social-mini a:hover {
    color: var(--primary-light);
}

/* ===== Instagram Buttons ===== */
.ig-btn-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: igPulse 2.5s ease-in-out infinite;
}

.ig-btn-top i {
    font-size: 0.9rem;
}

.ig-btn-top:hover {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(225, 48, 108, 0.5);
    animation: none;
}

@keyframes igPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.4); }
    50% { box-shadow: 0 0 12px 4px rgba(225, 48, 108, 0.2); }
}

.ig-btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 200% 200%;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    animation: igShimmer 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.ig-btn-footer i {
    font-size: 1.2rem;
}

.ig-btn-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

@keyframes igShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== Navbar ===== */
.navbar {
    position: absolute;
    top: 36px;
    /* Below topbar */
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    backdrop-filter: none;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.phone-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 150, 199, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-text small {
    font-size: 0.75rem;
    opacity: 0.8;
    color: var(--text-light);
}

.phone-text span {
    font-weight: 700;
    font-size: 1.05rem;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
}

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

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

.zoom-effect {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s infinite alternate linear;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroCrossfade 10s infinite ease-in-out;
}

.hero-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow img:nth-child(2) {
    animation-delay: 5s;
}

@keyframes heroCrossfade {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.8) 0%, rgba(11, 19, 43, 0.3) 100%);
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding-top: 50px;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-highlight {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ===== Search Widget ===== */
.search-widget-section {
    position: relative;
    margin-top: -55px;
    z-index: 20;
}

.premium-search {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 12px 16px;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.input-block {
    flex: 1;
    padding: 14px 24px;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.input-block:hover,
.input-block:focus-within {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.input-block label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.input-block label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.input-block input,
.input-block select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--dark);
    font-family: var(--font-sans);
    background: transparent;
    cursor: pointer;
    font-weight: 500;
}

.input-block input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.input-divider {
    width: 1px;
    height: 44px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.search-btn-wrapper {
    padding-left: 12px;
    flex-shrink: 0;
}

.btn-search-premium {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(14, 131, 105, 0.25);
    white-space: nowrap;
}

.btn-search-premium:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 131, 105, 0.35);
}

.btn-search-premium:active {
    transform: translateY(0);
}

/* ===== Trending Destinations (Swiper) ===== */
.trending {
    overflow: hidden;
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

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

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

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.dest-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.dest-overlay p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
}

.destinations-slider {
    padding-bottom: 50px !important;
}

.destinations-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

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

.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.package-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.08);
}

.badge-discount,
.badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-discount {
    background-color: var(--secondary);
    color: var(--white);
}

.badge-featured {
    background-color: var(--gold);
    color: var(--dark);
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

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

.package-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.package-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.package-meta .rating {
    color: var(--dark);
    font-weight: 600;
}

.package-meta .rating i {
    color: var(--gold);
}

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.package-location {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.inclusions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #E2E8F0;
}

.inclusions span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

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

.price-old,
.price-from {
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-old {
    text-decoration: line-through;
}

.price h4 {
    font-size: 1.6rem;
    color: var(--dark);
    font-family: var(--font-sans);
    font-weight: 800;
}

.price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ===== Why Choose Us ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    bottom: -30px;
    left: 30px;
    background-color: var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.main-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--gold);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.why-us-content .lead-text {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(0, 150, 199, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.features-list li:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-sans);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin: 20px 10px;
    position: relative;
    border-top: 4px solid var(--primary);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--light);
    opacity: 0.5;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

.reviewer-info h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.stars i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* ===== Blog Section ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-img {
    position: relative;
    height: 240px;
}

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

.blog-date {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.blog-date .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-content {
    padding: 40px 30px 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

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

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== Newsletter ===== */
.newsletter-section {
    padding: 0 0 100px;
}

/* ===== Automated Review Slideshow ===== */
.review-swiper-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.review-img-wrap {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    /* Strict 1.6 aspect ratio per image */
    aspect-ratio: 1.6 / 1;
}

/* Center Highlight Effect */
.review-swiper-container .swiper-slide {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.85); /* Make side images 15% smaller */
    opacity: 0.6;
}

.review-swiper-container .swiper-slide-active {
    transform: scale(1); /* Keep middle image normal size */
    opacity: 1;
    z-index: 2;
}

.review-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-swiper-container .swiper-slide-active .review-img-wrap:hover img {
    transform: scale(1.05);
}

.review-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    color: var(--primary);
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* ===== Archive Gallery (Hanging Photos) ===== */
.archive-gallery {
    background-color: var(--light);
    overflow: hidden;
    padding-bottom: 80px;
}

.rope-container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
    margin-top: 40px;
}

.rope {
    position: absolute;
    top: 40px;
    left: -5%;
    right: -5%;
    height: 3px;
    background: #d4c4b7;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.hanging-photos {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
    min-height: 250px;
}

.polaroid-frame {
    background: #fff;
    padding: 12px 12px 40px 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    width: 20%;
    position: relative;
    transform-origin: top center;
    transition: opacity 1.5s ease, transform 1.5s ease;
    cursor: pointer;
}

.polaroid-frame img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #eee;
}

/* Clothespin base */
.polaroid-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 40px;
    background: #e8d5c4;
    border-radius: 6px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2), 0 3px 5px rgba(0,0,0,0.3);
    z-index: 3;
}

/* Clothespin metal spring */
.polaroid-frame::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 5px;
    background: #999;
    border-radius: 2px;
    z-index: 4;
}

.polaroid-frame.fade-out {
    opacity: 0;
    transform: scale(0.9) !important;
}

.polaroid-frame:hover {
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

@media (max-width: 992px) {
    .polaroid-frame { width: 30%; margin-bottom: 30px; }
    .hanging-photos { flex-wrap: wrap; justify-content: center; gap: 30px; }
}

@media (max-width: 576px) {
    .polaroid-frame { width: 45%; }
}

.newsletter-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-float);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.newsletter-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    color: white;
    font-size: 1.4rem;
}

.newsletter-content {
    flex-shrink: 0;
    color: var(--white);
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin: 0;
    white-space: nowrap;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 0;
    background: var(--white);
    padding: 6px;
    border-radius: 14px;
    min-width: 0;
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 20px;
    font-family: var(--font-sans);
    font-size: 1rem;
    min-width: 0;
}

.btn-newsletter {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--primary-dark, #0052a3);
    transform: translateY(-1px);
}

.newsletter-success {
    color: #4ade80;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-success i {
    font-size: 1.2rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo img {
    height: 120px;
    object-fit: contain;
    border-radius: 4px;
}

.footer-desc {
    margin-bottom: 30px;
    line-height: 1.8;
}

.payment-methods h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 15px;
}

.pay-icons {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.pay-icons i:hover {
    color: var(--white);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 150, 199, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info .text strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-info .text a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info .text a:hover {
    color: var(--primary-light);
}

.contact-info .text small {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    background-color: var(--dark-alt);
    padding: 25px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-flex strong {
    color: var(--white);
}

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

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

/* ===== Expanded Grid Mode for Packages ===== */
.packages-wrapper.grid-mode {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    transform: none !important;
    width: 100% !important;
}

.packages-wrapper.grid-mode .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
}

.packages-pagination.hidden {
    display: none !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .search-form {
        flex-wrap: wrap;
        gap: 20px;
    }

    .input-divider {
        display: none;
    }

    .input-group {
        min-width: 200px;
    }
}

@media (max-width: 992px) {
    .topbar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        padding: 0;
        margin-bottom: 40px;
    }

    .image-wrapper::before {
        display: none;
    }

    .experience-badge {
        bottom: -20px;
        left: 20px;
        right: 20px;
    }

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

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

    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-box::before {
        display: none;
    }
}

@media (max-width: 768px) {

    /* ===== Global Mobile Spacing (60% reduction) ===== */
    .section {
        padding: 28px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-header .subtitle {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 20px;
    }

    .mt-50 {
        margin-top: 20px;
    }

    /* ===== Navbar Mobile ===== */
    .nav-links,
    .contact-phone,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 15px;
        box-shadow: var(--shadow-md);
        z-index: 100;
    }

    .nav-links.active a {
        color: var(--dark);
        padding: 12px 0;
        display: block;
        font-size: 1.05rem;
        border-bottom: 1px solid #E2E8F0;
    }

    .logo img {
        max-height: 35px;
        width: auto;
    }

    /* ===== Hero Mobile ===== */
    .hero {
        min-height: 500px;
        height: 70vh;
    }

    .hero-content {
        padding-top: 30px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* ===== Search Widget Mobile ===== */
    .search-widget-section {
        margin-top: -40px;
    }

    .premium-search {
        border-radius: 16px;
        padding: 12px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .input-block {
        padding: 10px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.4);
    }

    .input-block label {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }

    .input-block input,
    .input-block select {
        font-size: 0.9rem;
    }

    .input-divider {
        display: none;
    }

    .search-btn-wrapper {
        padding-left: 0;
        margin-top: 4px;
    }

    .btn-search-premium {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        border-radius: 12px;
    }

    /* ===== Destinations Cards Mobile ===== */
    .dest-card {
        height: 280px;
        border-radius: 14px;
    }

    .dest-overlay h3 {
        font-size: 1.3rem;
    }

    /* ===== Package Cards Mobile ===== */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card:hover {
        transform: none;
    }

    .package-img {
        height: 200px;
    }

    .package-content {
        padding: 20px;
    }

    .package-content h3 {
        font-size: 1.15rem;
    }

    .package-footer {
        padding: 15px 20px;
    }

    .price .amount {
        font-size: 1.4rem;
    }

    /* ===== Why Us / About Mobile ===== */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-image {
        padding: 0;
        margin-bottom: 20px;
    }

    .image-wrapper::before {
        display: none;
    }

    .experience-badge {
        bottom: -15px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h4 {
        font-size: 1.05rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* ===== Stats Row Mobile ===== */
    .stats-row {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 0;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    /* ===== Reviews Mobile ===== */
    .reviews-slider-wrapper {
        padding: 0;
    }

    /* ===== Blog Cards Mobile ===== */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        border-radius: 14px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    /* ===== Archive Gallery Mobile ===== */
    .archive-gallery {
        padding: 28px 0;
    }

    .clothesline {
        gap: 15px;
        padding: 0 10px;
    }

    .polaroid-frame {
        width: 42%;
        padding: 6px;
        border-radius: 4px;
    }

    .polaroid-frame img {
        height: 120px;
    }

    /* ===== Newsletter Mobile ===== */
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }

    .newsletter-box::before,
    .newsletter-box::after {
        display: none;
    }

    .newsletter-content h2 {
        font-size: 1.3rem;
        white-space: normal;
    }

    .newsletter-form {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.1);
        padding: 0;
        border-radius: 14px;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 14px 18px;
        border-radius: 12px;
        background: var(--white);
        width: 100%;
    }

    .btn-newsletter {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        border-radius: 12px;
    }

    /* ===== Footer Mobile ===== */
    .footer-top {
        padding: 40px 0 30px;
    }

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

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

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

    .footer-bottom {
        padding: 15px 0;
    }

    /* ===== Blog Post Pages Mobile ===== */
    .blog-post.section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .blog-post .post-header h1,
    .blog-post h1 {
        font-size: 1.8rem !important;
    }

    .blog-post .post-content h3 {
        font-size: 1.3rem !important;
    }

    .blog-post img {
        height: 250px !important;
        border-radius: 12px !important;
    }
}
