/*
Theme Name: Flavor HVAC
Theme URI: https://mvpromechanical.ca
Author: MV Pro Mechanical Inc.
Description: Premium custom theme for MV Pro Mechanical — Calgary Plumbing, Heating & Gas Fitting
Version: 2.0.0
Text Domain: flavor-hvac
*/

/* ===================================================================
   DESIGN SYSTEM — Friendly Service
   Calm. Trustworthy. Warm HVAC accents.
   =================================================================== */
:root {
    --black:       #1f2a36;
    --soot:        #2d3a46;
    --charcoal:    #f5f8fa;
    --graphite:    #dce7ef;
    --iron:        #c6d6e1;
    --steel:       #6b7888;
    --chrome:      #46586b;
    --silver:      #2f3e4e;
    --white:       #f7fafc;
    --pure-white:  #ffffff;
    --primary:     #2f6f8f;
    --primary-dark:#245a75;
    --primary-soft:#eff7fb;
    --primary-rgb: 47,111,143;
    --primary-glow:rgba(var(--primary-rgb),0.10);
    --amber:       #d69b5c;
    --amber-soft:  #fff7ed;
    --amber-rgb:   214,155,92;
    --emergency:   #a95447;
    --emergency-dark: #884238;
    --emergency-rgb: 169,84,71;
    --emergency-glow: rgba(var(--emergency-rgb),0.10);
    --gold-star:   #d6a23d;
    --success:     #2f7d5d;
    --success-rgb: 47,125,93;
    --success-soft: rgba(var(--success-rgb),0.12);
    --success-border: rgba(var(--success-rgb),0.24);
    --success-text:#226143;
    --off-white:   #f8fafc;
    --warm-gray:   #dbe5ee;
    --body-text:   #334155;
    --muted:       #64748b;

    /* Backward-compatible aliases used throughout the existing theme. */
    --red:         var(--primary);
    --red-dark:    var(--primary-dark);
    --red-glow:    var(--primary-glow);
    --red-ember:   rgba(var(--primary-rgb),0.05);
    --navy:        var(--black);
    --ice:         var(--primary);
    --ice-glow-strong: var(--primary-soft);
    --amber-glow:  var(--amber-soft);

    --font-head:   'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body:   'Barlow', 'Helvetica Neue', Arial, sans-serif;
    --font-display: var(--font-head);

    --cut:         4px;        /* clipped corner size */
    --radius:      8px;
    --speed:       0.25s;
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================================
   RESET & BASE
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-text);
    background: var(--off-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--speed); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p + p { margin-top: 1rem; }

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute; height: 1px; width: 1px;
    overflow: hidden; white-space: nowrap;
}

/* Noise grain overlay — applied to dark sections */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
}

/* ===================================================================
   LAYOUT
   =================================================================== */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 6rem 0; position: relative; }
