/* ═══════════════════════════════════════════════
   Your Personal Plumber Can! — Artisan Craftsman
   Premium warmth with layered depth and texture.
   ═══════════════════════════════════════════════ */

/* Fonts loaded via <link> tags in HTML for render performance */

:root {
    /* ── Primary: Evergreen (aged copper patina) ── */
    --evergreen: #1A3C34;
    --evergreen-mid: #245549;
    --evergreen-light: #2D6B5A;
    --evergreen-pale: #E8F0ED;

    /* ── Accent: Copper (brass fittings, warm metallic) ── */
    --copper: #C27B3E;
    --copper-dark: #A66832;
    --copper-light: #D4944F;
    --copper-glow: rgba(194, 123, 62, 0.3);
    --copper-pale: #FDF3E8;

    /* ── Neutrals: Stone & Wood ── */
    --stone: #F7F3EE;
    --stone-dark: #EDE5DB;
    --bark: #33261C;
    --driftwood: #7A6E62;
    --white: #FFFFFF;
    --walnut: #1C1210;

    /* ── Shadows ── */
    --shadow-sm: 0 2px 8px rgba(26, 60, 52, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 60, 52, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 60, 52, 0.12);
    --shadow-copper: 0 8px 30px rgba(194, 123, 62, 0.2);
}

/* ── General ── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Figtree', 'Segoe UI', system-ui, sans-serif;
    color: var(--driftwood);
    background-color: var(--white);
    font-weight: 400;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand {
    font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    color: var(--bark);
    line-height: 1.15;
}

a {
    color: var(--copper);
    transition: color 0.25s ease;
}

a:hover {
    color: var(--copper-dark);
}

section {
    position: relative;
}

/* Decorative label used above section headings */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--copper);
    background: var(--copper-pale);
    border: 1px solid rgba(194, 123, 62, 0.2);
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--driftwood);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   TOP UTILITY BAR
   ══════════════════════════════════════════════ */
.top-bar {
    background-color: var(--walnut);
    padding: 0.5rem 0;
    font-size: 0.82rem;
    border-bottom: 2px solid var(--copper);
    position: relative;
    z-index: 1040;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--copper-light);
}

.top-bar .emergency-badge {
    background: linear-gradient(135deg, #D32F2F, #F44336);
    color: var(--white);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
    background-color: var(--evergreen) !important;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-scrolled {
    background-color: rgba(26, 60, 52, 0.97) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    border-bottom-color: transparent;
}

.navbar-brand {
    font-size: 1.15rem;
    color: var(--white) !important;
    letter-spacing: -0.01em;
}

.navbar-brand i {
    color: var(--copper);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--copper);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white) !important;
}

.navbar .btn-cta {
    background-color: var(--copper);
    border-color: var(--copper);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.navbar .btn-cta:hover {
    background-color: var(--copper-light);
    border-color: var(--copper-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-copper);
}

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(155deg, #0A1612 0%, var(--evergreen) 30%, var(--evergreen-mid) 65%, var(--evergreen-light) 100%);
    position: relative;
    padding-top: 130px;
    padding-bottom: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(194, 123, 62, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 107, 90, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Decorative floating elements */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-decor .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: var(--copper);
}

.hero-decor .shape-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-slow 20s ease-in-out infinite;
}

.hero-decor .shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -80px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float-slow 15s ease-in-out infinite reverse;
}

.hero-decor .shape-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 15%;
    border: 2px solid rgba(194, 123, 62, 0.08);
    background: none;
    animation: float-slow 12s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -20px) rotate(3deg); }
    66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

/* Pipe pattern decorative grid */
.hero-pipe-pattern {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    opacity: 0.03;
    background-image:
        linear-gradient(0deg, rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
}

.hero-section h1 {
    color: var(--white);
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-section h1 .text-accent {
    color: var(--copper);
    display: inline-block;
    position: relative;
}

.hero-section h1 .text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--copper);
    border-radius: 4px;
    opacity: 0.4;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-trust-badge i {
    color: var(--copper);
    font-size: 1rem;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    border: none;
    color: var(--white);
    border-radius: 12px;
    padding: 1rem 2.8rem;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--copper-glow);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-primary:hover::before {
    transform: translateX(100%);
}

.btn-hero-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(194, 123, 62, 0.45);
}

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    border-radius: 12px;
    padding: 1rem 2.8rem;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    background: rgba(255,255,255,0.04);
}

