/* =============================================
   ARCHITECT AFRIQUE — MAIN STYLESHEET
   Mobile-First | WCAG 2.1 AA | CSS Variables
   ============================================= */

/* --- CSS Variables --- */
:root {
  --gold:        #D4AF37;
  --gold-dark:   #B8960C;
  --gold-light:  #F0D060;
  --dark:        #0D0D0D;
  --dark-2:      #1A1A1A;
  --dark-3:      #2A2A2A;
  --mid:         #4A4A4A;
  --light:       #F5F5F0;
  --white:       #FFFFFF;
  --text:        #222222;
  --text-muted:  #666666;
  --border:      #E0E0D8;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.18);
  --transition:  0.3s ease;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-width:   1200px;
  --section-pad: 5rem 1.25rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: var(--section-pad); }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 3rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.lead { font-size: 1.15rem; color: var(--mid); line-height: 1.8; }
.gold-text { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Skip Link --- */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--gold); color: var(--dark); padding: .75rem 1.5rem; border-radius: var(--radius); font-weight: 700; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-decoration: none; min-height: 44px; }
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-2); }
.btn-white { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-white:hover { background: var(--light); }
.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* --- Header / Navigation --- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  color: var(--gold); text-decoration: none; letter-spacing: .5px;
}
.nav-brand span { color: var(--white); }
.nav-menu { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark-2); padding: 1rem 0; border-top: 2px solid var(--gold); }
.nav-menu.open { display: flex; }
.nav-menu li a { display: block; padding: .75rem 1.5rem; color: var(--white); font-weight: 500; font-size: .95rem; transition: color var(--transition), background var(--transition); }
.nav-menu li a:hover, .nav-menu li a[aria-current="page"] { color: var(--gold); background: rgba(212,175,55,0.08); }
.nav-cta { display: none; }
.nav-toggle { background: none; border: 2px solid var(--gold); color: var(--gold); padding: .45rem .7rem; border-radius: var(--radius); cursor: pointer; font-size: 1.2rem; min-height: 44px; min-width: 44px; }

@media (min-width: 900px) {
  .nav-menu { display: flex; flex-direction: row; position: static; background: none; padding: 0; border: none; gap: .25rem; }
  .nav-menu li a { padding: .5rem .9rem; border-radius: var(--radius); }
  .nav-toggle { display: none; }
  .nav-cta { display: flex; align-items: center; gap: .75rem; }
}

/* --- Hero Section --- */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: var(--dark-2); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('/images/hero-architecture-ghana.jpg');
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 100%); }
/* Hero Slideshow */
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.20) 100%); }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0; }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
.hero-content { position: relative; z-index: 1; max-width: 750px; padding: 4rem 1.25rem; }
.hero-badge { display: inline-block; background: var(--gold); color: var(--dark); padding: .35rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-stat { color: var(--white); }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero-stat span { font-size: .85rem; opacity: .8; }

/* --- Page Banner (inner pages) --- */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 5rem 1.25rem 3.5rem;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1 { color: var(--white); margin-bottom: .5rem; }
.page-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.service-card-body h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.service-card-body p { color: var(--text-muted); font-size: .92rem; flex: 1; margin-bottom: 1rem; }
.service-tag { display: inline-block; background: rgba(212,175,55,0.12); color: var(--gold-dark); padding: .2rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 600; margin-bottom: .75rem; }

/* --- Why Choose Us --- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: var(--light); border-radius: var(--radius-lg); padding: 2rem; border-left: 4px solid var(--gold); }
.why-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-card p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* --- Portfolio / Projects --- */
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--dark); }
.portfolio-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: .85; transition: opacity var(--transition), transform var(--transition); }
.portfolio-card:hover img { opacity: 1; transform: scale(1.04); }
.portfolio-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%); }
.portfolio-card-info h3 { color: var(--white); font-size: 1rem; margin-bottom: .25rem; }
.portfolio-card-info p { color: rgba(255,255,255,0.7); font-size: .82rem; margin: 0; }
.portfolio-tag { display: inline-block; background: var(--gold); color: var(--dark); padding: .15rem .6rem; border-radius: 50px; font-size: .72rem; font-weight: 700; margin-bottom: .4rem; }

/* --- Quote Form --- */
.quote-section { background: var(--dark); padding: var(--section-pad); }
.quote-section .section-title { color: var(--white); }
.quote-section .section-subtitle { color: rgba(255,255,255,0.65); }
.quote-form-wrap { max-width: 720px; margin: 0 auto; background: var(--dark-2); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid rgba(212,175,55,0.2); }
.online-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); padding: .4rem 1rem; border-radius: 50px; font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem; }
.online-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); border-radius: var(--radius); padding: .75rem 1rem;
  font-family: var(--font-body); font-size: .95rem; transition: border-color var(--transition);
  min-height: 44px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--gold); opacity: .15; position: absolute; top: -.5rem; left: 1rem; font-family: Georgia, serif; line-height: 1; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; color: var(--mid); margin-bottom: 1rem; font-size: .95rem; }
