/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
    --teal: #2B9BB5;
    --teal-dark: #1E7A8F;
    --teal-light: #5DC0D4;
    --copper: #B5703C;
    --copper-light: #D4944F;
    --copper-dark: #8F5730;
    --dark-slate: #1A2332;
    --dark-slate-light: #243044;
    --off-white: #F5F0EB;
    --white: #FFFFFF;
    --text-dark: #1A2332;
    --text-medium: #5A6578;
    --text-light: #8A95A5;
    --border-light: #E5E0DA;
    --success: #2ECC71;
    --error: #E74C3C;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 100px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--copper {
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--white);
    padding: 12px 28px;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(181, 112, 60, 0.3);
}

.btn--copper:hover {
    box-shadow: 0 8px 30px rgba(181, 112, 60, 0.45);
}

.btn--teal {
    background: var(--teal);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn--teal:hover {
    background: var(--teal-dark);
}

.btn--full {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(181, 112, 60, 0.4);
}

.btn--lg {
    padding: 20px 48px;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(181, 112, 60, 0.4);
}

/* =============================================
   PILLS / BADGES
   ============================================= */
.pill {
    display: inline-block;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
}

.pill--glass {
    background: rgba(43, 155, 181, 0.15);
    border: 1px solid rgba(43, 155, 181, 0.3);
    color: var(--teal-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pill--light {
    background: rgba(43, 155, 181, 0.1);
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 18px;
}

.pill--sm {
    font-size: 0.8rem;
    padding: 6px 16px;
}

.section-badge {
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 60px;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* === LOGO SIZE & POSITION CUSTOMIZATION ===
   Desktop initial (not scrolled) logo:
   - Change --logo-initial-height to make it bigger/smaller (default: 88px = 2x of 44px)
   - Change --logo-initial-top to move it lower/higher (default: 30px)
   Scrolled logo:
   - Change .header__logo img height (default: 44px)
   =========================================== */
@media (min-width: 769px) {
    .header:not(.header--scrolled) {
        padding: 16px 0 16px;  /* CUSTOMIZE: change top/bottom padding when not scrolled */
    }
    .header:not(.header--scrolled) .header__logo {
        transform: translateY(30px);  /* CUSTOMIZE: vertical offset — increase to push logo lower */
    }
    .header:not(.header--scrolled) .header__logo img {
        height: 88px;  /* CUSTOMIZE: initial logo size (2x = 88px, 3x = 132px, etc.) */
    }
}

.header--scrolled {
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    height: 44px;
    width: auto;
    transition: height 0.3s ease;
}

.header__logo {
    transition: transform 0.3s ease;
}

.header__cta {
    font-size: 0.9rem;
    padding: 10px 24px;
}

/* === DESKTOP HEADER ACTIONS === */
.header__desktop-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* === LANGUAGE TOGGLE (FLAGS) === */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 4px;
    opacity: 0.5;
    transition: opacity 0.2s ease, background 0.2s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.lang-toggle__btn:hover {
    opacity: 0.8;
}

.lang-toggle__btn--active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

.lang-toggle__btn svg {
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* === HAMBURGER BUTTON (mobile only) === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1010;
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE MENU DRAWER === */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-menu.active {
    max-height: 300px;
}

.mobile-menu__inner {
    padding: 20px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__cta {
    text-align: center;
}

.lang-toggle--mobile {
    justify-content: center;
    gap: 12px;
}

.lang-toggle--mobile .lang-toggle__btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.lang-toggle--mobile .lang-toggle__btn--active {
    background: rgba(255, 255, 255, 0.15);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    background-color: var(--dark-slate);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__pattern {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('plumbing-pattern.svg');
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}

.hero__text {
    animation: fadeInUp 0.6s ease-out both;
}

.hero__title {
    color: var(--white);
    margin: 20px 0 16px;
}

.copper-underline {
    text-decoration: underline;
    text-decoration-color: var(--copper);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__form-wrap {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* =============================================
   FORM CARD
   ============================================= */
.form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.form-card__title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-card__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.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 d='M1 1l5 5 5-5' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-slate);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(43, 155, 181, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

#submitBtn {
    margin-top: 8px;
    cursor: pointer;
    border: none;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--off-white);
    padding: 32px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-bar__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item__value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
}

.trust-item__label {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    background: var(--white);
    padding: 100px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.08);
    transform: translateY(-4px);
}

.service-card--center {
    grid-column: 1 / -1;
    max-width: 440px;
    justify-self: center;
}

.service-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(43, 155, 181, 0.1);
}

.service-card__content h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card__content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services__cta {
    text-align: center;
    margin-top: 48px;
}

.link--teal {
    color: var(--teal);
    font-weight: 500;
    transition: color 0.2s ease;
}

.link--teal:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

/* =============================================
   IMAGE BREAK (bathroom photo)
   ============================================= */
.image-break {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-break__overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 155, 181, 0.15);
    z-index: 1;
    pointer-events: none;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
    background: var(--dark-slate);
    padding: 100px 0;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 48px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline__line {
    position: absolute;
    top: 24px;
    left: 15%;
    right: 15%;
    height: 1px;
    border-top: 1px dashed rgba(43, 155, 181, 0.4);
    z-index: 0;
}

.timeline__step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.timeline__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: rgba(43, 155, 181, 0.15);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.timeline__circle--filled {
    background: var(--teal);
    color: var(--white);
}

.timeline__title {
    color: var(--white);
    margin-bottom: 12px;
}

.timeline__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* =============================================
   STATS BENTO GRID
   ============================================= */
.stats {
    background: var(--off-white);
    padding: 100px 0;
}

.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.bento__card {
    border-radius: var(--radius-xl);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento__card--big {
    grid-row: 1 / 3;
    grid-column: 1;
}

.bento__card--teal {
    background: var(--teal);
    padding: 48px 36px;
}

.bento__card--top-right {
    grid-row: 1;
    grid-column: 2;
    background: var(--white);
    border: 1px solid var(--border-light);
}

.bento__card--mid-right {
    grid-row: 2;
    grid-column: 2;
    background: var(--white);
    border: 1px solid var(--border-light);
}

.bento__card--bottom-left {
    grid-row: 3;
    grid-column: 1;
    background: var(--dark-slate);
}

.bento__card--dark {
    color: var(--white);
}

.bento__card--bottom-right {
    grid-row: 3;
    grid-column: 2;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.bento__card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.bento__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
}

.bento__number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
}

.bento__card--teal .bento__number {
    font-size: 5rem;
}

.bento__number--teal {
    color: var(--teal);
}

.bento__number--copper {
    color: var(--copper);
}

.bento__label {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.bento__card--teal .bento__label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.bento__label--light {
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    background: var(--white);
    padding: 100px 0;
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    text-align: center;
    padding: 48px;
}

.testimonial-card__quote {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(43, 155, 181, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.testimonial-card__stars {
    font-size: 1.5rem;
    letter-spacing: 6px;
    margin-bottom: 28px;
}

.testimonial-card__slides {
    position: relative;
    min-height: 160px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border: none;
    margin: 0;
    padding: 0;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
}

.testimonial-slide p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-slide cite {
    color: var(--teal);
    font-weight: 600;
    font-size: 1rem;
    font-style: normal;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background: var(--off-white);
    padding: 100px 0;
}

.faq__list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-item.open .faq-item__question {
    color: var(--teal);
}

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__answer p {
    padding: 0 28px 24px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 80px 0;
}

.final-cta__title {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.final-cta__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark-slate);
    padding: 40px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__logo img {
    height: 36px;
    width: auto;
    opacity: 0.8;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer__sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* =============================================
   THANK YOU MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    padding: 48px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease-out;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal__title {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.modal__text {
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.6;
}

.modal__close {
    color: var(--teal);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal__close:hover {
    color: var(--teal-dark);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-slate);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner__text a {
    color: var(--teal-light);
    text-decoration: underline;
}

.cookie-banner__btn {
    flex-shrink: 0;
}

/* =============================================
   TOC (Table of Contents in Hero)
   ============================================= */
.toc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.toc__link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.toc__link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.toc__link--cta {
    background: rgba(181, 112, 60, 0.2);
    border-color: rgba(181, 112, 60, 0.4);
    color: var(--copper-light);
}

.toc__link--cta:hover {
    background: rgba(181, 112, 60, 0.35);
    border-color: var(--copper-light);
    color: var(--white);
}

/* =============================================
   FORM PRIVACY NOTE
   ============================================= */
.form-privacy-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 12px;
    line-height: 1.5;
}

/* =============================================
   EMERGENCY SECTION
   ============================================= */
.emergency {
    background: var(--dark-slate);
    padding: 100px 0;
}

.emergency__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.emergency__step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.emergency__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid var(--error);
    color: var(--error);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.emergency__step h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.emergency__step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   SERVICE AREA SECTION
   ============================================= */
.service-area {
    background: var(--off-white);
    padding: 100px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.area-card h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card ul li {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.area-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.8rem;
}

.area-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-top: 40px;
    line-height: 1.7;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE — MOBILE FIRST OVERRIDES
   ============================================= */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__desktop-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .header__logo {
        flex: 1;
    }

    .header__logo img {
        height: 36px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .emergency__steps {
        grid-template-columns: 1fr;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .service-card--center {
        max-width: 100%;
    }

    .timeline {
        flex-direction: column;
        gap: 40px;
        padding-left: 40px;
    }

    .timeline__line {
        top: 24px;
        bottom: 24px;
        left: 44px;
        right: auto;
        width: 1px;
        height: auto;
        border-top: none;
        border-left: 1px dashed rgba(43, 155, 181, 0.4);
    }

    .timeline__step {
        text-align: left;
    }

    .timeline__circle {
        margin: 0 0 12px;
        position: absolute;
        left: -40px;
    }

    .timeline__step {
        position: relative;
        padding-left: 0;
    }

    .timeline__desc {
        max-width: 100%;
        margin: 0;
    }

    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento__card--big {
        grid-row: auto;
        grid-column: auto;
    }

    .bento__card--top-right,
    .bento__card--mid-right,
    .bento__card--bottom-left,
    .bento__card--bottom-right {
        grid-row: auto;
        grid-column: auto;
    }

    .bento__card--bottom-right {
        min-height: 250px;
        aspect-ratio: 4/3;
    }

    .testimonial-card {
        padding: 32px 16px;
    }

    .testimonial-slide p {
        font-size: 1.1rem;
    }

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

    .form-card {
        padding: 28px 24px;
    }

    .trust-bar__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-break {
        height: 250px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__badges {
        flex-direction: column;
        gap: 8px;
    }

    .hero__badges .pill {
        text-align: center;
    }

    .trust-bar__inner {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}
