/* ==========================================================================
   CSS Variables (Design Tokens) - Sunrise Luxury Theme
   ========================================================================== */
   :root {
    /* Colors */
    --color-primary: #D4AF37; /* Sunrise Gold */
    --color-primary-hover: #b5952f;
    --color-bg-light: #FAF9F6; /* Cream/Off-white */
    --color-bg-alt: #F0EBE1; /* Slightly darker cream */
    --color-text-dark: #2C3539; /* Slate/Charcoal */
    --color-text-muted: #64748B;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(16px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 6rem 1rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Glassmorphism Utilities
   ========================================================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

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

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

/* Make initial navbar text white so it reads over the dark hero overlay */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links a:not(.btn) {
    color: #fff;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Scrolled state */
.navbar.scrolled {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--color-text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/segovia-alcazar.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from darker top/middle (to read white text against the sun) to light bottom */
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 0.6) 60%, rgba(250, 249, 246, 1) 100%);
    z-index: 1;
}

.eyebrow {
    display: block;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff; /* changed to white for contrast against dark overlay */
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

.hero-actions {
    margin-bottom: 3rem;
}

.trust-strip {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stars {
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-right: 0.5rem;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.scroll-down-indicator span {
    display: block;
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ==========================================================================
   Experience Section (Grid)
   ========================================================================== */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    background: #fff;
}

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

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.feature-card p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   Packages Section (Tiering)
   ========================================================================== */
.packages-section {
    background-color: var(--color-bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-card {
    transform: scale(1.05); /* Make it stand out slightly */
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    z-index: 10;
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: 1.5rem;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.features-list {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.bg-darker {
    background-color: var(--color-bg-light); /* Or #fff if preferred */
    color: var(--color-text-dark);
}

.reviews-section .section-header h2,
.reviews-section .section-header p {
    color: var(--color-text-dark);
}

.reviews-slider {
    max-width: 1000px;
    min-height: 280px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    background: transparent;
    border: none;
}

.review-stars {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.review-author strong {
    display: block;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
}

.review-author span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.trust-badge {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Booking Wizard (Custom Engine)
   ========================================================================== */
.booking-section {
    background: radial-gradient(circle at top, #fff 0%, var(--color-bg-alt) 70%, #f0ede4 100%);
    padding-bottom: 5rem;
}

.booking-wizard {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.booking-cta {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.booking-cta .wizard-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: -1.5rem;
}

.booking-cta .btn {
    min-width: 260px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
    padding: 0 10%;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.progress-step span {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.progress-step.active {
    color: var(--color-text-dark);
}

.progress-step.active span {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.wizard-content {
    display: none;
    animation: fadeInScale 0.4s ease-out;
}

.wizard-content.active {
    display: block;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.99) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Live Summary Bar */
.wizard-live-summary {
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: var(--color-text-dark);
    color: #fff;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.summary-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.summary-pills span {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-pills .icon {
    font-style: normal;
}

.summary-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.summary-price-box .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.summary-price-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .wizard-live-summary {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .summary-pills {
        justify-content: center;
    }
    .summary-price-box {
        text-align: center;
    }
}

/* Step 1: Selection Grid */
.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Custom Calendar Overrides (Flatpickr Theme) */
#booking-calendar {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Flight Options */
.flight-options-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flight-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.flight-option:hover {
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.flight-option.active {
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.flight-option h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.flight-option p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.option-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Step 2: Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.counter-input {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 12px;
    width: fit-content;
}

.counter-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--color-text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.counter-input button:hover {
    background: var(--color-primary);
    color: #fff;
}

.counter-input span {
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* Step 3: Summary */
.summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0 0;
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.summary-total strong {
    color: var(--color-primary);
}

.payment-methods {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.secure-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.wizard-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0;
}

.wizard-actions:only-child,
#step-1 .wizard-actions {
    justify-content: flex-end;
}

.booking-cta .wizard-actions:only-child {
    justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-text-dark); /* Dark slate for footer */
    padding: 4rem 20px 2rem;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: #fff;
}

.footer-brand p {
    color: #a0aec0;
    max-width: 300px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.footer h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact p {
    color: #a0aec0;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: #a0aec0;
}

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

.legal-links a:hover {
    color: #fff;
}

/* ==========================================================================
   Floating Action Button (WhatsApp)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Scroll Animations (Intersection Observer Targets)
   ========================================================================== */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
}

.slide-up {
    transform: translateY(30px);
}

.slide-up.is-visible {
    transform: translateY(0);
}

/* In-line style for entry animations on load */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Add slight delays based on inline CSS variable --delay */
[style*="--delay"] {
    transition-delay: calc(var(--delay) * 150ms);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(250, 249, 246, 0.5);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Blog Preview / Cards
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-card-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   Media Queries (Responsive Design)
   ========================================================================== */
@media (max-width: 992px) {
    .premium-card {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a:not(.btn) {
        font-size: 0.85rem;
    }
    
    .nav-links .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Would need a hamburger menu implementation for full mobile */
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .booking-container {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