.section--dark,
.section--charcoal,
.section--slate {
    background: var(--primary-soft);
    color: var(--body-text);
}
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4,
.section--slate h2,
.section--slate h3,
.section--slate h4 { color: var(--black); }
.section--dark .section-header p,
.section--charcoal .section-header p,
.section--slate .section-header p { color: var(--muted); }
.section--gray {
    background: var(--off-white);
    color: #3a4555;
}
.section--gray h2,
.section--gray h3,
.section--gray h4 { color: var(--black); }
.section--light {
    background: var(--pure-white);
    color: #3a4555;
}
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--black); }
.section--light .section-header p { color: #6b7a8d; }
.section--light .service-card {
    background: var(--off-white);
    border-color: var(--warm-gray);
}
.section--light .service-card h3 { color: var(--black); }
.section--light .service-card p { color: #5a6a7d; }
.section--light .service-card:hover {
    background: var(--pure-white);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header p {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--muted);
}
.section--gray .section-header p { color: #666; }

/* Overline — compact trust label */
.overline {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding-left: 2.2rem;
    position: relative;
}
.overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.6rem;
    height: 2px;
    background: var(--primary);
}

/* Soft bottom accent line */
.ember-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--primary) 30%, var(--amber) 70%, transparent 95%);
    opacity: 0.5;
}
.ember-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(ellipse at bottom, rgba(var(--primary-rgb),0.07), transparent);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    text-decoration: none;
    line-height: 1.2;
    clip-path: polygon(var(--cut) 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
}
.btn--primary {
    background: var(--primary);
    color: var(--pure-white);
}
.btn--primary:hover {
    background: var(--primary-dark);
    color: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb),0.20);
}
.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--warm-gray);
    clip-path: none;
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: var(--primary-soft);
}
.btn--ice {
    background: var(--primary);
    color: var(--pure-white);
}
.btn--ice:hover {
    background: var(--primary-dark);
    color: var(--pure-white);
}
.btn--ghost {
    background: transparent;
    color: var(--primary);
    padding: 0.85rem 1.2rem;
    clip-path: none;
}
.btn--ghost:hover { background: var(--primary-glow); }
.btn--lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn svg {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}
.btn i { font-size: 1.1em; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--primary-rgb),0.10);
    transition: all var(--speed);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 30px rgba(15,35,55,0.08);
}

.header-top {
    background: var(--primary-soft);
    border-bottom: 1px solid rgba(var(--primary-rgb),0.10);
    padding: 0.35rem 0;
    font-size: 0.75rem;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-top a, .header-top span {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.header-top svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.header-top a:hover { color: var(--primary-dark); }
.header-rating { display: inline-flex; align-items: center; gap: 0.35rem; }
.header-rating strong { color: var(--black); }
.emergency-badge {
    background: var(--emergency);
    color: var(--pure-white);
    padding: 0.15rem 0.7rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    clip-path: polygon(var(--cut) 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
}
.header-top .emergency-badge {
    background: var(--emergency);
    color: var(--pure-white);
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.header-main { padding: 0.7rem 0; }
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo — hexagonal / industrial badge feel */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo-image {
    display: block;
    width: auto;
    height: 58px;
    padding: 3px;
    border: 1px solid rgba(var(--primary-rgb),0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pure-white), var(--primary-soft));
    box-shadow: 0 8px 22px rgba(15,35,55,0.08);
    filter: saturate(0.96) contrast(0.96);
    object-fit: contain;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.logo-icon svg { width: 20px; height: 20px; fill: var(--pure-white); }
.logo-text { font-family: var(--font-head); line-height: 1.05; }
.logo-text .brand-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.logo-text .brand-tagline {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; list-style: none; gap: 0; }
.main-nav li { position: relative; }
.main-nav a {
    display: block;
    padding: 0.72rem 0.86rem;
    color: var(--chrome);
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--speed);
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--primary); }
.main-nav .sub-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 270px;
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    box-shadow: 0 20px 60px rgba(15,35,55,0.12);
    padding: 0.5rem;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all var(--speed);
}
.main-nav li:hover > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .sub-menu a {
    padding: 0.68rem 0.85rem;
    font-size: 0.88rem;
}
.main-nav .sub-menu a:hover { background: var(--primary-soft); color: var(--primary); }
.services-mega-menu a strong,
.services-mega-menu a span {
    display: block;
}
.services-mega-menu a strong {
    color: var(--black);
    font-size: 0.94rem;
    line-height: 1.1;
}
.services-mega-menu a span {
    margin-top: 0.18rem;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}
.services-mega-menu a:hover strong { color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--primary-dark); }
.header-phone svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none;
    cursor: pointer; padding: 4px;
}
.menu-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--black);
    transition: all var(--speed);
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(234,246,255,0.98) 0%, rgba(255,255,255,0.96) 52%, rgba(255,244,230,0.72) 100%);
    overflow: hidden;
    padding-top: 7rem;
}
/* Background: subtle diagonal hash pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(var(--primary-rgb),0.04) 40px,
            rgba(var(--primary-rgb),0.04) 41px
        );
    pointer-events: none;
}
/* Bottom warmth glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 300px;
    background: linear-gradient(to top, rgba(var(--amber-rgb),0.14), transparent);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb),0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb),0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 50% 60% at 70% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 50% 60% at 70% 40%, black, transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { max-width: 640px; }
.hero-content .overline { color: var(--primary); margin-bottom: 1rem; }
.hero-content .overline::before { background: var(--primary); }
.hero-content h1 {
    color: var(--black);
    margin-bottom: 1.2rem;
    font-weight: 800;
}
.hero-content h1 .highlight { color: var(--primary); }
.hero-content p {
    font-size: 1.1rem;
    color: var(--chrome);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(var(--primary-rgb),0.12);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--amber); fill: var(--amber); flex-shrink: 0; }
.hero-trust-item span { font-size: 0.82rem; color: var(--muted); }
.hero-trust-item strong { color: var(--black); }

/* Quote form card */
.hero-form-card {
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15,35,55,0.12);
}
/* Blue top accent stripe */
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--amber));
}
.hero-form-card h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.hero-form-card > p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* ===================================================================
   FORMS
   =================================================================== */
