/* =========================================================
   Afford-A-Pro General Construction and Roofing LLC
   style.css — Production build
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
    --primary:       #7B2FBE;
    --primary-dark:  #5a1f8a;
    --primary-light: #9d52d4;
    --accent:        #9D4EDD;
    --black:         #111111;
    --white:         #ffffff;
    --gray-light:    #f5f5f5;
    --gray-mid:      #e8e8e8;
    --gray-text:     #555555;
    --font-head:     'Oswald', sans-serif;
    --font-body:     'Source Sans 3', sans-serif;
    --radius:        6px;
    --shadow:        0 4px 24px rgba(0,0,0,0.10);
    --transition:    0.22s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white) !important;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary) !important;
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary) !important;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* ---------- Header ---------- */
header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img {
    height: 80px;
    width: auto;
    max-width: 280px;
}

/* ---------- Desktop Nav ---------- */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-desktop a {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #cccccc;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: #ffffff; background: rgba(255,255,255,0.08); }

/* ---------- Mobile Nav ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    overflow-y: auto;
    z-index: 999;
    padding-bottom: 120px;
}
.nav-mobile.open { display: block; }
.nav-mobile > a {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cccccc;
    padding: 14px 24px;
    border-bottom: 1px solid #222;
    text-decoration: none;
}
.nav-mobile > a:hover { color: #ffffff; background: rgba(255,255,255,0.05); }
.nav-mobile .mob-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #333;
}
.nav-mobile .mob-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px;
    border-radius: var(--radius);
    text-decoration: none;
}
.mob-call-btn { background: var(--primary); color: #fff !important; }
.mob-quote-btn { background: transparent; color: var(--accent) !important; border: 2px solid var(--accent); }

/* ---------- Sections ---------- */
.section {
    padding: 80px 24px;
}
.section-gray {
    padding: 80px 24px;
    background: var(--gray-light);
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    margin-bottom: 16px;
    color: var(--black);
}
.section-title.white { color: var(--white); }
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 640px;
    margin-bottom: 40px;
}
.section-desc.center { text-align: center; margin: 0 auto 40px; }
.text-center { text-align: center; }

/* ---------- Page Hero ---------- */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.page-hero-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-hero-label a {
    color: var(--accent);
    opacity: 0.8;
}
.page-hero-label a:hover { opacity: 1; }
.page-hero-label .sep { opacity: 0.5; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 580px; }

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: var(--primary);
    padding: 0;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; opacity: 0.9; }
.trust-item-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}
.trust-item-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}

/* ---------- Two Column ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}
.two-col-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    direction: rtl;
}
.two-col-reverse > * { direction: ltr; }
.two-col img, .two-col-reverse img {
    border-radius: 8px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* ---------- Feature List ---------- */
.feature-list {
    list-style: none;
    margin: 20px 0 28px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 1rem;
    color: var(--gray-text);
}
.feature-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-body { padding: 22px; }
.service-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.service-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 16px;
}
.service-link {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.service-link::after { content: '→'; }
.service-link:hover { color: var(--primary-dark); }

/* ---------- Why Grid ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-item {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}
.why-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--white);
}
.why-text h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.why-text p { font-size: 0.92rem; color: var(--gray-text); }

/* ---------- Process Steps ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.process-step {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    box-shadow: var(--shadow);
}
.process-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}
.process-step h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.process-step p { font-size: 0.93rem; color: var(--gray-text); }

/* ---------- Gallery ---------- */
.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta {
    text-align: center;
    margin-top: 32px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-q.open { color: var(--primary); }
.faq-arrow {
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.97rem;
    color: var(--gray-text);
    line-height: 1.7;
}
.faq-a.open { display: block; }

/* ---------- Reviews ---------- */
.reviews-section {
    padding: 80px 24px;
    background: var(--black);
}
.reviews-section .section-label { color: var(--accent); }
.reviews-section .section-title { color: var(--white); }
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.reviews-stars { color: #fbbf24; font-size: 1.4rem; }
.reviews-score {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}
.reviews-count {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 36px;
}
.review-card {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #333;
}
.review-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 12px; }
.review-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.review-name {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.review-date { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.reviews-cta { text-align: center; }

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--primary);
    padding: 50px 24px;
}
.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item {}
.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 24px;
    text-align: center;
}
.cta-banner h2 {
    color: var(--white);
    margin-bottom: 14px;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    margin-bottom: 24px;
    transition: opacity var(--transition);
}
.cta-phone:hover { opacity: 0.85; }
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Areas Grid ---------- */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}
.area-chip {
    background: var(--white);
    border: 2px solid var(--gray-mid);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.area-chip:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}
.areas-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.area-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
}
.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: var(--primary);
}
.area-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 6px;
}
.area-card p { font-size: 0.88rem; color: var(--gray-text); margin: 0; }

/* ---------- Contact Form ---------- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-full { grid-column: 1 / -1; }
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid var(--gray-mid);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; }

/* ---------- Float Call Button ---------- */
.float-call {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 998;
    background: var(--primary);
    color: var(--white) !important;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(123,47,190,0.5);
    font-size: 1.3rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.float-call:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
}

/* ---------- Mobile Sticky Bar ---------- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.mobile-sticky-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #111111 !important;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 10px;
}
.mobile-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff !important;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 10px;
}

/* ---------- Footer ---------- */
footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.75);
    padding: 60px 24px 0;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #222;
}
.footer-brand img { height: 90px; width: auto; max-width: 280px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ---------- Hero (Homepage) ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    max-width: 700px;
    padding-left: 24px;
    width: 100%;
}
.hero-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- About/Privacy text pages ---------- */
.content-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px;
}
.content-page h1 { margin-bottom: 24px; }
.content-page h2 { margin: 32px 0 12px; font-size: 1.4rem; }
.content-page h3 { margin: 24px 0 10px; font-size: 1.15rem; }
.content-page p { color: var(--gray-text); margin-bottom: 16px; }
.content-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.content-page ul li { color: var(--gray-text); margin-bottom: 6px; }

/* ---------- Gallery page ---------- */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Thank you / 404 ---------- */
.simple-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}
.simple-hero-inner { max-width: 560px; }
.simple-hero h1 { margin-bottom: 16px; }
.simple-hero p { color: var(--gray-text); font-size: 1.1rem; margin-bottom: 28px; }

/* ---------- Related Cards ---------- */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.related-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-decoration: none;
    border: 2px solid transparent;
    transition: border-color var(--transition), transform var(--transition);
    display: block;
}
.related-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.related-card h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.related-card p { font-size: 0.9rem; color: var(--gray-text); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .gallery-grid-full, .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .mobile-sticky-bar { display: grid; }
    body { padding-bottom: 56px; }
    .header-inner { height: 80px; }
    .header-logo img { height: 68px; max-width: 240px; }
    .footer-brand img { height: 80px; max-width: 240px; }
    .two-col, .two-col-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
        padding: 48px 24px;
    }
    .two-col img, .two-col-reverse img { height: 280px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .areas-grid-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .section, .section-gray { padding: 56px 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-2 { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid-full, .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 14px 10px; }
    .related-grid { grid-template-columns: 1fr; }
    .areas-grid-cards { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; }
    .hero { min-height: 75vh; }
    .header-inner { height: 72px; }
    .header-logo img { height: 60px; max-width: 210px; }
    .footer-brand img { height: 70px; max-width: 210px; }
}
