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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Basic content protection: disable selection globally (except inputs) */
html, body {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select, [contenteditable="true"] {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging/callout */
img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 10px 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* Brand block */
.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #ffe680, #ffd24d);
    color: #5a4200;
    box-shadow: 0 4px 14px rgba(255, 204, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.6);
}
.logo-mark i { font-size: 18px; }
.logo-image {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 10px;
    object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; letter-spacing: 0.2px; color: #1a1a1a; font-size: 28px;}
.brand-tag { font-size: 28px; color: #7a7a7a; }

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 999px;
}

/* .nav a:hover { color: #2b63d9; background: #eef3ff; } */

/* Header CTA */
.btn-cta {
    background: linear-gradient(135deg, #2b63d9, #6ea8ff);
    color: #fff !important;
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(43, 99, 217, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(43, 99, 217, 0.35);
} */

/* Mobile Menu Toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}
.menu-toggle .menu-text { font-weight: 600; font-size: 0.95rem; }
.hamburger {
    position: relative;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: background 0.2s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.25s ease;
}
.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }
.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: rotate(-45deg); }

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background:  #f8faff ;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Premium Badge for Hero */
.premium-badge-hero {
    background: linear-gradient(180deg, rgba(73, 255, 2, 0.7), rgba(52, 250, 2, 0.45));
    color: #333;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.premium-badge-hero i {
    color: #ffcd04;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-subtitle {
    color: #4285f4;
    font-size: 3rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #4285f4;
    color: white;
}

.btn-primary:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #4285f4;
    color: #4285f4;
}

.hero-image {
    position: relative;
}

.slider { position: relative; }
.slides { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide.active { opacity: 1; }

/* Ensure the slider has a visible height */
.hero .image-container.slider { height: 480px; }

@media (max-width: 768px) {
  .hero .image-container.slider { height: 300px; }
}

@media (max-width: 480px) {
  .hero .image-container.slider { height: 240px; }
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .header .container { gap: 12px; }
    .menu-toggle { display: inline-flex; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.06);
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px 16px 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav.open { display: flex; }
    .nav a {
        padding: 12px 12px;
        border-radius: 8px;
        color: #1a1a1a;
    }
    /* .nav a:hover { background: #f3f6ff; color: #2b63d9; } */
    .btn-cta { margin-top: 8px; justify-content: center; }
}

.slider { position: relative; }
.slides { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide.active { opacity: 1; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.6); border: none; cursor: pointer; }
.dot.active { background: #fff; }

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image,
.room-image img,
.story-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(66, 133, 244, 0.1), rgba(255, 255, 255, 0.1));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.live-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge i {
    color: #4285f4;
    font-size: 0.8rem;
}

.price-tag {
    background: #ffd700;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    align-self: flex-end;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.duration {
    font-size: 0.9rem;
    color: #666;
}

/* Travelers Rating */
.travelers-rating {
    padding: 2rem 0;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.rating-circles {
    display: flex;
    align-items: center;
}

.customer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.customer-avatar:first-child { margin-left: 0; }

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

.rating-label {
    font-size: 0.9rem;
    color: #666;
}

.rating-percentage {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

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

.stars {
    color: #ffd700;
    margin-bottom: 4px;
}

.rating-score {
    font-size: 0.9rem;
    color: #666;
}

/* Brands Section */
.brands {
    padding: 2rem 0 1rem;
    background: #f8faff;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    opacity: 0.9;
}

.brand-logo {
    max-height: clamp(40px, 6vw, 72px);
    width: auto;
    filter: grayscale(100%) contrast(0.9) opacity(0.75);
    transition: filter 0.3s ease, transform 0.3s ease;
    object-fit: contain;
}

.brand-logo:hover {
    filter: grayscale(0) contrast(1) opacity(0.95);
    transform: translateY(-2px);
}

/* Destinations Section */
.destinations {
    padding: 4rem 0 2rem;
}

/* Day Tours Section */
.day-tours {
    padding: 4rem 0 2rem;
    background: #ffffff;
}

.view-all-tours-btn {
    background: #34a853;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-tours-btn:hover {
    background: #2d8e47;
    transform: translateY(-2px);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #eaf8ff, #eaf9f0) border-box;
}

/* Tour image slider */
.tour-image { position: relative; height: 460px; overflow: hidden; }
.tour-slider { position: relative; width: 100%; height: 100%; }
.tour-slides { position: relative; width: 100%; height: 100%; }
.tour-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 400ms ease; }
.tour-slide.active { opacity: 1; }
.tour-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; backdrop-filter: saturate(120%) blur(2px); }
.tour-slider-btn:hover { background: rgba(0,0,0,0.6); }
.tour-slider-btn.prev { left: 10px; }
.tour-slider-btn.next { right: 10px; }

.tour-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    display: flex;
    gap: 6px;
}

.tour-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0;
}

.tour-dot.active {
    background: #fff;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.tour-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.tour-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
}

.tour-description {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.tour-highlights {
    margin: 0.75rem 0 1rem;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.5rem 1rem;
}

.tour-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 0.95rem;
}

.tour-highlights i { color: #34a853; }

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.tour-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f6f8ff;
    border: 1px solid #edf2ff;
    border-radius: 999px;
}
.tour-features i { color: #4285f4; }

.tour-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.view-all-btn {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Accommodations Section */
.accommodations {
    padding: 4rem 0;
    background: #fafbff;
}

.accommodations .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #eaf2ff, #f8eaff) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.room-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image img {
    transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
}

.room-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.room-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.room-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    word-wrap: break-word;
    line-height: 1.5;
    flex-grow: 1;
}

.room-features {
    display: flex;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.room-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 6px 10px;
    background: #f6f8ff;
    border: 1px solid #edf2ff;
    border-radius: 999px;
}

.room-features i {
    color: #4285f4;
}

.room-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.book-btn {
    background: linear-gradient(135deg, #ff4444, #e63939);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(230, 57, 57, 0.35);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(230, 57, 57, 0.45);
}

/* Room Features Grid */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #4285f4;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    word-wrap: break-word;
    line-height: 1.5;
    flex-grow: 1;
}

/* Stories Section */
.stories {
    padding: 80px 0;
}

.stories .section-title {
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.story-main {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-image {
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
}

.story-content {
    padding: 20px;
    max-width: 760px;
    margin: 0 auto;
}

.story-content .story-author { 
    color: #6b7280; 
    font-size: 0.9rem; 
}

.story-content .story-title {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.25;
    margin: 10px 0 14px;
}

.story-content .story-excerpt { 
    color: #374151; 
    line-height: 1.75; 
    margin-bottom: 18px; 
}

.story-content h4 { 
    margin: 20px 0 10px; 
    color: #0f172a; 
    font-size: 1.05rem; 
}

.story-content p { 
    color: #374151; 
    line-height: 1.8; 
}

.story-content ul { 
    list-style: none; 
    padding-left: 0; 
    margin: 10px 0 16px; 
}

.story-content ul li { 
    position: relative; 
    padding-left: 22px; 
    margin: 6px 0; 
    color: #374151; 
}

.story-content ul li::before {
    content: '';
    position: absolute;
    left: 6px; 
    top: 10px;
    width: 6px; 
    height: 6px;
    border-radius: 50%;
    background: #2b63d9;
}

.story-content .article-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0), rgba(43,99,217,0.25), rgba(0,0,0,0));
    margin: 18px 0;
}

.story-content .article-cta { 
    margin-top: 12px; 
}

.story-content .whatsapp-cta {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: #25d366; 
    color: #fff; 
    text-decoration: none;
    padding: 10px 14px; 
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.story-content .whatsapp-cta:hover { 
    filter: brightness(1.05); 
}

.story-author {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.story-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    line-height: 1.5;
    flex-grow: 1;
}

.story-date {
    font-size: 0.9rem;
    color: #999;
    margin-top: auto;
}

.story-sidebar {
    display: grid;
    grid-auto-rows: minmax(min-content, max-content);
    gap: 1.25rem;
}

.story-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #eef2ff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.story-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #dbe6ff;
}

.story-category {
    font-size: 0.8rem;
    color: #2b63d9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
    display: inline-block;
    background: #f3f6ff;
    border: 1px solid #e7eeff;
    padding: 6px 10px;
    border-radius: 999px;
}

.story-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.story-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.story-item-title a:hover {
    color: #2b63d9;
}

.story-item-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    word-wrap: break-word;
    line-height: 1.5;
    flex-grow: 1;
}

