/* --- 1. Global Reset & Typography --- */
:root {
    --color-primary: #FF8C00; /* Seville Orange (Coffee/Warmth) */
    --color-secondary: #004F73; /* Deep Azulejo Blue (Professional) */
    --color-background: #F7F7F7; /* Alcázar White */
    --color-text: #333333; /* Dark Charcoal */
    --color-white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
}

/* --- 2. Buttons and Links --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    background-color: #ff9d2a;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cta-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #ffb766;
}

/* --- 3. Header and Navigation --- */
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    /* NEW: Add a subtle text shadow or color change to emphasize the brand */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    /* Optional: Add a slight primary color accent */
    text-shadow: 1px 1px 0px rgba(255, 140, 0, 0.2); 
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header nav ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 400;
    transition: color 0.3s;
}

.header nav ul li a:hover {
    color: var(--color-primary);
}

/* Hide some links on mobile */
@media (max-width: 768px) {
    .header nav ul li:nth-child(2),
    .header nav ul li:nth-child(3) {
        display: none;
    }
}

/* --- 4. Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://placehold.co/1200x600/004F73/FFFFFF?text=Seville+Cityscape'); 
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    padding: 100px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content p {
    font-size: 1.25rem;
    margin: 15px auto 30px;
    max-width: 700px;
    font-weight: 300;
}

/* --- 5. Services Summary --- */
.services-summary {
    text-align: center;
    background-color: var(--color-white);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.card {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card .icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: block;
}

.card h3 {
    color: var(--color-secondary);
    margin-top: 0;
}

/* --- 6. Contact & Booking Section (Renamed to scheduling-section for clarity) --- */
.contact-booking {
    /* Kept the old class for backwards compatibility/simplicity */
    background-color: var(--color-background);
    padding: 80px 20px;
}

/* Renaming this section style for clarity in the new index.html structure */
.scheduling-section {
    background-color: var(--color-background);
    padding: 80px 20px;
}

.scheduling-section h2 {
    text-align: center;
    color: var(--color-secondary);
}

.scheduling-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 40px;
}

/* Form styles removed as the form is now gone */

.scheduling-embed {
    /* Style for the container around the Calendly widget */
    padding: 20px; 
    text-align: center;
    background-color: var(--color-white);
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* --- 7. Footer --- */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 8px;
}

.footer a {
    color: #90b8cc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for booking section */
@media (max-width: 900px) {
    .booking-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .booking-form-wrapper {
        max-width: 100%;
    }
}