/*
Theme Name: GCS Contractors Ltd
Theme URI: https://www.gcscontractors.co.uk
Author: GCS Contractors Ltd
Author URI: https://www.gcscontractors.co.uk
Description: Custom theme for GCS Contractors Ltd — Groundworks, Civil Engineering & Demolition in Cambridge
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gcs-contractors
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif; color: #2d2d2d; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== VARIABLES ===== */
:root {
  --charcoal: #1a1d24;
  --charcoal-light: #2d3038;
  --orange: #c87533;
  --orange-hover: #a85f28;
  --orange-light: rgba(200, 117, 51, 0.1);
  --text-dark: #1a1d24;
  --text-body: #4a4a4a;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --bg-light: #f5f3f0;
  --bg-white: #fff;
  --border: #e0ddd8;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
@media (min-width: 640px) { h1 { font-size: 3.25rem; } h2 { font-size: 2.25rem; } }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-weight: 600; font-size: 0.875rem; border-radius: 4px; transition: all 0.2s; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { border: 2px solid var(--border); color: var(--text-dark); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--charcoal); color: #c8c4bc; font-size: 0.875rem; display: none; }
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.top-bar a { display: flex; align-items: center; gap: 0.5rem; color: #c8c4bc; }
.top-bar a:hover { color: var(--orange); }
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-right { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; }
.top-bar-right span { color: #c8c4bc; }
.top-bar-divider { color: var(--orange); }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.site-logo img { height: 56px; width: auto; object-fit: contain; }
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.desktop-nav a { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--text-body); border-radius: 4px; transition: all 0.2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--orange); background: var(--orange-light); }
.desktop-nav .btn-primary { margin-left: 1rem; }
.mobile-toggle { display: block; padding: 0.5rem; color: var(--text-dark); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: #fff; padding: 1rem; }
.mobile-nav.open { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a { padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--text-body); border-radius: 4px; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); background: var(--orange-light); }
.mobile-nav .btn-primary { margin-top: 0.5rem; text-align: center; }
.mobile-email-link { padding: 0.5rem 1rem; font-size: 0.8125rem; color: var(--orange) !important; text-align: center; }

/* ===== HERO ===== */
.hero { position: relative; padding: 6rem 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(20, 22, 28, 0.88); }
.hero-content { position: relative; z-index: 10; }
.hero-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); font-weight: 600; }
.hero h1 { color: #fff; margin-top: 0.75rem; margin-bottom: 1.25rem; }
.hero p { color: #c8c4bc; max-width: 36rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.hero-email-text { color: #c8c4bc; font-size: 0.875rem; margin-top: 0.5rem; width: 100%; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; flex-wrap: wrap; } }

/* ===== PAGE HERO (dark, no image) ===== */
.page-hero { padding: 5rem 0; background: var(--charcoal); }
.page-hero .hero-label { color: var(--orange); }
.page-hero h1 { color: #fff; margin-top: 0.75rem; margin-bottom: 1.25rem; }
.page-hero p { color: #c8c4bc; max-width: 36rem; line-height: 1.7; }

/* ===== TRUST STRIP ===== */
.trust-strip { padding: 1.5rem 0; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.trust-item .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ===== SERVICES GRID ===== */
.services-section { padding: 5rem 0; background: #fff; }
.section-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); font-weight: 600; }
.section-heading { color: var(--text-dark); margin-top: 0.75rem; margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 36rem; line-height: 1.7; font-size: 0.9375rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--bg-light); padding: 2rem; border-radius: 4px; border-left: 3px solid transparent; transition: all 0.3s; }
.service-card:hover { border-left-color: var(--orange); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.service-card-icon { width: 40px; height: 40px; background: var(--orange-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--orange); }
.service-card h3 { color: var(--text-dark); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.service-card a { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.8125rem; font-weight: 600; color: var(--orange); margin-top: 1rem; }
.service-card a:hover { gap: 0.5rem; }

/* ===== PROJECTS SECTION ===== */
.projects-section { padding: 5rem 0; background: var(--bg-light); }
.project-card { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 768px) { .project-card { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.project-card + .project-card { margin-top: 4rem; padding-top: 4rem; border-top: 1px solid var(--border); }
.project-card.reverse .project-images { order: 1; }
@media (min-width: 768px) { .project-card.reverse .project-images { order: 2; } .project-card.reverse .project-info { order: 1; } }
.project-images { position: relative; }
.before-after-slider { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); cursor: col-resize; user-select: none; }
.before-after-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slider-before-clip { position: absolute; inset: 0; overflow: hidden; }
.slider-before-clip img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.slider-line { position: absolute; top: 0; bottom: 0; width: 2px; background: #fff; z-index: 10; box-shadow: 0 0 8px rgba(0,0,0,0.3); }
.slider-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; }
.slider-label { position: absolute; top: 0.75rem; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; color: #fff; border-radius: 4px; z-index: 20; }
.slider-label-before { left: 0.75rem; background: rgba(26, 29, 36, 0.8); }
.slider-label-after { right: 0.75rem; background: rgba(200, 117, 51, 0.9); }
.slider-hint { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 0.75rem; }
.project-tag { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--orange); font-weight: 600; background: var(--orange-light); padding: 0.25rem 0.75rem; border-radius: 4px; }
.project-info h2 { color: var(--text-dark); margin-top: 1rem; margin-bottom: 0.5rem; }
.project-info .location { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.project-info p { color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.scope-title { font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.scope-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-body); padding: 0.25rem 0; }
.scope-list .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 5rem 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: 4px; transition: all 0.3s; }
.why-card:hover { border-color: var(--orange); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.why-card h3 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CERTIFICATIONS ===== */
.certs-section { padding: 3rem 0; background: var(--bg-light); }
.certs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; align-items: center; }
.cert-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 6px; transition: background 0.2s, transform 0.2s; }
a.cert-link { cursor: pointer; text-decoration: none; }
a.cert-link:hover { background: var(--orange-light); transform: translateY(-2px); }
.cert-view { font-size: 0.6875rem; color: var(--orange); font-weight: 600; margin-left: 0.25rem; white-space: nowrap; opacity: 0; transition: opacity 0.2s; letter-spacing: 0.02em; text-transform: uppercase; }
a.cert-link:hover .cert-view { opacity: 1; }
.about-certs-grid { flex-direction: column; align-items: stretch; max-width: 600px; margin: 0 auto; gap: 1rem; }
.about-certs-grid .cert-item { background: #fff; border: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.about-certs-grid a.cert-link:hover { background: var(--orange-light); border-color: var(--orange); }
.cert-badge { width: 48px; height: 48px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-weight: 700; font-size: 0.75rem; }
.cert-text { font-size: 0.8125rem; }
.cert-text strong { display: block; color: var(--text-dark); font-weight: 600; }
.cert-text span { color: var(--text-muted); font-size: 0.75rem; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 5rem 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: 4px; }
.review-stars { color: var(--orange); margin-bottom: 0.75rem; font-size: 0.875rem; }
.review-text { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); }
.review-source { font-size: 0.75rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 4rem 0; background: var(--charcoal); }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: #a0a0a0; margin-bottom: 2rem; max-width: 36rem; line-height: 1.7; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ===== LOCAL SEO SECTION ===== */
.local-seo { padding: 4rem 0; background: var(--bg-light); }
.local-seo h2 { color: var(--text-dark); margin-bottom: 1rem; }
.local-seo p { color: var(--text-muted); line-height: 1.7; font-size: 0.9375rem; max-width: 48rem; }

/* ===== ABOUT PAGE ===== */
.about-story { padding: 5rem 0; background: #fff; }
.about-story h2 { color: var(--text-dark); margin-bottom: 1.5rem; }
.about-story p { color: var(--text-body); line-height: 1.8; margin-bottom: 1.25rem; font-size: 0.9375rem; max-width: 48rem; }
.about-values { padding: 5rem 0; background: var(--bg-light); }
.values-list { margin-top: 2rem; }
.values-list dl { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .values-list dl { grid-template-columns: repeat(2, 1fr); } }
.value-item { padding: 1.5rem; background: #fff; border-radius: 4px; border-left: 3px solid var(--orange); }
.value-item dt { font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.value-item dd { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.about-details { padding: 5rem 0; background: #fff; }
.details-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
@media (min-width: 768px) { .details-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .details-grid { grid-template-columns: repeat(3, 1fr); } }
.detail-card { background: var(--bg-light); padding: 1.25rem; border-radius: 4px; }
.detail-card .label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; }
.detail-card .value { font-size: 0.875rem; font-weight: 500; color: var(--text-dark); }

/* ===== SERVICES PAGE ===== */
.service-detail { max-width: 48rem; }
.service-detail + .service-detail { margin-top: 4rem; padding-top: 4rem; border-top: 1px solid var(--border); }
.service-detail-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.service-detail-icon { width: 40px; height: 40px; background: var(--orange-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
.service-detail h2 { color: var(--text-dark); }
.service-detail .summary { color: var(--text-body); font-weight: 500; line-height: 1.7; margin-bottom: 1.5rem; }
.service-detail ul { list-style: none; }
.service-detail ul li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-body); line-height: 1.7; padding: 0.375rem 0; }
.service-detail ul li .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; margin-top: 0.625rem; flex-shrink: 0; }
.additional-services { padding: 5rem 0; background: var(--bg-light); }
.additional-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .additional-grid { grid-template-columns: 1fr 2fr; } }
.additional-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .additional-cards { grid-template-columns: repeat(2, 1fr); } }
.additional-card { background: #fff; padding: 1.25rem; border-radius: 4px; border: 1px solid var(--border); }
.additional-card h3 { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.additional-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ===== CONTACT PAGE ===== */
.contact-form-section { padding: 5rem 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.375rem; }
.form-label .required { color: #e53e3e; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.875rem; background: #fff; transition: border-color 0.2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.form-textarea { resize: none; }
.contact-details-box { background: var(--bg-light); padding: 2rem; border-radius: 4px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--orange-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.contact-detail-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.125rem; }
.contact-detail-value { font-size: 0.875rem; font-weight: 500; color: var(--text-dark); }
.contact-detail-value a { color: var(--text-dark); }
.contact-detail-value a:hover { color: var(--orange); }
.find-us-links { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.find-us-links p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.find-us-links .links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.find-us-links .links a { font-size: 0.75rem; background: #fff; padding: 0.375rem 0.75rem; border-radius: 4px; border: 1px solid var(--border); color: var(--text-body); transition: border-color 0.2s; }
.find-us-links .links a:hover { border-color: var(--orange); }
.map-section { background: var(--bg-light); padding: 3rem 0; }
.map-section iframe { border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

/* ===== FAQ ===== */
.faq-section { padding: 5rem 0; background: #fff; }
.faq-list { max-width: 48rem; }
.faq-item { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 0.75rem; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; text-align: left; font-size: 0.875rem; font-weight: 500; color: var(--text-dark); transition: background 0.2s; }
.faq-question:hover { background: var(--bg-light); }
.faq-question svg { width: 20px; height: 20px; color: var(--text-muted); transition: transform 0.2s; flex-shrink: 0; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--text-body); line-height: 1.7; border-top: 1px solid var(--border); display: none; }
.faq-answer.open { display: block; padding-top: 1rem; }

/* ===== FORM SUCCESS ===== */
.form-success { background: var(--bg-light); padding: 2.5rem; border-radius: 4px; text-align: center; }
.form-success svg { width: 48px; height: 48px; color: #38a169; margin: 0 auto 1rem; }
.form-success h3 { color: var(--text-dark); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.9375rem; }
.form-success a { color: var(--orange); font-weight: 600; }

/* ===== FOOTER ===== */
.site-footer { background: var(--charcoal); color: #a0a0a0; }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand img { height: 64px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-brand .company-no { font-size: 0.75rem; color: #666; }
.footer-heading { color: #fff; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: #a0a0a0; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.875rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #2d3038; padding: 1.25rem 0; }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: #666; }
@media (min-width: 768px) { .footer-bottom .container { flex-direction: row; justify-content: space-between; } }
.footer-certs { display: flex; align-items: center; gap: 1rem; }

/* ===== SVG ICONS ===== */
.icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.icon-sm { width: 14px; height: 14px; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(2rem); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITY ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-orange { color: var(--orange); }
.bg-charcoal { background: var(--charcoal); }
.max-w-2xl { max-width: 36rem; }
