:root {
    /* Main Southwestern Brand Colors */
    --brand-gradient: linear-gradient(90deg, #63717a, #abe0f9, #e7c872, #f17471);
    --bg-color: #f2f1df; /* Warm Desert Off-White */
    --card-bg: #ffffff;
    --text-dark: #2c3539;
    --text-muted: #5e6b70;
    --accent-slate: #63717a;
    --accent-brown: #928a67;
    --accent-blue: #abe0f9;
    --accent-red: #f17471;
    --accent-yellow: #e7c872;

    /* NEW: Soft Retro Accents (Turquoise and Purple) */
    --accent-turquoise: #43b3ae;
    --accent-purple: #9275bf;

    /* Light Theme Background Alerts */
    --bg-blue-light: #e8f4fd;
    --bg-yellow-light: #fffde7;
    --bg-red-light: #ffebee;
    --bg-green-light: #e8f5e9;
    --bg-slate-light: #f4f6f7;
    --bg-turquoise-light: #e5f7f6;
    --bg-purple-light: #f5f0f9;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: all 0.25s ease-in-out;
}

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

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

/* --- STICKY NAVIGATION BAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gradient);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--accent-slate);
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-link img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-slate);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-slate);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-book {
    background-color: var(--accent-slate);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-nav-book:hover {
    background-color: var(--accent-brown);
    transform: translateY(-1px);
}

/* Hamburger Toggle Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--accent-slate);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- HERO BANNER --- */
.hero {
    padding: 140px 20px 80px;
    background: var(--brand-gradient);
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background-color: var(--bg-color);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-cta-primary {
    background-color: white;
    color: var(--accent-slate);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    background-color: var(--bg-color);
    color: var(--accent-brown);
}

.btn-cta-secondary {
    background-color: rgba(0,0,0,0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: white;
}

.quick-features-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-badge {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25);
}

/* --- CONTENT MAIN CONTAINER --- */
.main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e0e0e0;
}

.section-header {
    margin-bottom: 24px;
    border-bottom: 3px solid var(--accent-blue);
    padding-bottom: 12px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-slate);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

/* --- STYLED LISTS & GRID LAYOUTS --- */
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent-brown);
    font-weight: 900;
    font-size: 1.1rem;
}

/* --- WHO IT'S FOR PROFILE CARDS --- */
.profile-card {
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: var(--transition);
}

.profile-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-sm);
}

.profile-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Colorful Southwest Theme Overrides for Profiles */
.profile-purple {
    background-color: var(--bg-purple-light);
    border-left: 5px solid var(--accent-purple);
}
.profile-purple h3 {
    color: var(--accent-purple);
}

.profile-turquoise {
    background-color: var(--bg-turquoise-light);
    border-left: 5px solid var(--accent-turquoise);
}
.profile-turquoise h3 {
    color: var(--accent-turquoise);
}

.profile-slate {
    background-color: var(--bg-slate-light);
    border-left: 5px solid var(--accent-slate);
}
.profile-slate h3 {
    color: var(--accent-slate);
}

/* --- INSTRUCTION STEP-BY-STEP --- */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-blue-light);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-blue);
}

.step-num {
    background-color: var(--accent-slate);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- POLICIES SUB-CARDS --- */
.policy-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.policy-card {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.policy-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-card p, .policy-card li {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.policy-card ul {
    list-style: none;
    margin-top: 8px;
}

.policy-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.policy-card ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: inherit;
    font-size: 1.2rem;
    top: -2px;
}

.policy-blue {
    background-color: var(--bg-blue-light);
    border-color: var(--accent-blue);
    color: #1a4f70;
}
.policy-blue h3 { color: #1a4f70; }

.policy-yellow {
    background-color: var(--bg-yellow-light);
    border-color: var(--accent-yellow);
    color: #7d6313;
}
.policy-yellow h3 { color: #7d6313; }

.policy-red {
    background-color: var(--bg-red-light);
    border-color: var(--accent-red);
    color: #c62828;
}
.policy-red h3 { color: #c62828; }

.policy-slate {
    background-color: var(--bg-slate-light);
    border-color: #d1d5db;
    color: var(--text-dark);
}
.policy-slate h3 { color: var(--accent-slate); }

.policy-green {
    background-color: var(--bg-green-light);
    border-color: #a5d6a7;
    color: #1b5e20;
}
.policy-green h3 { color: #1b5e20; }

.policy-turquoise {
    background-color: var(--bg-turquoise-light);
    border-color: var(--accent-turquoise);
    color: #1c5e5a;
}
.policy-turquoise h3 { color: #1c5e5a; }

/* --- RATES SECTION & INTERACTION --- */
.rate-showcase {
    background-color: var(--bg-slate-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    transition: var(--transition);
}

.rate-showcase:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-slate);
}

.rate-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.rate-building {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-slate);
    white-space: nowrap;
}

/* --- ACCORDION FAQ --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    background-color: var(--card-bg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-slate-light);
}

.faq-answer-inner {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid #e2e8f0;
}

/* --- CTA SECTION --- */
.cta-footer-card {
    background: var(--brand-gradient);
    color: white;
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    margin-top: 40px;
    box-shadow: var(--shadow-md);
}

.cta-footer-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-footer-card p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* --- CONTACT & INFO BLOCKS --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.contact-block {
    background-color: var(--bg-slate-light);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-block a {
    color: var(--accent-slate);
    text-decoration: underline;
}

/* --- GLOBAL FOOTER --- */
footer {
    background-color: #2c3539;
    color: #cbd5e1;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent-brown);
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: white;
    padding: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* --- MODAL DIALOGS --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-md);
    text-align: left;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-block-action {
    display: block;
    width: 100%;
    background-color: var(--accent-slate);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-block-action:hover {
    background-color: var(--accent-brown);
}

/* --- MOBILE MEDIA QUERIES (95% of travelers use mobile!) --- */
@media (max-width: 768px) {
    header {
        height: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background-color: white;
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 20px;
        box-shadow: -4px 10px 20px rgba(0,0,0,0.05);
        transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav-book {
        text-align: center;
        margin-top: 10px;
        padding: 14px;
        font-size: 1.1rem;
    }

    .hero {
        padding: 110px 15px 60px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .main-container {
        padding: 20px 10px;
    }

    .section-card {
        padding: 24px 15px;
        border-radius: var(--radius-md);
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.45rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .grid-two-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .policy-group-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rate-showcase {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rate-price {
        align-self: flex-end;
    }
}
