/* ======================================================================
   MIKLAM TOURS — Design System
   "Expedition dossier" language for a Manali–Spiti–Manali road trip:
   dusk-navy skies, sun-baked rust cliffs, brass/gold prayer-flag accent,
   topographic contour lines, mono data labels for altitudes/dates/UTRs.
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Names kept exactly as before — script.js and inline HTML styles
       reference var(--primary-blue) / var(--accent-orange) directly. */
    --primary-blue: #14203C;      /* dusk navy — was #1E3A8A */
    --accent-orange: #C1592E;     /* burnt rust — was #D97706 */
    --accent-hover: #9E4623;
    --text-dark: #241F1A;
    --bg-light: #F6F1E6;
    --white: #ffffff;

    /* New tokens for the expanded palette */
    --navy-2: #1C2C4F;
    --navy-deep: #0C1526;
    --gold: #D9A441;
    --gold-soft: #EFD9A0;
    --line: rgba(20, 32, 60, 0.12);
    --line-light: rgba(255, 255, 255, 0.16);
    --ink-soft: #5B5148;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --contour: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23D9A441' stroke-opacity='0.16' stroke-width='1'%3E%3Cpath d='M-20,36 Q60,6 150,36 T340,36'/%3E%3Cpath d='M-20,86 Q60,56 150,86 T340,86'/%3E%3Cpath d='M-20,136 Q60,106 150,136 T340,136'/%3E%3Cpath d='M-20,186 Q60,156 150,186 T340,186'/%3E%3Cpath d='M-20,236 Q60,206 150,236 T340,236'/%3E%3Cpath d='M-20,286 Q60,256 150,286 T340,286'/%3E%3C/g%3E%3C/svg%3E");
}

/* --- GLOBAL RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

::selection { background: var(--gold-soft); color: var(--navy-deep); }

:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Mono "dossier label" utility — used for altitudes, coordinates, dates */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.kicker::before {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
    display: inline-block;
}

.btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 14px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-body);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    box-shadow: 0 8px 20px -6px rgba(193, 89, 46, 0.55);
    letter-spacing: 0.01em;
}

.btn:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 24px -6px rgba(193, 89, 46, 0.6); }
.btn:active { transform: translateY(0); }

/* --- SCROLL ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: var(--white);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 0 var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.02em;
}

header nav a { font-weight: 600; font-size: 0.98rem; transition: color 0.2s ease; }
header nav a:hover { color: var(--accent-orange); }

/* --- HERO SECTION --- */
.hero {
    height: 86vh;
    min-height: 560px;
    position: relative;
    background:
        linear-gradient(180deg, rgba(12,21,38,0.55) 0%, rgba(12,21,38,0.72) 55%, rgba(12,21,38,0.92) 100%),
        url('hero.JPG') center/cover fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--contour);
    background-size: 320px 320px;
    opacity: 0.6;
    pointer-events: none;
}

.hero .kicker { color: var(--gold-soft); margin-bottom: 22px; position: relative; z-index: 1; }

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: none;
    max-width: 900px;
    line-height: 1.08;
    position: relative;
    z-index: 1;
}

.hero h1 em { font-style: italic; color: var(--gold-soft); }

.hero p {
    font-size: 1.2rem;
    margin-bottom: 34px;
    max-width: 600px;
    color: #E7E2D6;
    position: relative;
    z-index: 1;
}

.hero .btn { position: relative; z-index: 1; }

/* --- SPITI VIEWS SECTION --- */
.spiti-views {
    padding: 110px 5% 90px;
    text-align: center;
    background: var(--bg-light);
}

.section-title {
    font-family: var(--font-display);
    color: var(--primary-blue);
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.spiti-views > .kicker { justify-content: center; margin-bottom: 18px; color: var(--accent-orange); }

.views-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 48px 0 40px;
}

.view-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px -12px rgba(20,32,60,0.18);
    text-align: left;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.view-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -14px rgba(20,32,60,0.28); }

.view-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.view-card h3 {
    padding: 18px 20px 8px;
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.view-card .alt-tag {
    display: inline-block;
    margin: 0 20px 18px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--accent-orange);
    background: rgba(193, 89, 46, 0.09);
    padding: 4px 10px;
    border-radius: 20px;
}

