/* =========================================
   EGYPT TRAVEL - Main Stylesheet
   Modern, luxurious travel design
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --gold:        #C9A84C;
    --gold-light:  #F0D080;
    --gold-dark:   #9A7A2E;
    --sand:        #F5EDDA;
    --sand-dark:   #E8D9B5;
    --deep-blue:   #0A1628;
    --ocean:       #0E3A6E;
    --ocean-light: #1A5FA8;
    --turquoise:   #00B4D8;
    --turq-light:  #90E0EF;
    --white:       #FFFFFF;
    --text-dark:   #1A1A2E;
    --text-gray:   #6B7280;
    --text-light:  #9CA3AF;
    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #F0D080 50%, #C9A84C 100%);
    --gradient-ocean: linear-gradient(135deg, #0A1628 0%, #0E3A6E 50%, #1A5FA8 100%);
    --gradient-hero: linear-gradient(160deg, rgba(10,22,40,0.90) 0%, rgba(14,58,110,0.70) 60%, rgba(0,180,216,0.30) 100%);
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg:   0 24px 64px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.35);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;
    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.serif { font-family: 'Playfair Display', serif; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-title span { color: var(--gold); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 620px;
    line-height: 1.7;
}

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.section--dark {
    background: var(--deep-blue);
    color: var(--white);
}

.section--sand { background: var(--sand); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--deep-blue);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);
    filter: brightness(1.05);
}

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

.btn--secondary:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.btn--white {
    background: var(--white);
    color: var(--deep-blue);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--ocean {
    background: var(--gradient-ocean);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(14,58,110,0.4);
}

.btn--ocean:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(14,58,110,0.5);
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn svg, .btn .icon {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}

/* Badge on button */
.btn-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 0.1em 0.6em;
    font-size: 0.8em;
    font-weight: 600;
}

/* ---- CTA Box ---- */
.cta-box {
    background: var(--gradient-ocean);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-box h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-box .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar--scrolled {
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.navbar__logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

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

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.navbar__link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.navbar__link:hover, .navbar__link.active {
    color: var(--gold-light);
    background: rgba(201,168,76,0.12);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Mobile menu toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--deep-blue);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

/* Animated particles */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero__title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero__title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.hero__stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    margin-top: -5px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Destination Hero (subpages) ---- */
.dest-hero {
    position: relative;
    height: 75vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.dest-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.dest-hero__bg.loaded { transform: scale(1); }

.dest-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 50%, rgba(10,22,40,0.1) 100%);
}

.dest-hero__content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    width: 100%;
}

.dest-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.dest-hero__breadcrumb a:hover { color: var(--gold); }
.dest-hero__breadcrumb .sep { color: rgba(255,255,255,0.3); }

.dest-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201,168,76,0.25);
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.dest-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.dest-hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    line-height: 1.65;
}

/* ---- Weather Widget ---- */
.weather-widget {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 280px;
}

.weather-widget--card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.weather-widget--card .ww-label,
.weather-widget--card .ww-desc { color: var(--text-gray); }

.ww-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.ww-data { flex: 1; }

.ww-temp {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.ww-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.25rem;
}

.ww-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    text-transform: capitalize;
}

.ww-details {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.ww-details span { display: flex; align-items: center; gap: 0.25rem; }

.weather-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Google Map ---- */
.map-section { background: var(--sand); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

.map-overlay-card {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.map-overlay-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.map-overlay-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ---- Cards ---- */
.cards-grid {
    display: grid;
    gap: 1.5rem;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sand-dark);
}

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

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

.card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--deep-blue);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.card__body {
    padding: 1.5rem;
}

.card__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.card__text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: var(--sand);
}

/* Destination card variant */
.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.dest-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card__bg { transform: scale(1.05); }

.dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.2) 60%);
    transition: var(--transition);
}

.dest-card:hover .dest-card__overlay {
    background: linear-gradient(0deg, rgba(10,22,40,0.98) 0%, rgba(10,22,40,0.4) 60%);
}

.dest-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
}

.dest-card__tag {
    display: inline-block;
    background: rgba(201,168,76,0.25);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    padding: 0.2rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.dest-card__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.dest-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dest-card__temp {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-light);
}

/* ---- Info Sections ---- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* .info-grid--reverse – alternates column order via child order properties below */
.info-grid--reverse .info-grid__image { order: 2; }
.info-grid--reverse .info-grid__text { order: 1; }

.info-grid__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    position: relative;
}

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

.info-grid__badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: var(--deep-blue);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
}

