/* =====================================================================
   Break Free Clinic — style.css
   Custom CSS, no frameworks. Mobile-first, responsive.
   ===================================================================== */

/* --- Custom Properties --- */
:root {
    --primary:        #2c6e9e;
    --primary-dark:   #1a4a6e;
    --primary-light:  #e8f2fb;
    --secondary:      #4a9b6f;
    --secondary-dark: #357a56;
    --accent:         #f0a500;
    --dark:           #1a2332;
    --text:           #2d3748;
    --text-light:     #718096;
    --bg:             #f7f9fc;
    --bg-alt:         #ffffff;
    --white:          #ffffff;
    --border:         #e2e8f0;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow:    0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);

    --radius:    8px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --max-w:     1200px;

    --font-sans:    'Open Sans', system-ui, sans-serif;
    --font-heading: 'Roboto', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Container --- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section spacing --- */
.section     { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }

/* --- Section header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

/* --- Section label pill --- */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.65);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-full { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.logo { height: 60px; width: auto; max-width: 300px; }

/* --- Nav --- */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.main-nav a svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

/* --- Dropdown --- */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.dropdown li { display: block; }

.dropdown a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    border-radius: 6px;
    color: var(--text);
}

.dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* --- Nav CTA button --- */
.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

/* --- Hamburger toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.menu-toggle:hover { background: var(--bg); }

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(26,35,50,0.82) 0%, rgba(26,74,110,0.78) 55%, rgba(29,90,122,0.72) 100%),
        url('../images/photo-1742626157111-59f3f1019a8a.jpeg') center / cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.hero-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    object-position: top center;
}

.about-content .section-label { margin-bottom: 0.75rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }

.credentials-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.93rem;
    color: var(--text);
}

.credentials-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--secondary);
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: all var(--transition);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p  { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* =====================================================================
   OUR APPROACH
   ===================================================================== */
.approach-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.approach-sub-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.approach-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border-top: 3px solid var(--primary);
}

.approach-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.1rem;
}

.approach-icon svg { width: 24px; height: 24px; }

.approach-item h3 { margin-bottom: 0.65rem; }
.approach-item p  { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

.approach-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    list-style: none;
}

.approach-list li {
    font-size: 0.88rem;
    color: var(--text);
    padding-left: 1.25rem;
    position: relative;
}

.approach-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

.approach-item--compact {
    padding: 1.25rem 1.5rem;
}

.approach-item--compact .approach-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
}

.approach-item--compact .approach-icon svg {
    width: 20px;
    height: 20px;
}

.approach-item--compact h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

/* =====================================================================
   SECTION CTA
   ===================================================================== */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.section-cta p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

/* =====================================================================
   QUOTE BANNER
   ===================================================================== */
.quote-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4.5rem 0;
}

.quote-banner blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================================
   WHAT IS ADDICTION
   ===================================================================== */
.split-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.split-content .section-label { margin-bottom: 0.75rem; }
.split-content h2 { margin-bottom: 1.25rem; }
.split-content p  { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }

.split-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: contain;
}

/* =====================================================================
   TYPES OF ADDICTION
   ===================================================================== */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.type-card:hover { box-shadow: var(--shadow); }

.type-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    color: var(--white);
}

.type-card-header.substance   { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.type-card-header.behavioural { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)); }

.type-card-header svg { width: 28px; height: 28px; flex-shrink: 0; }
.type-card-header h3  { color: var(--white); font-size: 1.1rem; }

.type-list {
    padding: 1.25rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.type-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.type-list li:last-child { border-bottom: none; }

.type-list li strong {
    display: block;
    font-size: 0.93rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.type-list li span {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* =====================================================================
   WAYS TO START RECOVERY
   ===================================================================== */
.recovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.recovery-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.recovery-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 auto 1.25rem;
    transition: all var(--transition);
}

.recovery-item:hover .recovery-num {
    background: var(--primary);
    color: var(--white);
}

.recovery-item h3 { margin-bottom: 0.75rem; }
.recovery-item p  { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-label { margin-bottom: 0.75rem; }
.contact-info h2  { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.75; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.93rem;
    color: var(--text);
}

.contact-detail-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
}

/* --- Form wrapper --- */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

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

.form-group label {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text);
}

.required { color: #e53e3e; }

.form-group input,
.form-group textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,110,158,0.12);
    background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

.field-error {
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: 0.2rem;
}

/* --- Form status message --- */
.form-message {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #f0fff4;
    color: #276749;
    border: 1px solid #9ae6b4;
    display: block;
}

.form-message.error-msg {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
    display: block;
}

/* =====================================================================
   COMMUNITY PHOTO STRIP
   ===================================================================== */
.photo-strip {
    overflow: hidden;
}

.photo-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.photo-strip-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.photo-strip-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.photo-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,35,50,0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.photo-strip-item:hover .photo-strip-overlay {
    opacity: 1;
}

.photo-strip-overlay p {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo img {
    height: auto;
    max-width: 200px;
    border-radius: var(--radius);
    margin: 0 auto;
    display: block;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}

.footer-nav a {
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.32);
    max-width: 640px;
    line-height: 1.55;
}

/* =====================================================================
   BACK TO TOP
   ===================================================================== */
.back-to-top {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    pointer-events: none;
    z-index: 500;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg { width: 20px; height: 20px; }

/* =====================================================================
   RESPONSIVE — Tablet (≤ 900px)
   ===================================================================== */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .about-image { order: -1; }
    .about-image img { aspect-ratio: 4 / 3; max-height: 420px; object-position: top center; }
}

/* =====================================================================
   RESPONSIVE — Mobile (≤ 768px)
   ===================================================================== */
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }

    .hero-section  { min-height: 75vh; }
    .hero-content  { padding-top: 3rem; padding-bottom: 3rem; }
    .hero-actions  { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* Mobile navigation */
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        transform: translateY(-110%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav > ul > li { width: 100%; }

    .main-nav a {
        padding: 0.75rem 1rem;
        justify-content: space-between;
    }

    /* Mobile dropdown: static, toggled via JS */
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg);
        border-radius: var(--radius);
        margin-top: 0.25rem;
        opacity: 1;
        pointer-events: all;
        padding: 0.25rem 0.5rem;
        display: none;
    }

    .has-dropdown.open .dropdown { display: block; }

    .nav-cta {
        justify-content: center !important;
        margin-top: 0.5rem;
    }

    /* Contact form */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.75rem 1.25rem; }
}

/* =====================================================================
   RESPONSIVE — Small mobile (≤ 480px)
   ===================================================================== */
@media (max-width: 480px) {
    .recovery-grid { grid-template-columns: 1fr; }
    .types-grid    { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .quote-banner { padding: 3rem 0; }

    /* Stack photo strip on small screens */
    .photo-strip-grid { grid-template-columns: 1fr; }
    .photo-strip-item { aspect-ratio: 16 / 9; }
    .photo-strip-overlay { opacity: 1; }
}