/* --- SHARED TAXI & RENTAL VEHICLE SERVICES SECTION --- */
.services-section {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.services-lead {
    max-width: 620px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
    text-align: left;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 34px;
    border-radius: 16px;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px -18px rgba(20,32,60,0.22);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: inline-block;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover { transform: translateY(-2px); }

.contact-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 18px -8px rgba(37, 211, 102, 0.55);
}
.contact-whatsapp:hover { background: #1EBE5A; }
.contact-whatsapp::before { content: '💬'; }

.contact-call {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 8px 18px -8px rgba(20, 32, 60, 0.45);
}
.contact-call:hover { background: var(--navy-2); }
.contact-call::before { content: '📞'; }

.alt-contact {
    margin-top: 14px;
    margin-bottom: 0 !important;
    font-size: 0.85rem !important;
    color: var(--ink-soft);
    font-family: var(--font-mono);
}

.alt-contact a { color: var(--accent-orange); font-weight: 600; }
.alt-contact a:hover { text-decoration: underline; }

/* --- WHY VISIT SECTION --- */
.why-visit {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.reason-card {
    background: var(--bg-light);
    padding: 44px 32px;
    border-radius: 14px;
    text-align: left;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px -16px rgba(20,32,60,0.22);
    border-color: transparent;
}

.reason-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
    display: inline-block;
}

.reason-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.35rem;
    font-weight: 600;
}

.reason-card p {
    color: var(--ink-soft);
    font-size: 1rem;
}

/* --- BEST TIME TO VISIT SECTION --- */
.best-time {
    background-color: var(--navy-deep);
    background-image: var(--contour);
    background-size: 320px 320px;
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
    position: relative;
}

.best-time .kicker { justify-content: center; margin-bottom: 16px; }

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.season-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 20px 45px -18px rgba(0,0,0,0.4);
    border-top: 3px solid var(--accent-orange);
}

.season-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.season-card p {
    margin-bottom: 15px;
    font-size: 1.02rem;
    color: var(--ink-soft);
}

