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

:root {
    --bg-primary: #FAFAFA;
    --bg-card: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5F6368;
    --accent: #1976D2;
    --accent-hover: #1565C0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 12px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Card */
.card {
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 48px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    min-height: 280px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 50%, #90E0EF 100%);
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

/* Show/hide images based on screen size */
.hero-image.mobile-only {
    display: block;
}

.hero-image.desktop-only {
    display: none;
}

/* Channel Name */
.channel-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.channel-name svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Header */
h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 40%, transparent);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 50%, transparent);
}

.cta-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Divider */
.divider {
    height: 1px;
    background: #EEEEEE;
    margin: 40px 0;
}

/* Bullets */
.bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bullets li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, white), color-mix(in srgb, var(--accent) 8%, white));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
}

.bullet-content {
    flex: 1;
}

.bullet-title {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.bullet-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Destinations */
.destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.destination-tag {
    background: #F5F5F5;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 24px;
    transition: all 0.2s;
}

.destination-tag:hover {
    background: #EEEEEE;
}

/* UTP Block */
.utp-block {
    background: linear-gradient(135deg, #FAFAFA, #F0F0F0);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.utp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.utp-icon {
    width: 52px;
    height: 52px;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utp-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

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

.utp-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.utp-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Secondary Button with Shimmer */
.cta-button.secondary {
    background: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.1) 20%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.1) 80%,
        transparent 100%
    );
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cta-button.secondary:hover {
    background: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========== DESKTOP (≥768px) ========== */
@media (min-width: 768px) {
    .container {
        padding: 20px 40px;
    }

    .card {
        padding: 56px;
    }

    .hero {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        min-height: 320px;
    }

    .hero-image.mobile-only {
        display: none;
    }

    .hero-image.desktop-only {
        display: block;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
    }

    .bullets {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 40px;
    }

    .utp-block {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 36px 40px;
    }

    .utp-content {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .utp-text {
        text-align: left;
    }

    .utp-title {
        margin-bottom: 4px;
    }
}

/* ========== LARGE DESKTOP (≥1024px) ========== */
@media (min-width: 1024px) {
    .hero {
        gap: 64px;
    }

    h1 {
        font-size: 36px;
    }

    .bullets {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .bullet-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
}

/* ========== MOBILE (<768px) ========== */
@media (max-width: 767px) {
    .container {
        padding: 16px 16px 24px;
    }

    .card {
        padding: 28px 24px;
    }

    .hero {
        display: block;
    }

    .hero-image {
        min-height: 180px;
        margin: 24px 0;
    }

    h1 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .cta-button {
        display: block;
        width: 100%;
    }

    .divider {
        margin: 28px 0;
    }

    .bullets {
        gap: 18px;
    }

    .bullet-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .bullet-icon svg {
        width: 20px;
        height: 20px;
    }

    .destinations {
        gap: 8px;
    }

    .destination-tag {
        font-size: 13px;
        padding: 8px 14px;
    }

    .utp-block {
        padding: 24px;
    }

    .utp-icon {
        width: 48px;
        height: 48px;
    }

    .utp-title {
        font-size: 16px;
    }

    .cta-button.secondary {
        width: 100%;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, white), color-mix(in srgb, var(--accent) 8%, white));
    color: #333;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 900px;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-button:hover {
    background: var(--accent-hover);
}

.cookie-banner.hidden {
    display: none;
}
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        max-width: none;
        padding: 12px 15px;
        font-size: 12px;
        gap: 10px;
    }
    
    .cookie-button {
        width: 100%;
        padding: 10px 20px;
    }
}
/* Gallery Slider */
.gallery-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.gallery-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

.gallery-slide {
    min-width: calc(100% / 3);
    padding: 0 8px;
    box-sizing: border-box;
}

.gallery-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-btn:hover {
    background: #fff;
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.gallery-dot.active {
    background: var(--accent);
}

@media (max-width: 768px) {
    .gallery-slide {
        min-width: 100%;
    }
    
    .gallery-slide img {
        height: 200px;
    }
    
    .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .gallery-title {
        font-size: 20px;
    }
}