.form-group { margin-bottom: 0.9rem; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.3rem;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--off-white);
    border: 1px solid var(--warm-gray);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all var(--speed);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #8a97a8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: var(--pure-white);
}
.form-group select option { background: var(--pure-white); color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-notice {
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    border: 1px solid;
}
.form-notice--success {
    background: var(--success-soft);
    border-color: var(--success-border);
    color: var(--success-text);
}
.form-notice--error {
    background: var(--emergency-glow);
    border-color: rgba(var(--emergency-rgb),0.24);
    color: var(--emergency);
}

.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
    background: var(--pure-white);
    border: 1px solid #ddd;
    color: var(--black);
}
.form-light .form-group label { color: #666; }
.form-light .form-group input:focus,
.form-light .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ===================================================================
   STATS BAR
   =================================================================== */
.stats-bar {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    margin-bottom: -3rem;
}
.stats-bar .container {
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    box-shadow: 0 18px 45px rgba(15,35,55,0.10);
}
/* Blue top line */
.stats-bar .container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--amber));
}
.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 25%; height: 50%;
    width: 1px;
    background: var(--warm-gray);
}
.stat-number {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-number .accent { color: var(--primary); }
.stat-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================================================
   SERVICE CARDS
   =================================================================== */
.service-card {
    position: relative;
    background: var(--pure-white);
    padding: 2rem 1.8rem;
    border: 1px solid var(--warm-gray);
    transition: all var(--speed) var(--ease);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15,35,55,0.05);
}
/* Left blue accent stripe */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity var(--speed);
}
.service-card:hover {
    border-color: rgba(var(--primary-rgb),0.20);
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(15,35,55,0.10);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all var(--speed);
}
.service-card:hover .service-card-icon {
    background: var(--primary);
    color: var(--pure-white);
}
.service-card-icon svg {
    width: 22px; height: 22px;
    fill: var(--primary);
    transition: fill var(--speed);
}
.service-card:hover .service-card-icon svg { fill: var(--pure-white); }

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--black);
}
.service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.service-list {
    display: grid;
    gap: 0.42rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.service-list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.82rem;
    color: var(--chrome);
    line-height: 1.35;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 5px;
    height: 5px;
    background: var(--amber);
    transform: rotate(45deg);
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    transition: gap var(--speed);
}
.service-card:hover .service-card-link { gap: 0.7rem; }

.section--dark .service-card { background: var(--pure-white); }
.section--dark .service-card:hover { background: var(--pure-white); }

/* ===================================================================
   GUARANTEE STRIP
   =================================================================== */