.btn-hero-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
    background-color: var(--stone);
    padding: 4rem 0;
    border-bottom: 1px solid var(--stone-dark);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--stone-dark);
}

.stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3.2rem;
    color: var(--evergreen);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--driftwood);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
#services {
    padding: 7rem 0;
    background-color: var(--white);
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--stone-dark);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
}

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-light));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 60, 52, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    box-shadow: var(--shadow-copper);
    transform: scale(1.08);
}

.service-card .card-title {
    color: var(--bark);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
}

.service-card .card-text {
    color: var(--driftwood);
    font-size: 0.93rem;
    line-height: 1.75;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════ */
#why-us {
    background: linear-gradient(160deg, #0A1612 0%, var(--evergreen) 50%, var(--evergreen-mid) 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Angled top edge */
#why-us .section-angle {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

#why-us h2 {
    color: var(--white);
}

#why-us .section-label {
    background: rgba(194, 123, 62, 0.15);
    border-color: rgba(194, 123, 62, 0.3);
    color: var(--copper-light);
}

#why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.trust-item {
    padding: 2rem 1.2rem;
    border-radius: 18px;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.4rem;
    box-shadow: 0 8px 25px var(--copper-glow);
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.08) rotate(-3deg);
}

#why-us .trust-item h5 {
    color: var(--white);
    font-size: 1.08rem;
}

#why-us .trust-item p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-banner h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-banner .btn {
    background-color: var(--white);
    border: none;
    color: var(--copper-dark);
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.cta-banner .btn:hover {
    background-color: var(--walnut);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
#about {
    background-color: var(--stone);
    padding: 7rem 0;
    position: relative;
}

/* Decorative diagonal background stripe */
#about::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -5%;
    width: 110%;
    height: 120px;
    background: var(--stone);
    transform: rotate(-1.5deg);
    transform-origin: center;
    z-index: 0;
}

.about-photo-wrapper {
    position: relative;
    display: inline-block;
}

.about-photo-placeholder {
    width: 300px;
    height: 340px;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--stone-dark), var(--white));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--copper);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Decorative frame behind photo */
.about-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid var(--evergreen-light);
    border-radius: 24px;
    opacity: 0.2;
    z-index: 0;
}

.about-photo-placeholder i {
    font-size: 5.5rem;
    color: var(--evergreen-light);
}

.about-experience-badge {
    position: absolute;
    bottom: -16px;
    right: -20px;
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    box-shadow: var(--shadow-copper);
    z-index: 2;
    text-align: center;
    line-height: 1.1;
}

.about-experience-badge .badge-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.8rem;
    display: block;
}

.about-experience-badge .badge-text {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.9;
}

#about h2 {
    color: var(--bark);
    position: relative;
    z-index: 1;
}

#about p {
    color: var(--driftwood);
    line-height: 1.85;
    font-size: 1.02rem;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
#testimonials {
    padding: 7rem 0;
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--stone);
    border: none;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.testimonial-card .card-body {
    padding: 2.5rem 2rem 2rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar.avatar-green {
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-light));
}

.testimonial-avatar.avatar-copper {
    background: linear-gradient(135deg, var(--copper), var(--copper-light));
}

.testimonial-avatar.avatar-bark {
    background: linear-gradient(135deg, var(--bark), var(--driftwood));
}

.testimonial-stars {
    color: var(--copper) !important;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-card .card-text {
    color: var(--bark);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--copper);
    opacity: 0.08;
    position: absolute;
    top: 6px;
    right: 20px;
    pointer-events: none;
}

.testimonial-author {
    font-weight: 700;
    color: var(--bark);
    font-size: 0.95rem;
}

.testimonial-location {
    color: var(--driftwood);
    font-size: 0.82rem;
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
#faq {
    padding: 7rem 0;
    background-color: var(--white);
}

#faq .accordion-item {
    border: 1px solid var(--stone-dark);
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}

