/* ============================================
   G&L APPLIANCE REPAIR — STYLESHEET
   Fonts: Manrope (body) + Playfair Display (headings)
   Colors: Charcoal navy + warm orange accent
   ============================================ */

:root {
    --navy:      #0d1f3c;
    --navy-mid:  #162d54;
    --navy-soft: #1e3a6e;
    --orange:    #e05a1e;
    --orange-dk: #bf4a14;
    --orange-lt: #f37840;
    --cream:     #faf8f5;
    --gray-100:  #f1f1ef;
    --gray-200:  #e2e2de;
    --gray-400:  #9a9a94;
    --gray-600:  #5a5a56;
    --dark:      #181812;
    --white:     #ffffff;
    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  32px;
    --tr: 0.25s ease;
    --shadow-s: 0 2px 10px rgba(13,31,60,.08);
    --shadow-m: 0 6px 28px rgba(13,31,60,.13);
    --shadow-l: 0 12px 48px rgba(13,31,60,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- Buttons ---- */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
    box-shadow: 0 4px 18px rgba(224,90,30,.3);
    white-space: nowrap;
}
.btn-main:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224,90,30,.38);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.55);
    transition: all var(--tr);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

/* ---- Section Labels & Headings ---- */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--orange);
    background: rgba(224,90,30,.1);
    border: 1px solid rgba(224,90,30,.22);
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-label--light {
    color: #ffc4a0;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
}

.section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: 18px;
}
.section-h2--light { color: var(--white); }
.section-h2 em { font-style: italic; color: var(--orange); }

.section-top { margin-bottom: 56px; }
.section-top--center { text-align: center; }

/* ============================================
   ANNOUNCE BAR
   ============================================ */
.announce-bar {
    background: var(--navy);
    color: rgba(255,255,255,.82);
    font-size: 0.83rem;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
}
.announce-bar .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.announce-bar i { color: var(--orange-lt); }
.announce-bar a {
    color: #ffcaaa;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: var(--shadow-m); border-color: transparent; }

.hdr-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.hdr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hdr-logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    padding: 0;
    margin: 0;
    background: #ffffff;
    mix-blend-mode: multiply;
}
.hdr-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-style: italic;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
    border-left: 2px solid var(--gray-200);
    padding-left: 12px;
    line-height: 1.3;
}

.hdr-nav {
    display: flex;
    gap: 4px;
}
.hdr-nav a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-600);
    padding: 8px 12px;
    border-radius: var(--r-sm);
    transition: color var(--tr), background var(--tr);
}
.hdr-nav a:hover, .hdr-nav a.active {
    color: var(--navy);
    background: var(--gray-100);
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hdr-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--navy);
    transition: color var(--tr);
}
.hdr-phone i { color: var(--orange); }
.hdr-phone:hover { color: var(--orange); }

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hdr-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--tr);
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,22,44,.92) 0%, rgba(13,31,60,.78) 45%, rgba(13,31,60,.55) 100%);
}

.hero-wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-h1 em {
    font-style: italic;
    color: var(--orange-lt);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 12px;
    border-radius: 50px;
}
.badge i { color: var(--orange-lt); font-size: 0.75rem; }

/* Hero card */
.hero-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-l);
}
.hcard-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 8px;
}
.hcard-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 22px;
    line-height: 1.5;
}
.hcard-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hcard-form input,
.hcard-form select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--r-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--tr);
    -webkit-appearance: none;
    appearance: none;
}
.hcard-form input:focus,
.hcard-form select:focus {
    border-color: var(--navy);
}

/* Hero numbers */
.hero-numbers {
    position: relative;
    z-index: 2;
    background: var(--orange);
    padding: 20px 0;
}
.hn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    flex-wrap: wrap;
}
.hn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 20px;
}
.hn-val {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hn-plus {
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255,255,255,.8);
    line-height: 1;
}
.hn-val + .hn-plus { display: inline; margin-left: 2px; }
.hn-item > :first-child, .hn-item > :nth-child(2) {
    display: inline;
}
.hn-num-line {
    display: flex;
    align-items: baseline;
    gap: 1px;
}
.hn-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
}
.hn-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    padding: 96px 0;
    background: var(--cream);
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-stack {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-l);
}
.aimg-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.aimg-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-m);
}
.aimg-tag i {
    font-size: 1.6rem;
    color: #f5b400;
}
.aimg-tag strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
}
.aimg-tag span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.about-text-col p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.78;
    margin-bottom: 16px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}
.pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--gray-200);
    transition: box-shadow var(--tr);
}
.pillar:hover { box-shadow: var(--shadow-m); }
.pillar-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.pillar strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.pillar span {
    font-size: 0.86rem;
    color: var(--gray-600);
}

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

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.srv-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 360px;
    background: var(--img) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.srv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,44,.92) 0%, rgba(10,22,44,.4) 55%, rgba(10,22,44,.1) 100%);
    transition: background var(--tr);
}
.srv-card:hover .srv-overlay {
    background: linear-gradient(to top, rgba(10,22,44,.97) 0%, rgba(10,22,44,.6) 55%, rgba(10,22,44,.2) 100%);
}

.srv-body {
    position: relative;
    z-index: 1;
    padding: 28px 26px;
    width: 100%;
    transform: translateY(36px);
    transition: transform var(--tr);
}
.srv-card:hover .srv-body {
    transform: translateY(0);
}

.srv-icon {
    width: 46px;
    height: 46px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.srv-body h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.srv-body ul {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.srv-card:hover .srv-body ul {
    display: flex;
}
.srv-body ul li {
    font-size: 0.86rem;
    color: rgba(255,255,255,.78);
    display: flex;
    align-items: center;
    gap: 8px;
}
.srv-body ul li::before {
    content: '→';
    color: var(--orange-lt);
    font-size: 0.8rem;
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--orange-lt);
    opacity: 0;
    transition: opacity var(--tr), gap var(--tr);
}
.srv-card:hover .srv-link {
    opacity: 1;
}
.srv-link::after { content: '→'; }

/* CTA card */
.srv-card--cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%) !important;
    align-items: center;
    justify-content: center;
}
.srv-cta-inner {
    text-align: center;
    padding: 36px 28px;
}
.srv-cta-inner i {
    font-size: 2.8rem;
    color: var(--orange-lt);
    margin-bottom: 16px;
    display: block;
}
.srv-cta-inner h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.srv-cta-inner p {
    font-size: 0.9rem;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ============================================
   BRANDS
   ============================================ */
.brands-section {
    background: var(--gray-100);
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.brands-title {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}
.brands-row span {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--navy-mid);
    padding: 8px 18px;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    transition: all var(--tr);
    cursor: default;
}
.brands-row span:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
    padding: 96px 0;
    background: var(--cream);
}

.proc-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.proc-item {
    display: grid;
    grid-template-columns: 64px 1fr 380px;
    gap: 36px;
    align-items: center;
}
.proc-item--flip {
    grid-template-columns: 64px 1fr 380px;
    direction: rtl;
}
.proc-item--flip > * { direction: ltr; }

.proc-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    text-align: center;
    opacity: .8;
}

.proc-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.proc-content p {
    font-size: 0.97rem;
    color: var(--gray-600);
    line-height: 1.75;
}
.proc-content a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.proc-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-m);
}
.proc-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.proc-item:hover .proc-img img {
    transform: scale(1.04);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
    padding: 96px 0;
    background: var(--navy);
}

.reviews-section .section-label { color: #ffc4a0; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.reviews-section .section-h2 { color: var(--white); }

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.rev-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: background var(--tr), transform var(--tr);
}
.rev-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.rev-card--accent {
    background: var(--orange);
    border-color: transparent;
}
.rev-card--accent:hover { background: var(--orange-dk); }

.rev-rating {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 0.88rem;
    margin-bottom: 14px;
}
.rev-card--accent .rev-rating { color: rgba(255,255,255,.85); }

.rev-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rev-ava {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rev-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.rev-author span {
    font-size: 0.8rem;
    color: rgba(255,255,255,.55);
}

.rev-overall {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 36px;
}
.rev-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.rev-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.rev-stars-big {
    color: #ffc107;
    font-size: 1.3rem;
    display: flex;
    gap: 4px;
}
.rev-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,.55);
}

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

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}

.faq-left p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--tr), box-shadow var(--tr);
}
.faq-item.open {
    border-color: var(--navy);
    box-shadow: var(--shadow-s);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
    text-align: left;
    transition: background var(--tr), color var(--tr);
}
.faq-item.open .faq-q { background: var(--navy); color: var(--white); }
.faq-q i {
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: transform var(--tr);
}
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding var(--tr);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
    padding: 16px 22px 18px;
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: 96px 0;
    background: linear-gradient(140deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cinfo-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.cinfo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-md);
    transition: background var(--tr);
}
a.cinfo-row:hover { background: rgba(255,255,255,.13); }
.cinfo-ico {
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.cinfo-row span {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.45);
    margin-bottom: 3px;
}
.cinfo-row strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.cinfo-areas p {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    margin-bottom: 10px;
}
.cinfo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cinfo-tags span {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 5px 12px;
    border-radius: 50px;
}

