:root {
  /* Professional Color Palette */
  --primary: #1a73e8;       /* Minstay Blue - Trust */
  --accent: #dfff4f;        /* The "Lime" - Conversion */
  --text-main: #222222;     /* Airbnb/Booking Black */
  --text-light: #717171;    /* Subtle Gray */
  --bg-light: #ffffff;
  --bg-offset: #f7f7f9;

  /* Dimensions */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-soft: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

/* --- GLOBAL LAYOUT FIX (STICKY FOOTER) --- */
body { 
    background-color: var(--bg-light); 
    color: var(--text-main); 
    line-height: 1.5;
    -webkit-font-smoothing: antialiased; 

    /* Flexbox to force footer to bottom */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Allow main content to grow and push footer down */
main {
    flex: 1;
    width: 100%;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.logo img { height: 40px; width: auto; }
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 25px;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* --- HERO SECTION --- */
.zcs-hero {
    position: relative;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    padding: 20px;
}

.hero-video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; filter: brightness(0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* --- SEARCH PILL --- */
.search-pill-container {
    background: white;
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 10px 24px;
    border-right: 1px solid #eee;
    text-align: left;
    position: relative;
}

.search-field:last-child { border-right: none; }

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.search-field input, .search-field select {
    border: none;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text-light);
    outline: none;
    background: transparent;
    cursor: pointer;
}

/* Search Button (Very Light Blue) */
.search-btn-large {
    background: linear-gradient(180deg, #8ab4f8 0%, #669df6 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 157, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.search-btn-large:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(180deg, #9bc1ff 0%, #76aaff 100%);
    box-shadow: 0 8px 25px rgba(102, 157, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.search-btn-large:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(102, 157, 246, 0.4);
}

/* --- TOP DESTINATIONS SECTION --- */
.destinations-container {
    padding: 50px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.destinations-header {
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    padding: 0 5%;
}

.destinations-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Scroll Area */
.destinations-scroll-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
}

.destinations-scroll-wrapper::-webkit-scrollbar { display: none; }

/* Navigation Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: #222;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.prev-btn { left: 2%; }
.next-btn { right: 2%; }

/* Cards */
.dest-card {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: center;
}

.dest-card:hover { transform: translateY(-5px); }

.dest-img-box {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background-color: #eee;
    box-shadow: var(--shadow-soft);
    margin-bottom: 10px;
}

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

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

.dest-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

/* --- LISTINGS / EXPLORE SECTION --- */
.explore-container { padding: 80px 8%; background: var(--bg-light); }
.section-header { margin-bottom: 40px; text-align: left; }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.section-header p { color: var(--text-light); }

.stay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.stay-card {
    background: transparent;
    border-radius: var(--radius-md);
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}

.stay-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    background-color: #eee;
}

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

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

.card-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stay-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.stay-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: var(--text-main);
}

.price-row strong { font-weight: 700; }

/* --- "WHY CHOOSE US" SECTION --- */
.why-choose-container { 
    padding: 100px 5%; 
    /* Richer Sky Blue Gradient Background */
    background: linear-gradient(180deg, #e6f2ff 0%, #b3d9ff 100%);
}

.section-header-center { 
    margin-bottom: 60px; 
    text-align: center; 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center h2 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--text-main); 
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

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

/* PREMIUM POSTER CARD - FULL WHITE */
.poster-card {
    background: #ffffff; /* Clean White */
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;

    /* Soft shadow to separate from blue background */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 250px; 
    position: relative;
    overflow: hidden;
}

/* Removed the complex gradient pseudo-element to keep it clean white */
.poster-card::before {
    display: none;
}

/* Hover Effect */
.poster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: #ffffff;
}

.poster-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #111; 
    position: relative;
    z-index: 2;
}

.poster-card p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: #444;
    position: relative;
    z-index: 2;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 5% 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #444;

    /* Ensure footer stays at bottom */
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

/* Footer Image Box */
.footer-img-box {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative; 
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

/* Gradient Overlay */
.footer-img-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.footer-img-box:hover img {
    transform: scale(1.05);
}

/* Content inside the image overlay (Centered) */
.footer-overlay-content {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    padding: 0 25px;
    z-index: 2;
    text-align: center;
}

.footer-logo-overlay {
    height: 45px;
    width: auto;
    margin: 0 auto 12px auto;
    display: block;
    filter: brightness(0) invert(1); 
}

.footer-about-overlay {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
}

/* Standard Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0; 
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.footer-bottom {
    text-align: center;
    color: #999;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .search-pill-container { flex-direction: column; border-radius: 24px; padding: 16px; }
    .search-field { width: 100%; border-right: none; border-bottom: 1px solid #eee; padding: 12px 0; }
    .search-btn-large { width: 100%; justify-content: center; margin-top: 10px; margin-left: 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .destinations-container { padding: 40px 0; }
    .nav-btn { width: 36px; height: 36px; font-size: 1rem; } 
    .dest-card { width: 150px; } .dest-img-box { height: 150px; }
    .destinations-header h2 { font-size: 1.5rem; }
    .why-choose-container { padding: 60px 5%; }
    .section-header-center h2 { font-size: 2rem; }
    .poster-card { min-height: 220px; padding: 30px 20px; }

    /* Footer Stack */
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
        text-align: center;
    }
    .footer-img-box {
        height: 240px; 
        margin-bottom: 10px;
    }
    .footer-col { align-items: center; } 
    .social-links { justify-content: center; }
}
