/* ============================================
   Ride with Jagg — Shared Stylesheet
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal: #0a0a0a;
    --slate: #111111;
    --gold: #c9a84c;
    --gold-light: #e0c872;
    --cream: #0e0e0e;
    --warm-gray: #888888;
    --light-gray: #222222;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e8e8e8;
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Site Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1a1a;
}

.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header__logo img {
    height: 42px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--gold);
}

.site-header__call {
    background: var(--gold);
    color: var(--charcoal) !important;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.site-header__call:hover {
    background: var(--gold-light);
}

/* Hero */
.hero {
    padding: 5rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(170deg, #000000 0%, #0a0a0a 55%, #111111 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo {
    width: 400px;
    margin: 0 auto 2.5rem;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: background 0.25s, transform 0.2s;
    box-shadow: 0 4px 25px rgba(201, 168, 76, 0.3);
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.cta-phone {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Hero actions row (button + contact link) */
.hero-actions {
    display: flex;
    gap: 1.25rem 1.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.link-contact {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.link-contact:hover {
    color: var(--gold-light);
}

/* Section */
section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--warm-gray);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* Problem Section */
.problem {
    background: var(--cream);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.problem-card {
    background: #161616;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s;
}

.problem-card:hover {
    border-color: #333;
}

.problem-card .problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e8e8e8;
}

.problem-card p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    font-weight: 300;
    line-height: 1.6;
}

.problem-answer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
}

/* Chauffeur CTA Section */
.chauffeur-cta {
    background: linear-gradient(170deg, #0d0d0d 0%, #141414 100%);
    text-align: center;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.chauffeur-cta .section-title {
    color: #fff;
}

.chauffeur-cta .chauffeur-desc {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.chauffeur-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.chauffeur-feature-tag {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: 2px solid var(--gold);
    letter-spacing: 0.04em;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.cta-button-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-1px);
}

/* Features */
.features {
    background: #111111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem 1rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    background: #000000;
    border: 1px solid #222222;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    font-weight: 300;
    line-height: 1.6;
}

/* Service Area */
.service-area {
    background: var(--cream);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.area-tag {
    background: #161616;
    border: 1px solid #222222;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #d0d0d0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.area-tag:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.12);
}

/* CTA Section */
.cta-section {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-logo {
    width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
}

.cta-section .section-title {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    font-size: 1.15rem;
    padding: 1.1rem 3rem;
}

/* ============================================
   Location Directory (homepage)
   ============================================ */
.directory {
    background: #0d0d0d;
}

.directory-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.directory-col h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.1rem;
    text-align: center;
}

.directory-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.directory-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #161616;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    color: #d8d8d8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: border-color 0.2s, transform 0.15s, color 0.2s;
}

.directory-link:hover {
    border-color: var(--gold);
    transform: translateX(3px);
    color: #fff;
}

.directory-link .dist {
    color: var(--warm-gray);
    font-size: 0.8rem;
    font-weight: 300;
    white-space: nowrap;
}

/* ============================================
   Location Pages
   ============================================ */
.breadcrumb {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.25rem 2rem 0;
    font-size: 0.82rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.breadcrumb a {
    color: var(--warm-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: #555;
    margin: 0 0.4rem;
}

.loc-hero__badge {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.loc-hero__icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.75rem;
}

.loc-hero__icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
    stroke: none;
}

/* Location info */
.loc-info {
    background: var(--cream);
}

.loc-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem;
    margin: 0 auto 3rem;
    max-width: 820px;
}

.loc-fact {
    background: #161616;
    border: 1px solid #222222;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.loc-fact__num {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.55rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.loc-fact__label {
    font-size: 0.82rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.loc-prose {
    max-width: 760px;
    margin: 0 auto;
}

.loc-prose p {
    color: #c8c8c8;
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.loc-prose h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.3rem;
    margin: 2.25rem 0 0.85rem;
    color: #fff;
}

.loc-prose ul {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
}

.loc-prose li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55rem;
    color: #c8c8c8;
    font-weight: 300;
}

.loc-prose li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Value-prop cards on location pages */
.loc-value {
    background: #111111;
}

.loc-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.loc-value-card {
    padding: 1.75rem 1.5rem;
    background: #161616;
    border: 1px solid #222222;
    border-radius: 16px;
    transition: border-color 0.2s;
}

.loc-value-card:hover {
    border-color: #333;
}

.loc-value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.loc-value-card p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    font-weight: 300;
    line-height: 1.6;
}

/* FAQ */
.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #222222;
    padding: 1.3rem 0;
}

.faq-item h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--warm-gray);
    font-weight: 300;
    font-size: 0.95rem;
}

/* Related links */
.related-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.related-links a {
    background: #161616;
    border: 1px solid #222222;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #d0d0d0;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.related-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   Contact Page Form
   ============================================ */
.contact-wrap {
    max-width: 640px;
    margin: 2.5rem auto 0;
}

.contact-form {
    display: grid;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    color: #c8c8c8;
    font-weight: 400;
}

.form-group .req {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #e8e8e8;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.4rem;
}

.contact-form button.cta-button {
    border: none;
    cursor: pointer;
    justify-self: start;
    font-family: inherit;
}

.form-note {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
}

.form-note a {
    color: #888;
}

.form-status {
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.25rem 0;
    min-height: 1.4rem;
}

.form-status.success {
    color: var(--gold);
}

.form-status.error {
    color: #e08c8c;
}

/* Footer */
footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: 0.85rem;
    font-weight: 300;
}

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

footer a:hover {
    color: var(--gold-light);
}

.footer-sister {
    margin-top: 0.75rem;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 760px) {
    .site-nav__links {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 1.5rem 4rem;
    }

    .hero-logo {
        width: 160px;
    }

    section {
        padding: 3.5rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 3.5rem 1.5rem;
    }

    .problem-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .chauffeur-cta {
        padding: 3.5rem 1.5rem;
    }

    .directory-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        padding: 0.7rem 1.25rem;
    }
}