.testimonial-author { font-weight: 700; font-size: .88rem; color: var(--dark); }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; flex-wrap: wrap; }
.blog-cat { background: rgba(212,175,55,0.12); color: var(--gold-dark); padding: .2rem .65rem; border-radius: 50px; font-weight: 600; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: .5rem; line-height: 1.4; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--gold-dark); }
.blog-card-body p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; background: var(--white); border: none; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--dark); text-align: left; min-height: 44px; transition: background var(--transition); }
.faq-question:hover { background: var(--light); }
.faq-question[aria-expanded="true"] { background: var(--dark); color: var(--gold); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 1.25rem 1.5rem; background: var(--light); font-size: .95rem; color: var(--mid); border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }

/* --- Service Areas --- */
.areas-grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.area-chip { background: var(--dark); color: var(--gold); border: 1px solid var(--gold); padding: .5rem 1.25rem; border-radius: 50px; font-size: .88rem; font-weight: 600; }

/* --- Cross-sell / Sister Brands --- */
.crosssell-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .crosssell-grid { grid-template-columns: repeat(3, 1fr); } }
.crosssell-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.crosssell-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.crosssell-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.crosssell-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }

/* --- Stats Bar --- */
.stats-bar { background: var(--gold); padding: 2.5rem 1.25rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: var(--max-width); margin: 0 auto; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--dark); }
.stat-item span { font-size: .88rem; color: rgba(0,0,0,0.65); font-weight: 600; }

/* --- CTA Banner --- */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); padding: 4rem 1.25rem; text-align: center; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Footer --- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 4rem 1.25rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: var(--max-width); margin: 0 auto; padding-bottom: 3rem; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--gold); margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-nap p { font-size: .88rem; margin-bottom: .4rem; }
.footer-nap a { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,0.4); max-width: var(--max-width); margin: 0 auto; }

/* --- Floating CTA --- */
.float-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 8000; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.float-cta a { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.4rem; border-radius: 50px; font-family: var(--font-head); font-weight: 700; font-size: .88rem; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.35); transition: transform var(--transition), box-shadow var(--transition); }
.float-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.float-quote { background: var(--gold); color: var(--dark); }
.float-call { background: var(--dark-2); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

/* --- Before/After Slider --- */
.ba-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: ew-resize; user-select: none; }
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); transform: translateX(-50%); z-index: 2; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 3; box-shadow: 0 2px 12px rgba(0,0,0,0.4); color: var(--dark); font-size: 1rem; font-weight: 700; }
.ba-label { position: absolute; top: 1rem; background: rgba(0,0,0,0.7); color: var(--white); padding: .25rem .75rem; border-radius: 50px; font-size: .75rem; font-weight: 600; z-index: 4; }
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* --- Service Detail Page --- */
.service-detail { padding: 4rem 1.25rem; }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .service-detail-grid { grid-template-columns: 2fr 1fr; } }
.service-content h2 { margin: 2rem 0 1rem; font-size: 1.4rem; }
.service-content ul { padding-left: 1.5rem; list-style: disc; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.service-content ul li { font-size: .95rem; color: var(--mid); }
.pricing-table { background: var(--light); border-radius: var(--radius-lg); padding: 1.75rem; margin: 2rem 0; border-left: 4px solid var(--gold); }
.pricing-table h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .92rem; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row strong { color: var(--gold-dark); font-weight: 700; }
.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--light); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--border); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--dark); }
.sidebar-links { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-links a { font-size: .88rem; color: var(--gold-dark); padding: .4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .4rem; }
.sidebar-links a:hover { color: var(--gold); }

/* --- Process Steps --- */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; counter-reset: step; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 44px; height: 44px; background: var(--gold); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1rem; }
.step-content h4 { margin-bottom: .25rem; }
.step-content p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail h4 { font-size: .88rem; color: var(--text-muted); margin-bottom: .2rem; }
.contact-detail p, .contact-detail a { font-size: .95rem; color: var(--dark); font-weight: 500; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 300px; background: var(--light); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* --- About Page --- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(5, 1fr); } }
.value-chip { background: var(--dark); color: var(--gold); padding: .75rem 1rem; border-radius: var(--radius); text-align: center; font-size: .82rem; font-weight: 700; }
.cert-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.cert-badge { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem 1.25rem; font-size: .82rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: .5rem; }

/* --- Blog Post Page --- */
.blog-post { max-width: 800px; margin: 0 auto; padding: 3rem 1.25rem; }
.blog-post h1 { margin-bottom: 1rem; }
.blog-post-meta { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--text-muted); font-size: .88rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.blog-post-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; aspect-ratio: 16/9; }
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-content h2 { margin: 2rem 0 1rem; }
.blog-post-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.blog-post-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.5rem; }
.blog-post-content ul li { margin-bottom: .4rem; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.gold-divider { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1rem auto 2rem; }
.inline-list { display: flex; flex-wrap: wrap; gap: .5rem; }

/* --- Responsive Helpers --- */
@media (max-width: 599px) {
  .hero { min-height: 80vh; }
  .hero-stats { gap: 1.25rem; }
  .float-cta a { padding: .65rem 1.1rem; font-size: .82rem; }
}