.guarantee-strip {
    background: var(--primary-soft);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(var(--primary-rgb),0.09);
    border-bottom: 1px solid rgba(var(--primary-rgb),0.09);
    position: relative;
}
.guarantee-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.guarantee-item {
    text-align: center;
    padding: 1rem;
}
.guarantee-item-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.8rem;
    background: var(--pure-white);
    border: 1px solid rgba(var(--primary-rgb),0.11);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.guarantee-item-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.guarantee-item h4 {
    color: var(--black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}
.guarantee-item p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-features { display: grid; gap: 1.5rem; }
.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.why-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.why-feature-icon svg { width: 20px; height: 20px; fill: var(--primary); }
.why-feature-icon--amber { background: var(--amber-soft); }
.why-feature-icon--amber { color: var(--amber); }
.why-feature-icon--amber svg { fill: var(--amber); }
.why-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}
.why-feature p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.55;
}

.why-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    box-shadow: 0 18px 45px rgba(15,35,55,0.08);
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--off-white);
    padding: 2rem;
    border: 1px solid var(--warm-gray);
    position: relative;
    transition: all var(--speed);
}
.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold-star); }
.testimonial-card blockquote {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.testimonial-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.testimonial-source {
    font-size: 0.72rem;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--warm-gray);
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: var(--pure-white);
    transition: all var(--speed);
}
.faq-item:hover { border-color: var(--primary); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.3rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--speed);
}
.faq-icon svg { width: 12px; height: 12px; fill: var(--primary); transition: transform var(--speed); }
.faq-item.active .faq-icon { background: var(--primary); }
.faq-item.active .faq-icon { color: var(--pure-white); }
.faq-item.active .faq-icon svg { fill: var(--pure-white); transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
    padding: 0 1.3rem 1.2rem;
    font-size: 0.9rem;
    color: #5a6577;
    line-height: 1.7;
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
    background: var(--primary-soft);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(var(--primary-rgb),0.09);
}
/* Bottom accent glow */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--amber));
    opacity: 0.4;
    box-shadow: 0 0 30px rgba(var(--primary-rgb),0.13);
}
.cta-section h2 { color: var(--black); margin-bottom: 1rem; }
.cta-section p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--black);
    color: #cbd5e1;
    border-top: 2px solid var(--primary);
}
.footer-main { padding: 4rem 0 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .site-logo-image { height: 82px; }
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 280px;
    color: #cbd5e1;
}
.site-footer .logo-text .brand-name { color: var(--pure-white); }
.site-footer .logo-text .brand-tagline { color: #93a4b8; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--speed);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { width: 14px; height: 14px; fill: #cbd5e1; }
.footer-social a:hover svg { fill: var(--pure-white); }

.site-footer h4 {
    color: var(--pure-white);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
    font-size: 0.83rem;
    color: #cbd5e1;
    transition: color var(--speed);
}
.footer-links a:hover { color: var(--primary-soft); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    font-size: 0.83rem;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--amber); fill: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: #cbd5e1; }
.footer-contact-item a:hover { color: var(--primary-soft); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.2rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: #93a4b8;
}
.footer-bottom a { color: #93a4b8; }
.footer-bottom a:hover { color: var(--primary-soft); }

/* ===================================================================
   PAGE HERO (inner pages)
   =================================================================== */
.page-hero {
    background:
        linear-gradient(135deg, var(--primary-soft) 0%, var(--pure-white) 62%, var(--amber-soft) 100%);
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent, transparent 40px,
            rgba(var(--primary-rgb),0.04) 40px,
            rgba(var(--primary-rgb),0.04) 41px
        );
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, var(--primary) 40%, var(--amber) 60%, transparent 90%);
    opacity: 0.4;
}
.page-hero h1 { color: var(--black); margin-bottom: 0.75rem; position: relative; }
.page-hero p {
    color: var(--chrome);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}
.page-hero .overline { position: relative; }

/* ===================================================================
   CONTENT (inner pages)
   =================================================================== */