/* Contact form */
.contact-form-col {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-l);
}
.main-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.mf-group {
    margin-bottom: 14px;
}
.mf-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.mf-group input,
.mf-group select,
.mf-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--r-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 0.93rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--tr);
    -webkit-appearance: none;
    appearance: none;
}
.mf-group input:focus,
.mf-group select:focus,
.mf-group textarea:focus {
    border-color: var(--navy);
}
.mf-group textarea { resize: vertical; min-height: 110px; }

.mf-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 12px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.65);
    padding-top: 72px;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}
.footer-slogan {
    font-size: 1rem;
    font-weight: 700;
    color: #ffc4a0;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 9px; }
.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    transition: color var(--tr);
}
.footer-links ul li a:hover { color: var(--white); }

.foot-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    transition: color var(--tr);
}
.foot-phone:hover { color: #ffc4a0; }
.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 18px 0;
}
.footer-bottom .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom span {
    font-size: 0.8rem;
    color: rgba(255,255,255,.35);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all var(--tr);
    color: var(--white);
}
.social-icon i { font-size: 1rem; }

.social-fb { background: #1877f2; }
.social-fb:hover { background: #0d65d9; transform: translateY(-2px); }

.social-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-ig:hover { opacity: 0.88; transform: translateY(-2px); }

.social-google { background: #4285f4; }
.social-google:hover { background: #2b6de0; transform: translateY(-2px); }

.social-guarantee { background: #34a853; }
.social-guarantee:hover { background: #2a8e45; transform: translateY(-2px); }

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.fab-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 22px rgba(224,90,30,.45);
    z-index: 800;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity var(--tr), transform var(--tr), background var(--tr);
    animation: ring 2.4s infinite;
}
.fab-call.show {
    opacity: 1;
    transform: scale(1);
}
.fab-call:hover {
    background: var(--orange-dk);
    transform: scale(1.08) !important;
}

@keyframes ring {
    0%, 100% { box-shadow: 0 4px 22px rgba(224,90,30,.45), 0 0 0 0 rgba(224,90,30,.3); }
    55%       { box-shadow: 0 4px 22px rgba(224,90,30,.45), 0 0 0 16px rgba(224,90,30,0); }
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 16px 20px 16px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-l);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 460px;
    width: calc(100% - 48px);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.toast > i {
    font-size: 1.5rem;
    color: #4ade80;
    flex-shrink: 0;
}
.toast strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.toast span { font-size: 0.82rem; color: rgba(255,255,255,.65); }
.toast-close {
    margin-left: auto;
    flex-shrink: 0;
    color: rgba(255,255,255,.5);
    padding: 4px;
    font-size: 0.85rem;
    transition: color var(--tr);
}
.toast-close:hover { color: var(--white); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
    .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .hero-wrap { grid-template-columns: 1fr; gap: 32px; }
    .hero-card { max-width: 480px; }
    .hero-h1 { font-size: clamp(2rem, 6vw, 3rem); }

    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .aimg-main { height: 340px; }

    .proc-item,
    .proc-item--flip {
        grid-template-columns: 48px 1fr;
        direction: ltr;
    }
    .proc-img { grid-column: 1 / -1; }

    .rev-grid { grid-template-columns: 1fr 1fr; }
    .faq-wrap { grid-template-columns: 1fr; gap: 40px; }

    .contact-wrap { grid-template-columns: 1fr; }
    .contact-form-col { padding: 30px 24px; }

    .hdr-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        box-shadow: var(--shadow-m);
        padding: 12px 20px 20px;
        gap: 2px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .hdr-nav.open { max-height: 400px; }
    .hdr-nav a { font-size: 1rem; padding: 12px 14px; }
    .hdr-burger { display: flex; }
    .hdr-phone span { display: none; }
    .hdr-slogan { display: none; }
    .hdr-wrap { position: relative; }
}

@media (max-width: 640px) {
    .srv-grid { grid-template-columns: 1fr; }
    .rev-grid { grid-template-columns: 1fr; }
    .footer-wrap { grid-template-columns: 1fr; gap: 28px; }
    .mf-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn-main, .btn-ghost { width: 100%; justify-content: center; }
    .hn-sep { display: none; }
    .hn-wrap { gap: 16px; justify-content: center; }
    .footer-bottom .wrap { flex-direction: column; text-align: center; }
    .proc-item { grid-template-columns: 1fr; }
    .proc-num { display: none; }
    .section-h2 { font-size: 1.8rem; }
    .contact-form-col { padding: 24px 18px; }
}