#faq .accordion-button {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--bark);
    background: var(--white);
    padding: 1.2rem 1.5rem;
    box-shadow: none;
}

#faq .accordion-button:not(.collapsed) {
    color: var(--evergreen);
    background: var(--evergreen-pale);
    box-shadow: none;
}

#faq .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C27B3E' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

#faq .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

#faq .accordion-body {
    padding: 0 1.5rem 1.3rem;
    color: var(--driftwood);
    line-height: 1.8;
    font-size: 0.95rem;
}

#faq .accordion-body a {
    color: var(--evergreen);
    font-weight: 600;
}

#faq .accordion-body a:hover {
    color: var(--copper);
}

/* ══════════════════════════════════════════════
   CONTACT / GET A QUOTE
   ══════════════════════════════════════════════ */
#contact {
    padding: 7rem 0;
    background-color: var(--stone);
    position: relative;
}

#contact .card {
    background-color: var(--white);
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-md);
}

#contact .form-control,
#contact .form-select {
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1.5px solid var(--stone-dark);
    background-color: var(--stone);
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

#contact .form-control:focus,
#contact .form-select:focus {
    border-color: var(--evergreen);
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
    background-color: var(--white);
}

#contact .form-label {
    font-weight: 600;
    color: var(--bark);
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

#contact .btn-submit {
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-light));
    border: none;
    color: var(--white);
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.02rem;
    transition: all 0.35s ease;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

#contact .btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper-dark), var(--copper));
    opacity: 0;
    transition: opacity 0.35s ease;
}

#contact .btn-submit:hover::before {
    opacity: 1;
}

#contact .btn-submit span,
#contact .btn-submit i {
    position: relative;
    z-index: 1;
}

#contact .btn-submit:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-copper);
}

.contact-info-card {
    background: linear-gradient(160deg, var(--evergreen), var(--evergreen-mid));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-info-card h5 {
    color: var(--white);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card h5 i {
    color: var(--copper-light);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.contact-info-card a {
    color: var(--copper-light);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--white);
}

.contact-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
    background-color: var(--walnut);
    padding: 5rem 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--copper-dark), var(--copper), var(--copper-light), var(--copper), var(--copper-dark));
}

footer h5 {
    color: var(--white);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
}

footer p, footer small, footer a {
    color: rgba(255, 255, 255, 0.5);
}

footer a {
    text-decoration: none;
    transition: color 0.25s ease;
}

footer a:hover {
    color: var(--copper-light) !important;
}

footer li {
    margin-bottom: 0.6rem;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 3rem 0 1.5rem;
}

footer .footer-brand {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

footer .footer-brand i {
    color: var(--copper);
}

/* ══════════════════════════════════════════════
   SPINNER / UTILITY
   ══════════════════════════════════════════════ */
.btn .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.15rem;
}

.z-1 {
    z-index: 1;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .top-bar .d-flex {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    .hero-section {
        min-height: 85vh;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .lead {
        font-size: 1.05rem;
    }

    .hero-trust-badges {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .cta-banner h3 {
        font-size: 1.8rem;
    }

    #services, #why-us, #about, #testimonials, #faq, #contact {
        padding: 5rem 0;
    }

    #why-us .section-angle {
        height: 50px;
    }

    .contact-info-card {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        font-size: 0.78rem;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 110px;
        padding-bottom: 100px;
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-trust-badges {
        gap: 0.8rem;
    }

    .hero-trust-badge {
        font-size: 0.78rem;
    }

    .navbar-brand {
        font-size: 0.92rem;
    }

    .about-photo-placeholder {
        width: 220px;
        height: 260px;
        border-radius: 18px;
    }

    .about-photo-placeholder i {
        font-size: 4rem;
    }

    .about-experience-badge {
        right: -10px;
        bottom: -12px;
    }

    .stat-number {
        font-size: 2.1rem;
    }

    .testimonial-card .card-body {
        padding: 2rem 1.5rem 1.5rem;
    }

    .testimonial-quote {
        font-size: 4rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.85rem 2rem;
        font-size: 0.98rem;
        width: 100%;
    }

    #services, #why-us, #about, #testimonials, #contact {
        padding: 4rem 0;
    }
}