/* --- CTA BOOKING SECTION --- */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-section h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-subtitle {
    margin-bottom: 32px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.cta-section .btn {
    font-size: 1.2rem;
    padding: 17px 44px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 60px 5% 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 44px;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-col p, .footer-col a {
    color: #B9C0CE;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    fill: #B9C0CE;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    fill: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    color: #7C8496;
    font-size: 0.88rem;
}

.developer-credit {
    color: #8A91A2;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.developer-credit strong {
    color: var(--gold);
}

/* --- BOOKING PAGE STYLES --- */
.booking-section {
    padding: 60px 5% 90px;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.booking-container {
    display: flex;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.booking-form-wrapper {
    flex: 2;
    background: var(--white);
    padding: 44px;
    border-radius: 16px;
    box-shadow: 0 16px 40px -20px rgba(20,32,60,0.25);
    border: 1px solid var(--line);
}

.booking-summary {
    flex: 1;
    background: var(--navy-deep);
    background-image: var(--contour);
    background-size: 260px 260px;
    color: var(--white);
    padding: 32px;
    border-radius: 16px;
    position: sticky;
    top: 100px;
    box-shadow: 0 16px 40px -18px rgba(12,21,38,0.5);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.booking-form input,
.booking-form select {
    padding: 13px 15px;
    border: 1.5px solid #E3DACB;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    font-family: var(--font-body);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--accent-orange);
    background: var(--white);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
    font-size: 1.15rem;
    padding: 16px;
}

.summary-details {
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 2.1;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.summary-details p { color: #AEB6C6; }
.summary-details span { color: var(--white); font-weight: 600; }

.summary-total {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 22px;
    text-align: center;
}

.summary-total h2 {
    font-size: 2.6rem;
    color: var(--gold);
    margin-top: 8px;
    font-weight: 600;
}

/* --- LOGIN & SIGNUP PAGE STYLES --- */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    position: relative;
    background:
        linear-gradient(180deg, rgba(12,21,38,0.75) 0%, rgba(12,21,38,0.88) 100%),
        url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
    padding: 40px 20px;
}

.auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--contour);
    background-size: 300px 300px;
    opacity: 0.5;
    pointer-events: none;
}

.auth-card {
    background-color: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
}

.auth-tab {
    flex: 1;
    padding: 17px 0;
    text-align: center;
    font-size: 1.02rem;
    font-weight: 700;
    color: #9A9284;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.auth-tab.active {
    color: var(--primary-blue);
    background: var(--white);
    border-bottom: 3px solid var(--accent-orange);
}

.auth-form {
    padding: 40px 32px;
}

.auth-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.form-group input {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #E3DACB;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(20, 32, 60, 0.08);
}

.remember-me {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot-password {
    color: var(--accent-orange);
    font-weight: 600;
}

.forgot-password:hover { text-decoration: underline; }

.google-btn {
    width: 100%;
    background-color: #fff;
    color: #3a3a3a;
    border: 1.5px solid #E3DACB;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    box-shadow: none;
}

.google-btn:hover { background-color: var(--bg-light); transform: none; box-shadow: none; }
.google-btn img { width: 20px; height: 20px; }

.divider {
    text-align: center;
    border-bottom: 1px solid var(--line);
    line-height: 0.1em;
    margin: 20px 0;
}

.divider span {
    background: #fff;
    padding: 0 12px;
    color: #9A9284;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- STANDARD TEXT PAGES --- */
.page-header {
    background:
        linear-gradient(180deg, rgba(12,21,38,0.65) 0%, rgba(12,21,38,0.88) 100%),
        url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=2000&auto=format&fit=crop') center/cover;
    padding: 100px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--contour);
    background-size: 300px 300px;
    opacity: 0.5;
}

.page-header h1 {
    font-size: 3.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
}

.page-header p {
    position: relative;
    color: #D9DEE8;
    font-size: 1.1rem;
}

.page-content {
    max-width: 860px;
    margin: 70px auto;
    padding: 0 20px;
    color: var(--text-dark);
}

.page-content h2, .page-content h3 {
    color: var(--primary-blue);
    margin: 38px 0 16px;
    font-weight: 600;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p, .page-content ul {
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 1.05rem;
    color: var(--ink-soft);
}

.page-content ul { padding-left: 22px; }
.page-content li { margin-bottom: 10px; }

/* --- PREMIUM REVIEWS SECTION --- */
.reviews-section {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid var(--line);
}

.reviews-section .kicker { justify-content: center; margin-bottom: 16px; color: var(--accent-orange); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 44px 0 64px;
}

.review-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--line);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px -16px rgba(20,32,60,0.2); }

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.reviewer-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.08rem;
    font-weight: 700;
}

.verified-badge {
    color: #0E8A5F;
    font-size: 0.82rem;
    font-weight: 600;
}

.review-card .stars {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-card .review-text {
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.modern-review-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 44px;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.login-prompt {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin-top: 15px;
}

.login-prompt a {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: underline;
}

.user-greeting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.avatar-small {
    width: 34px;
    height: 34px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
}

#reviewerNameDisplay { color: var(--primary-blue); }

.star-rating-input {
    font-size: 2.6rem;
    color: #DDD3C0;
    cursor: pointer;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.star-rating-input span { transition: color 0.2s ease, transform 0.2s ease; }
.star-rating-input span:hover { transform: scale(1.12); }
.star-rating-input span:hover,
.star-rating-input span:hover ~ span { color: var(--gold); }
.star-rating-input span.active { color: var(--gold); }

#reviewTextInput {
    width: 100%;
    padding: 18px;
    border: 1.5px solid #E3DACB;
    border-radius: 12px;
    font-size: 1.02rem;
    background: var(--white);
    font-family: var(--font-body);
    resize: vertical;
    margin-bottom: 25px;
    transition: all 0.25s ease;
}

#reviewTextInput:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(193, 89, 46, 0.12);
}

/* ========================================== */
/* 📱 MASTER MOBILE MEDIA QUERIES 📱 */
/* ========================================== */
@media (max-width: 768px) {
    header {
        padding: 12px 5%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .logo {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    header nav, header div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    header a {
        font-size: 0.88rem;
    }

    header .btn {
        padding: 9px 16px;
        font-size: 0.85rem;
    }

    .hero {
        height: 56vh;
        min-height: 420px;
        padding: 20px 15px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.98rem;
        margin-bottom: 22px;
    }

    .hero .btn {
        padding: 11px 26px;
        font-size: 1rem;
    }

    .section-title { font-size: 1.9rem; }

    .booking-section {
        padding: 30px 15px 60px;
    }

    .booking-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .booking-form-wrapper {
        width: 100%;
        padding: 26px 18px;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-summary {
        position: static;
        width: 100%;
        padding: 24px 20px;
    }

    .page-header { padding: 70px 20px 56px; }
    .page-header h1 { font-size: 2.2rem; }
    .page-content { margin: 44px auto; }

    .auth-section { background-attachment: scroll; }

    .services-section { padding: 60px 5%; }
    .service-card { padding: 30px 22px; }
    .contact-strip { flex-direction: column; }
    .contact-btn { justify-content: center; }
}

/* ================= TOAST NOTIFICATIONS & CONFIRM MODAL ================= */
#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 340px;
}

.toast {
    background: var(--white);
    border-left: 5px solid var(--primary-blue);
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 16px 34px -10px rgba(12,21,38,0.35);
    font-size: 0.92rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.25s ease forwards;
}

.toast.toast-success { border-left-color: #0E8A5F; }
.toast.toast-error { border-left-color: #C13C2E; }
.toast.toast-info { border-left-color: var(--primary-blue); }

.toast.toast-hide {
    animation: toastOut 0.25s ease forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 21, 38, 0.6);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: overlayIn 0.2s ease forwards;
}

@keyframes overlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 30px 60px -18px rgba(0,0,0,0.4);
    animation: modalIn 0.2s ease forwards;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-card p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 22px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.modal-btn-cancel {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-btn-confirm {
    background: var(--accent-orange);
    color: var(--white);
}

.modal-btn-confirm:hover { background: var(--accent-hover); }
