/* --- GLOBAL STYLES & RESET (Keep the same) --- */
:root {
    --primary-color: #A0522D; /* Sienna - Earthy, luxurious tone */
    --secondary-color: #F8F4E3; /* Cream/Off-White - Classic background */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --accent-gold: #FFD700; /* Subtle gold accent */
    --hotline-blue: #324996; /* Dark blue for the new section */
    --hotline-yellow: #FFD966; /* Yellow for contrast on blue background */
}

/* ... (Existing styles for body, h1, h2, etc. remain unchanged) ... */

/* --- 1. EMERGENCY HOTLINE BAR (NEW SECTION STYLES) --- */
#top-hotline-bar {
    background-color: var(--hotline-blue);
    color: var(--text-light);
    padding: 40px 5%;
    text-align: center;
}

.hotline-content {
    max-width: 700px;
    margin: 0 auto;
}

#top-hotline-bar h3 {
    font-size: 1.8em;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: var(--text-light);
}

#top-hotline-bar p {
    font-size: 1em;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hotline-label {
    font-size: 1.1em;
    font-weight: 300;
    color: var(--hotline-yellow); /* Yellow label */
    margin-bottom: 5px !important;
    text-transform: uppercase;
}

.hotline-number {
    display: block;
    font-size: 2.8em;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.hotline-number:hover {
    color: var(--hotline-yellow);
}

.email-label {
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 5px !important;
}

.hotline-email {
    display: block;
    font-size: 1.2em;
    color: var(--hotline-yellow); /* Yellow email link */
    text-decoration: none;
    font-weight: 500;
}

.hotline-email:hover {
    text-decoration: underline;
}

/* --- 2. HEADER & NAVIGATION (Make sure header sits below the new bar) --- */
header {
    /* ... (Existing styles remain the same) ... */
    position: sticky; /* Keep sticky behavior */
    top: 0; /* Stays at the top, immediately after the hotline bar */
    z-index: 100;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- HEADER & NAVIGATION (UPDATED) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.phone-header {
    font-weight: bold;
    color: var(--primary-color) !important;
    font-size: 1.05em;
    display: flex;
    align-items: center;
}

.phone-header .icon {
    font-size: 1em;
    margin-right: 5px;
}

.cta-nav {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.cta-nav:hover {
    background-color: #8B4513; /* Darker primary for hover */
}

/* --- HERO SECTION (UPDATED) --- */
#hero {
    background: url('placeholder-andalusia-hero.jpg') no-repeat center center/cover; /* Replace with a high-res image of the Alhambra or Marbella Coast */
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.hero-content {
    z-index: 10;
}

#hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

#hero h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-contact-line {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-phone {
    color: var(--accent-gold);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-phone:hover {
    color: #FFC700;
}


/* --- FLIGHT ASSISTANCE SECTION (NEW) --- */
#flights {
    padding: 60px 5%;
    text-align: center;
    background-color: #F0EAD6; /* Slightly different background for contrast */
}

#flights h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.flight-content {
    max-width: 900px;
    margin: 0 auto;
}

.flight-details {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--text-light);
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.support-keywords {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
    font-size: 0.9em;
}

.support-keywords p {
    line-height: 1.8;
}

/* --- BUTTON STYLES (Keep the same) --- */
button {
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s;
}

#cta-hero {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 10px;
}

#cta-hero:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

.cta-main {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
}

.cta-main:hover {
    background-color: #8B4513;
    transform: translateY(-2px);
}


/* --- FEATURES SECTION (Keep the same) --- */
#features {
    padding: 80px 5%;
    text-align: center;
}

#features h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--text-light);
    padding: 30px;
    flex: 1 1 200px; /* Allows the cards to be responsive */
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* --- CTA SECTION (Keep the same) --- */
.cta-section {
    background-color: #EFEBE0; /* Soft, light background */
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid #ddd;
}

.cta-section h3 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 30px;
}

/* --- FOOTER (Keep the same) --- */
footer {
    background-color: var(--text-dark);
    color: #AFAFAF;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9em;
}

footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* --- MODAL/OVERLAY STYLES (Keep the same) --- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default via JS */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-content {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
}

.overlay-content h4 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

#booking-form input, 
#booking-form select, 
#booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#booking-form button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.hidden {
    display: none !important;
}

#form-message {
    color: green;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
}

/* --- MEDIA QUERIES (Responsiveness) --- */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3em;
    }
    .feature-grid {
        flex-direction: column;
        align-items: center;
    }
    nav a {
        margin-left: 15px;
        font-size: 0.9em;
    }
    .phone-header {
        display: none; /* Hide header phone on small screens to save space, but keep the hero phone */
    }
}
/* --- GLOBAL STYLES & RESET --- */
:root {
    --primary-color: #A0522D; /* Sienna - Earthy, luxurious tone */
    --secondary-color: #F8F4E3; /* Cream/Off-White - Classic background */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --accent-gold: #FFD700; /* Subtle gold accent */
}

/* ... (Existing styles for body, h1, h2, header, hero, and features remain unchanged) ... */


/* --- FLIGHT ASSISTANCE SECTION (minor change for cleaner look) --- */
#flights {
    padding: 60px 5%;
    text-align: center;
    background-color: #F0EAD6; /* Slightly different background for contrast */
}
/* ... (Rest of #flights styles unchanged) ... */


/* --- WHY WE ARE BEST (NEW SECTION) --- */
#best-choice {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--text-light);
}

#best-choice h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.best-choice-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.best-choice-card {
    flex: 1;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    background-color: #fcfcfc;
}

.best-choice-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* --- TESTIMONIALS (NEW SECTION) --- */
#testimonials {
    padding: 80px 5%;
    text-align: center;
    background-color: #EFEBE0; /* Soft, light background */
}

#testimonials h3 {
    font-size: 2.5em;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 30px;
    background-color: var(--text-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    font-style: italic;
}

.client-name {
    font-style: normal;
    font-weight: bold;
    margin-top: 15px;
    display: block;
    color: var(--primary-color);
}


/* --- FAQS (NEW SECTION) --- */
#faqs {
    padding: 80px 5%;
    background-color: var(--secondary-color);
}

#faqs h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--text-light);
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    background-color: #f9f9f9;
    color: var(--primary-color);
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
}

.faq-answer {
    padding: 15px 25px;
    background-color: var(--text-light);
    /* In a real site, JS would toggle display: block */
}


/* --- FOOTER (UPDATED with Disclaimer) --- */
footer {
    background-color: var(--text-dark);
    color: #AFAFAF;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9em;
}

.disclaimer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 0.8em;
    color: #888;
    line-height: 1.4;
}

footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* ... (Existing styles for CTA and MODAL/OVERLAY remain unchanged) ... */

/* --- MEDIA QUERIES (Responsiveness) --- */
@media (max-width: 768px) {
    /* ... (Existing media queries) ... */
    
    .best-choice-grid, .testimonial-container {
        flex-direction: column;
    }
    .best-choice-card, .testimonial-card {
        margin-bottom: 20px;
    }
}