.see-more {
    margin-top: 1rem;
}

.see-more-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #3367d6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 40px;
        background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        color: #555;
    }
    
    /* Premium Badge Mobile Optimization */
    .premium-badge-hero {
        font-size: 0.85rem;
        padding: 10px 18px;
        margin-bottom: 1.5rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    
    .premium-badge-hero i {
        font-size: 0.9rem;
    }
    
    /* Mobile Button Optimization */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        min-height: 56px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #4285f4, #3367d6);
        box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, #3367d6, #2a56c6);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    }
    
    .btn-secondary {
        background: white;
        border: 2px solid #e0e0e0;
        color: #333;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .btn-secondary:hover {
        border-color: #4285f4;
        color: #4285f4;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(66, 133, 244, 0.15);
    }
    
    /* Mobile Image Optimization */
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .image-container {
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    
    .main-image {
        height: 280px;
        object-fit: cover;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .live-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .price-tag {
        padding: 12px 16px;
        border-radius: 12px;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
    
    .price {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .duration {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Mobile Rating Section */
    .travelers-rating {
        padding: 2rem 0;
        background: linear-gradient(135deg, #f8faff, #ffffff);
        border-top: 1px solid rgba(66, 133, 244, 0.1);
    }
    
    .rating-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .rating-circles {
        gap: 10px;
    }
    
    .circle {
        width: 14px;
        height: 14px;
        background: linear-gradient(135deg, #4285f4, #34a853);
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    }
    
    .rating-text {
        gap: 0.5rem;
    }
    
    .rating-label {
        font-size: 1rem;
        color: #555;
        font-weight: 500;
    }
    
    .rating-percentage {
        font-size: 1.3rem;
        font-weight: 700;
        color: #34a853;
    }
    
    .rating-stars {
        gap: 0.5rem;
    }
    
    .stars {
        font-size: 1.2rem;
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    }
    
    .rating-score {
        font-size: 1rem;
        color: #666;
        font-weight: 500;
    }
    
    /* Mobile Navigation */
    .nav {
        display: none;
    }
    
    .header {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .premium-badge {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    /* Mobile Section Headers */
    .section-title-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        color: #555;
    }
    
    /* Mobile Room Cards - Optimized for 2 Cards */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .room-card {
        min-width: 0;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        overflow: hidden;
        background: white;
        transition: all 0.4s ease;
    }
    
    .room-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .room-image {
        height: 220px;
        position: relative;
    }
    
    .room-image img {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .room-card:hover .room-image img {
        transform: scale(1.05);
    }
    
    .rating-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #ffd700, #ffb800);
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #1a1a1a;
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
    }
    
    .room-info {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .room-title {
        font-size: 1.4rem;
        line-height: 1.3;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    
    .room-description {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
        margin-bottom: 0.5rem;
    }
    
    .room-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .room-features span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        color: #666;
        padding: 6px 10px;
        background: #f6f8ff;
        border: 1px solid #edf2ff;
        border-radius: 999px;
    }
    
    .room-features i {
        font-size: 1rem;
        color: #4285f4;
    }
    
    .room-booking {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .price {
        display: flex;
        /* flex-direction: column; */
        gap: 2px;
    }
    
    .amount {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1a1a1a;
    }
    
    .period {
        font-size: 0.9rem;
        color: #666;
        font-weight: 500;
    }
    
    .book-btn {
        background: linear-gradient(135deg, #ff4444, #e63939);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .book-btn:hover {
        background: linear-gradient(135deg, #e63939, #d63333);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
    }
    
    /* Mobile Feature Cards */
    .room-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        background: white;
        border: 1px solid #f0f0f0;
        transition: all 0.4s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: #4285f4;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #4285f4, #34a853);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    }
    
    .feature-icon i {
        font-size: 1.8rem;
        color: white;
    }
    
    .feature-title {
        font-size: 1.3rem;
        line-height: 1.3;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }
    
    .feature-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
    }
    
    /* Mobile View All Button */
    .view-all-btn {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #333;
        border: none;
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
        min-height: 52px;
    }
    
    .view-all-btn:hover {
        background: linear-gradient(135deg, #ffed4e, #ffd700);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    
    /* Mobile Stories Section */
    .stories {
        padding: 3rem 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .story-main {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        background: white;
    }
    
    .story-image {
        height: 220px;
    }
    
    .story-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .story-title {
        font-size: 1.4rem;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .story-excerpt {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
    }
    
    .story-sidebar {
        gap: 1.5rem;
    }
    
    .story-item {
        padding: 1.5rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
    }
    
    .story-item-title {
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .story-item-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #666;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Mobile Container Adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Section Spacing */
    .destinations {
        padding: 3rem 0 2rem;
    }
    
    .accommodations {
        padding: 3rem 0;
    }
    
    /* Mobile Touch Optimizations */
    .room-card,
    .feature-card,
    .story-main,
    .story-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile Loading States */
    .book-btn:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.98);
    }

    .tour-image { position: relative; height: 300px; overflow: hidden; }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .premium-badge-hero {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 52px;
    }
    
    .main-image {
        height: 240px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .room-image { height: 220px; }
    .room-info { padding: 1.25rem; }
    .room-title { font-size: 1.35rem; }
    .room-description { font-size: 0.95rem; }
    .room-features { gap: 0.5rem 0.6rem; }
    .room-features span { font-size: 0.82rem; padding: 6px 10px; }
    
    .amount {
        font-size: 1.4rem;
    }
    
    .book-btn { padding: 12px 22px; font-size: 0.95rem; min-height: 48px; }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .story-image {
        height: 180px;
    }
    
    .story-content {
        padding: 1.25rem;
    }
    
    .story-title {
        font-size: 1.3rem;
    }
    
    .story-excerpt {
        font-size: 0.95rem;
    }
    
    .story-item {
        padding: 1.25rem;
    }
    
    .story-item-title {
        font-size: 1.1rem;
    }
    
    .story-item-excerpt {
        font-size: 0.9rem;
    }
}

/* Ultra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .main-image {
        height: 220px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .room-image {
        height: 180px;
    }
    
    .room-info {
        padding: 1rem;
    }
    
    .room-title {
        font-size: 1.2rem;
    }
    
    .room-description {
        font-size: 0.9rem;
    }
    
    .room-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .room-features span {
        flex-direction: row;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .amount {
        font-size: 1.3rem;
    }
    
    .book-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .room-card:hover {
        transform: none;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    .feature-card:hover {
        transform: none;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-color: #f0f0f0;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .book-btn:hover {
        transform: none;
    }
    
    .view-all-btn:hover {
        transform: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.room-card {
    animation: fadeInUp 0.6s ease forwards;
}

.room-card:nth-child(2) {
    animation-delay: 0.2s;
}

.room-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Ensure consistent card heights across all screen sizes */
.room-card,
.feature-card,
.story-main {
    min-height: 0;
    height: auto;
}

/* Prevent text overflow and maintain consistent spacing */
.room-title,
.feature-title,
.story-title,
.story-item-title {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.room-description,
.feature-description,
.story-excerpt,
.story-item-excerpt {
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.4;
}

/* Ensure consistent button sizing */
.book-btn,
.btn,
.view-all-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Maintain consistent image aspect ratios */
.room-image,
.story-image {
    aspect-ratio: 16/10;
    height: auto;
    min-height: 200px;
}

@media (max-width: 768px) {
    .room-image,
    .story-image {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .room-image,
    .story-image {
        min-height: 160px;
    }
}