.info-grid__text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.info-grid__text h2 span { color: var(--gold); }

.info-grid__text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* ---- Feature List ---- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0 1.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.feature-item .icon {
    width: 22px;
    height: 22px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-dark);
    font-weight: 700;
}

/* ---- Price Table ---- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    background: var(--gradient-ocean);
    color: var(--white);
    border-color: var(--gold);
}

.price-card--featured::before {
    content: 'Nejoblíbenější';
    position: absolute;
    top: 0.75rem;
    right: -1.5rem;
    transform: rotate(45deg) translateX(0.5rem);
    background: var(--gradient-gold);
    color: var(--deep-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 2.5rem;
    letter-spacing: 0.05em;
}

.price-card__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.price-card--featured .price-card__label { color: rgba(255,255,255,0.6); }

.price-card__price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--deep-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-card--featured .price-card__price { color: var(--gold-light); }

.price-card__unit {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.price-card--featured .price-card__unit { color: rgba(255,255,255,0.6); }

.price-card__features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.price-card__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.price-card--featured .price-card__feature { color: rgba(255,255,255,0.85); }

.price-card__feature::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Timeline / When to go ---- */
.months-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.month-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 0.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.month-card--best {
    background: var(--gradient-ocean);
    border-color: var(--gold);
    color: var(--white);
}

.month-card--good {
    background: rgba(0,180,216,0.08);
    border-color: rgba(0,180,216,0.3);
}

.month-card--ok {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.3);
}

.month-card__name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.month-card--best .month-card__name { color: rgba(255,255,255,0.7); }

.month-card__temp {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.month-card--best .month-card__temp { color: var(--gold-light); }

.month-card__icon { font-size: 1.25rem; }

.months-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- Last Minute Banner ---- */
.lm-banner {
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.lm-banner__left h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.lm-banner__left p {
    color: rgba(10,22,40,0.7);
    font-size: 0.95rem;
}

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

.lm-banner__price strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(10,22,40,0.6);
    margin-bottom: 0.25rem;
}

.lm-banner__price .val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--deep-blue);
    line-height: 1;
}

/* ---- Facts / Icons Strip ---- */
.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.fact-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.fact-item:last-child { border-right: none; }

.fact-item:hover { background: var(--sand); }

.fact-item__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.fact-item__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.fact-item__label {
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.03em;
}

/* ---- Footer ---- */
.footer {
    background: var(--deep-blue);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.footer__col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease;
}

.footer__link:hover { color: var(--gold-light); }

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s ease;
}

.footer__bottom-link:hover { color: var(--gold); }

/* ---- Cookie Bar ---- */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 1.25rem 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-bar.visible { transform: translateY(0); }

.cookie-bar__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-bar__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-bar__text { flex: 1; min-width: 200px; }

.cookie-bar__text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cookie-bar__text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.cookie-bar__text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-bar__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    margin: 2rem 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .facts-strip { grid-template-columns: repeat(2, 1fr); }
    .facts-strip .fact-item:nth-child(2) { border-right: none; }
    .facts-strip .fact-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.06); }
    .months-grid { grid-template-columns: repeat(4, 1fr); }
    .price-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cards-grid--3 { grid-template-columns: 1fr; }
    .cards-grid--2 { grid-template-columns: 1fr; }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .info-grid--reverse .info-grid__image { order: 0; }
    .info-grid--reverse .info-grid__text { order: 0; }
    .navbar__nav { display: none; }
    .navbar__toggle { display: flex; }
    .navbar__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,22,40,0.98);
        padding: 1rem;
        gap: 0.25rem;
    }
    .navbar__actions .btn { display: none; }
    .price-grid { grid-template-columns: 1fr; }
    .months-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .facts-strip { grid-template-columns: repeat(2, 1fr); }
    .lm-banner { flex-direction: column; text-align: center; }
    .hero__stats { gap: 1.5rem; }
    .cookie-bar__inner { gap: 1rem; }
}

@media (max-width: 480px) {
    .months-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-hero { height: 60vh; }
    .hero__title { font-size: 2.4rem; }
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- Horizontal scroll for destinations ---- */
.dest-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .dest-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .dest-scroll {
        grid-template-columns: 1fr;
    }
}

/* Offer highlight strip */
.offer-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-flex;
}

.offer-strip .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Section header center layout */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Subpage layout */
.subpage-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.subpage-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .subpage-layout {
        grid-template-columns: 1fr;
    }
    .subpage-sidebar { position: static; }
}