.page-content { padding: 5rem 0; background: var(--off-white); color: #3a3a3a; }
.page-content h2 { margin-bottom: 1rem; margin-top: 2.5rem; color: var(--black); }
.page-content h2:first-child { margin-top: 0; }
.page-content p { margin-bottom: 1rem; }
.page-content ul, .page-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.4rem; }

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
   SERVICE PAGE LAYOUT
   =================================================================== */
.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
.service-page-content {
    font-size: 1rem;
    line-height: 1.8;
}
.service-page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--black);
}
.service-page-content h2:first-child { margin-top: 0; }
.service-page-content h3 { margin-top: 2rem; margin-bottom: 0.5rem; color: var(--black); }
.service-page-content p { margin-bottom: 1rem; }
.service-page-content ul, .service-page-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.service-page-content li { margin-bottom: 0.4rem; }

.service-sidebar {
    position: sticky;
    top: 7rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sidebar-card {
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    padding: 1.8rem;
    box-shadow: 0 10px 28px rgba(15,35,55,0.05);
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--black); }
.sidebar-card h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--black); }
.sidebar-card > p { font-size: 0.86rem; color: #666; margin-bottom: 1.2rem; }
.sidebar-card--dark {
    background: var(--primary-soft);
    border-color: rgba(var(--primary-rgb),0.12);
}
.sidebar-card--dark h4 { color: var(--black); }
.sidebar-card--dark p { color: var(--muted); }
.sidebar-emergency { text-align: center; }
.sidebar-emergency .emergency-badge { margin-bottom: 0.75rem; display: inline-block; }
.sidebar-emergency h4 { margin-bottom: 0.4rem; }
.sidebar-emergency p { margin-bottom: 1rem; }

.sidebar-checklist { list-style: none; padding: 0; }
.sidebar-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.86rem;
    color: #444;
    border-bottom: 1px solid #eee;
}
.sidebar-checklist li:last-child { border-bottom: none; }
.sidebar-checklist li svg { width: 16px; height: 16px; stroke: var(--primary); flex-shrink: 0; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
}
.process-step-number {
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--pure-white);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    transition: all var(--speed);
    box-shadow: 0 12px 32px rgba(15,35,55,0.06);
}
.value-card:hover {
    border-color: rgba(var(--primary-rgb),0.20);
    transform: translateY(-3px);
}
.value-card-icon {
    width: 52px; height: 52px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.value-card-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-story-text h2 { margin-bottom: 1rem; }
.about-story-text p { color: var(--muted); margin-bottom: 1rem; }

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.cert-item {
    padding: 1.5rem;
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
}
.cert-item svg { width: 32px; height: 32px; stroke: var(--primary); fill: none; margin-bottom: 0.75rem; }
.cert-item h4 { color: var(--black); font-size: 0.85rem; margin-bottom: 0.3rem; text-transform: uppercase; }
.cert-item p { font-size: 0.76rem; color: var(--muted); }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info-cards { display: grid; gap: 1rem; margin-bottom: 2rem; }
.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    align-items: flex-start;
    box-shadow: 0 10px 28px rgba(15,35,55,0.05);
}
.contact-info-card-icon {
    width: 40px; height: 40px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.contact-info-card-icon svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; }
.contact-info-card h4 { font-size: 0.88rem; margin-bottom: 0.1rem; text-transform: uppercase; }
.contact-info-card p { font-size: 0.83rem; color: var(--muted); }
.contact-info-card a { color: var(--primary); font-weight: 600; }

.contact-form-card {
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 18px 45px rgba(15,35,55,0.08);
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--amber));
}
.contact-form-card h3 { margin-bottom: 0.4rem; }
.contact-form-card > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
}
.area-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    color: var(--chrome);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.area-badge svg { width: 14px; height: 14px; stroke: var(--primary); fill: none; }

/* ===================================================================
   BRANDS
   =================================================================== */
