/* ═══════════════════════════════════════════
   EdelHaus Pet Resort — Location Page Styles
   Used by /locations/*.html and the home-page
   "Service Area" section.
   ═══════════════════════════════════════════ */

/* ─── HOMEPAGE SERVICE AREA SECTION ─── */
.service-area {
    background: var(--cream);
    padding: 6rem 2rem;
}

.service-area .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.service-area .section-header .section-label {
    justify-content: center;
}

.service-area .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.service-area .section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.area-counties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    max-width: 1080px;
    margin: 0 auto;
}

.area-county {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-county:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.area-county h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-county h3 svg {
    color: var(--gold);
}

.area-county p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.area-county a {
    color: var(--green-mid);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.area-county a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
    .area-counties {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .area-county {
        padding: 1.75rem;
    }
}

/* ─── LOCATION PAGE: TRUST STRIP ─── */
.loc-trust-strip {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--cream-dark);
}

.loc-trust-badges {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2.5rem;
}

.loc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-deep);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.loc-trust-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .loc-trust-badges {
        gap: 1rem 1.5rem;
        justify-content: flex-start;
    }
    .loc-trust-badge {
        font-size: 0.82rem;
    }
}

/* ─── LOCATION PAGE: INTRO ─── */
.loc-intro {
    background: var(--cream);
    padding: 6rem 2rem;
}

.loc-intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loc-intro-text .section-label {
    margin-bottom: 1rem;
}

.loc-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.loc-intro-text p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.loc-intro-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.loc-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .loc-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .loc-intro-image img {
        min-height: 300px;
    }
}

/* ─── LOCATION PAGE: SERVICES GRID ─── */
.loc-services {
    background: var(--white);
    padding: 6rem 2rem;
}

.loc-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.loc-services-header .section-label {
    justify-content: center;
}

.loc-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.loc-services-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.loc-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.loc-service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.loc-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(200,162,78,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.loc-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 0.85rem;
}

.loc-service-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.loc-service-card a {
    color: var(--green-mid);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.loc-service-card a:hover {
    color: var(--gold);
    gap: 10px;
}

@media (max-width: 1024px) {
    .loc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .loc-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── LOCATION PAGE: DRIVE TIME ─── */
.loc-drive {
    background: var(--green-deep);
    color: var(--white);
    padding: 5rem 2rem;
}

.loc-drive-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.loc-drive-text .section-label {
    color: var(--gold-light);
}

.loc-drive-text .section-label::before {
    background: var(--gold-light);
}

.loc-drive-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.loc-drive-text h2 em {
    font-style: normal;
    color: var(--gold-light);
}

.loc-drive-text p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.loc-drive-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.loc-drive-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.loc-drive-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.loc-drive-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 360px;
}

.loc-drive-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .loc-drive-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .loc-drive-map {
        height: 280px;
    }
}

/* ─── LOCATION PAGE: TESTIMONIAL ─── */
.loc-testimonial {
    background: var(--cream);
    padding: 6rem 2rem;
}

.loc-testimonial-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.loc-testimonial-header .section-label {
    justify-content: center;
}

.loc-testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--gold);
}

.loc-testimonial-stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 1.25rem;
}

.loc-testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.loc-testimonial-author {
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 4px;
}

.loc-testimonial-role {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ─── LOCATION PAGE: INLINE LEAD FORM ─── */
.loc-form-section {
    background: var(--white);
    padding: 6rem 2rem;
}

.loc-form-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.loc-form-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--green-deep);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.loc-form-text > p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.loc-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.loc-form-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.96rem;
}

.loc-form-benefit svg {
    color: var(--gold);
    flex-shrink: 0;
}

.loc-form-card {
    background: var(--cream);
    padding: 2.5rem 2.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}

.loc-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.loc-form-card .form-subtitle {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.loc-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.loc-form .form-group {
    margin-bottom: 0.85rem;
}

.loc-form label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.loc-form input,
.loc-form select,
.loc-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.loc-form input:focus,
.loc-form select:focus,
.loc-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,162,78,0.15);
}

.loc-form textarea {
    resize: vertical;
    min-height: 90px;
}

.loc-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.loc-form-error {
    display: none;
    background: #fee;
    color: #c00;
    border: 1px solid #c00;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.loc-form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.loc-form-success-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.loc-form-success h3 {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.loc-form-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .loc-form-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ─── LOCATION PAGE: FAQ ─── */
.loc-faq {
    background: var(--cream);
    padding: 6rem 2rem;
}

.loc-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.loc-faq-header .section-label {
    justify-content: center;
}

.loc-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.loc-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.loc-faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
}

.loc-faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.loc-faq-item p {
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 0.97rem;
    padding-left: 28px;
}

/* ─── LOCATION PAGE: WHY CHOOSE US ─── */
.loc-why {
    background: var(--white);
    padding: 6rem 2rem;
}

.loc-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.loc-why-header .section-label {
    justify-content: center;
}

.loc-why-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.loc-why-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.loc-why-item {
    display: flex;
    gap: 1.25rem;
    background: var(--cream);
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}

.loc-why-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,162,78,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-why-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
}

.loc-why-item p {
    color: var(--text-mid);
    font-size: 0.93rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .loc-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── LOCATION PAGE: NEARBY AREAS ─── */
.loc-nearby {
    background: var(--cream);
    padding: 4.5rem 2rem;
    text-align: center;
}

.loc-nearby h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
}

.loc-nearby-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.loc-nearby-links a {
    display: inline-block;
    padding: 10px 22px;
    background: var(--white);
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    border-radius: 50px;
    border: 1px solid var(--cream-dark);
    transition: all 0.25s ease;
}

.loc-nearby-links a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}