.brands-strip {
    padding: 3rem 0;
    background: var(--off-white);
    border-top: 1px solid var(--warm-gray);
    border-bottom: 1px solid var(--warm-gray);
}
.brands-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}
.brand-logo { height: 36px; opacity: 0.3; filter: grayscale(1) brightness(2); transition: all var(--speed); }
.brand-logo:hover { opacity: 0.7; filter: grayscale(0) brightness(1); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 520px; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .guarantee-strip .container { grid-template-columns: repeat(2, 1fr); }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .service-page-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .about-story { grid-template-columns: 1fr; }
    .certifications-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .site-logo-image { height: 54px; }
    .main-nav { display: none; }
    .main-nav.active {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--pure-white);
        border-top: 1px solid var(--warm-gray);
        padding: 1rem;
        box-shadow: 0 20px 60px rgba(15,35,55,0.12);
    }
    .main-nav.active ul { flex-direction: column; width: 100%; }
    .main-nav.active a { padding: 0.8rem 1rem; }
    .main-nav.active a:hover { background: var(--primary-soft); }
    .main-nav .sub-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none; background: transparent;
        border: none; box-shadow: none;
        padding: 0 0 0 1rem;
    }
    .menu-toggle { display: flex; }
    .header-phone span { display: none; }

    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .hero-buttons { flex-direction: column; }
    .hero-trust { gap: 1.5rem; }
    .section { padding: 4rem 0; }

    .grid--2, .grid--3 { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .stats-bar .container { grid-template-columns: 1fr 1fr; }
    .stat-item + .stat-item::before { display: none; }
    .guarantee-strip .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ===================================================================
   BLOG CARDS
   =================================================================== */
.blog-card {
    background: var(--pure-white);
    border: 1px solid var(--warm-gray);
    overflow: hidden;
    transition: all var(--speed);
}
.blog-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.blog-card-image { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-date {
    font-family: var(--font-head);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
}
.blog-card-body h3 {
    font-size: 1.05rem;
    margin: 0.4rem 0 0.5rem;
    color: var(--black);
}
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p {
    font-size: 0.88rem;
    color: #5a6a7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===================================================================
   CONTACT FLOAT — multi-option widget
   =================================================================== */
.contact-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}
.contact-float-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--pure-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb),0.22);
    transition: all var(--speed);
}
.contact-float-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(var(--primary-rgb),0.28);
}
.contact-float-toggle svg { width: 26px; height: 26px; }
.contact-float-toggle .icon-close { display: none; }
.contact-float.open .contact-float-toggle .icon-open { display: none; }
.contact-float.open .contact-float-toggle .icon-close { display: block; }
.contact-float.open .contact-float-toggle { background: var(--black); }

/* Options panel */
.contact-float-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s var(--ease);
    pointer-events: none;
}
.contact-float.open .contact-float-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-float-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.1rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pure-white);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(15,35,55,0.14);
    transition: all var(--speed);
}
.contact-float-option:hover {
    transform: translateX(-4px);
    color: var(--pure-white);
}
.contact-float-option svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-float-sms { background: var(--primary); }
.contact-float-sms:hover { box-shadow: 0 6px 25px rgba(var(--primary-rgb),0.26); }
.contact-float-wa { background: var(--success); }
.contact-float-wa:hover { box-shadow: 0 6px 25px rgba(var(--success-rgb),0.26); }
.contact-float-email { background: var(--silver); border: 1px solid rgba(255,255,255,0.1); }
.contact-float-email:hover { box-shadow: 0 6px 25px rgba(15,35,55,0.24); }

@media (max-width: 480px) {
    h1 { font-size: clamp(2.1rem, 11vw, 2.55rem); }
    .header-cta .btn { display: none; }
    .hero-content h1 {
        font-size: clamp(2.1rem, 11vw, 2.55rem);
        overflow-wrap: break-word;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-form-card { padding: 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }
    .service-card { padding: 1.5rem; }
}
