/* ============================================================
   Concrete Designs FL LLC — Main Stylesheet
   ============================================================ */

/* === Google Fonts & Root Variables === */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --charcoal:    #1e1e1e;
  --dark-gray:   #2c2c2c;
  --mid-gray:    #4a4a4a;
  --concrete:    #7a7a72;
  --light-gray:  #e8e6e0;
  --off-white:   #f5f4f0;
  --white:       #ffffff;
  --deep-blue:   #1a3a5c;
  --blue-mid:    #1e4d7b;
  --blue-light:  #2a6bab;
  --accent-gold: #c8961e;
  --red-cta:     #d64a1a;

  --font-main:   'Barlow', sans-serif;
  --font-heading:'Barlow Condensed', sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 6px 24px rgba(0,0,0,.18);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.26);
  --radius:      6px;
  --transition:  .28s ease;
}

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

/* === Utility Classes === */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center      { text-align: center; }
.text-white       { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* === Section Spacing === */
.section         { padding: 90px 0; }
.section--dark   { background: var(--charcoal); color: var(--white); }
.section--gray   { background: var(--off-white); }
.section--blue   { background: var(--deep-blue); color: var(--white); }
.section--white  { background: var(--white); }

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p  { font-size: 1.0625rem; color: var(--mid-gray); line-height: 1.75; }
.section--dark p, .section--blue p { color: rgba(255,255,255,.78); }

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.section--dark .section-label,
.section--blue .section-label { color: var(--accent-gold); }

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--concrete);
  max-width: 620px;
  margin: 0 auto 48px;
}
.section--dark .section-subtitle,
.section--blue .section-subtitle { color: rgba(255,255,255,.68); }

.divider {
  width: 60px;
  height: 4px;
  background: var(--blue-light);
  margin: 20px 0 36px;
  border-radius: 2px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--gold   { background: var(--accent-gold); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--deep-blue);
  color: var(--white);
  border: 2px solid var(--deep-blue);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--cta {
  background: var(--red-cta);
  color: var(--white);
  border: 2px solid var(--red-cta);
}
.btn--cta:hover {
  background: #c03d10;
  border-color: #c03d10;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--deep-blue);
  transform: translateY(-2px);
}
.btn--outline-blue {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}
.btn--outline-blue:hover {
  background: var(--deep-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--accent-gold);
  color: var(--white);
  border: 2px solid var(--accent-gold);
}
.btn--gold:hover {
  background: #b8851a;
  border-color: #b8851a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-logo .logo-sub {
  font-family: var(--font-main);
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: .03em;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { font-size: .95rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.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); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 2px solid var(--deep-blue);
  z-index: 999;
  padding: 16px 0 24px;
  transform: translateY(-120%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 14px 28px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--deep-blue); color: var(--white); }
.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 24px 0;
  background: var(--red-cta);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

/* Top Bar */
.top-bar {
  background: var(--deep-blue);
  color: rgba(255,255,255,.88);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--accent-gold); font-weight: 700; }
.top-bar i { margin-right: 5px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  filter: brightness(.35);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,.82) 0%, rgba(30,30,30,.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,30,.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  max-width: 780px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  margin-bottom: 16px;
}
.hero-title span { color: var(--accent-gold); }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}
.stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.25rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: var(--deep-blue);
  padding: 24px 0;
  border-bottom: 3px solid var(--accent-gold);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item i {
  font-size: 1.75rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.trust-item-text { line-height: 1.3; }
.trust-item-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.trust-item-text span {
  font-size: .8125rem;
  opacity: .78;
}

/* ============================================================
   SERVICES OVERVIEW (Home)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--deep-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.75rem;
  color: var(--deep-blue);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--deep-blue);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-card p {
  font-size: .9375rem;
  margin-bottom: 20px;
}
.service-card a.link-arrow {
  font-size: .875rem;
  font-weight: 700;
  color: var(--deep-blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card a.link-arrow:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.why-card {
  padding: 32px 24px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); }
.why-card i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.why-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.why-card p  { font-size: .9375rem; color: rgba(255,255,255,.72); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.step-item h4 { margin-bottom: 8px; color: var(--charcoal); }
.step-item p  { font-size: .9rem; }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:first-child {
  grid-column: span 2;
}
.gallery-item:first-child img { height: 360px; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--light-gray);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: .9375rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  font-size: .9375rem;
}
.author-info span {
  font-size: .8125rem;
  color: var(--concrete);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.area-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  font-size: .9rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
}
.area-tag:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}
.area-tag i { color: var(--accent-gold); margin-right: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-main);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--deep-blue); }
.faq-question i {
  font-size: 1.1rem;
  color: var(--deep-blue);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 4px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: .9375rem; color: var(--mid-gray); line-height: 1.75; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.cta-banner h2, .cta-banner h3 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { position: relative; z-index: 1; max-width: 600px; margin: 16px auto 36px; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  background-image: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.78); max-width: 600px; margin: 16px auto 0; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--accent-gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}
.about-badge span {
  font-size: .8125rem;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--deep-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.value-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.value-item p { font-size: .9rem; margin: 0; }

/* Team / Stats Bar */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-box {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--deep-blue);
  line-height: 1;
}
.stat-box .lbl {
  font-size: .875rem;
  color: var(--concrete);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: 80px 0;
}
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-detail-img:hover img { transform: scale(1.04); }
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--mid-gray);
}
.benefit-item i { color: var(--deep-blue); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 2px solid var(--light-gray);
  color: var(--mid-gray);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,.88) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-item-overlay { opacity: 1; }
.gal-item-overlay h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.gal-item-overlay span { color: var(--accent-gold); font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.gal-item-overlay i { position: absolute; top: 16px; right: 16px; color: var(--white); font-size: 1.25rem; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(0,0,0,.8);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.review-summary {
  background: var(--deep-blue);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  color: var(--white);
}
.review-big-score {
  text-align: center;
  flex-shrink: 0;
}
.review-big-score .score {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}
.review-big-score .stars-big { font-size: 1.5rem; color: #f5a623; }
.review-big-score span { display: block; margin-top: 4px; font-size: .875rem; opacity: .7; }
.review-bars { flex: 1; min-width: 220px; }
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-bar-row span { font-size: .875rem; min-width: 50px; }
.review-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 4px;
  transition: width 1s ease;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--deep-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--charcoal); }
.reviewer-date { font-size: .8125rem; color: var(--concrete); margin-top: 2px; }
.google-badge {
  font-size: .75rem;
  color: var(--concrete);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card-stars { color: #f5a623; font-size: .9375rem; margin-bottom: 12px; }
.review-card-text { font-size: .9375rem; color: var(--mid-gray); line-height: 1.75; font-style: italic; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-box { background: var(--deep-blue); border-radius: 14px; padding: 44px 36px; color: var(--white); }
.contact-info-box h3 { color: var(--white); margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item i {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .9375rem; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a {
  font-size: .9375rem;
  color: rgba(255,255,255,.78);
}
.contact-info-item a:hover { color: var(--accent-gold); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr td { padding: 6px 0; font-size: .9rem; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.08); }
.hours-table tr td:last-child { text-align: right; }
.hours-table .today-row td { color: var(--accent-gold); font-weight: 700; }

.contact-form { background: var(--off-white); border-radius: 14px; padding: 44px 36px; }
.contact-form h3 { color: var(--charcoal); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: .9375rem;
  font-family: var(--font-main);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(26,58,92,.12);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

/* Map */
.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  margin-top: 60px;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #141414;
  color: rgba(255,255,255,.72);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.footer-logo-sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.footer-desc { font-size: .9375rem; line-height: 1.75; max-width: 320px; color: rgba(255,255,255,.6); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--deep-blue); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.62);
  font-size: .9375rem;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: .75rem; color: var(--accent-gold); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.62);
}
.footer-contact-item i { color: var(--accent-gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.62); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8375rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--accent-gold); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.float-btn--call { background: var(--red-cta); }
.float-btn--wa   { background: #25d366; }
.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.float-btn:hover + .float-tooltip { opacity: 1; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid  { gap: 48px; }
}
@media (max-width: 900px) {
  .about-grid            { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid          { grid-template-columns: 1fr; }
  .service-detail-inner  { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .gallery-grid          { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .stats-row             { grid-template-columns: 1fr 1fr; }
  .gallery-masonry       { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section              { padding: 64px 0; }
  .nav-menu, .nav-cta   { display: none; }
  .hamburger            { display: flex; }
  .mobile-nav           { display: block; }
  .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
  .form-row             { grid-template-columns: 1fr; }
  .review-summary       { flex-direction: column; gap: 32px; padding: 32px; }
  .about-badge          { position: static; display: inline-block; margin-top: 20px; }
  .hero-stats           { gap: 24px; }
  .gallery-masonry      { grid-template-columns: 1fr; }
  .top-bar-inner        { justify-content: center; }
}
@media (max-width: 560px) {
  .gallery-grid            { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:first-child img { height: 240px; }
  .services-grid           { grid-template-columns: 1fr; }
  .trust-bar-inner         { flex-direction: column; gap: 24px; text-align: center; }
  .hero-actions            { flex-direction: column; align-items: flex-start; }
  .stats-row               { grid-template-columns: 1fr 1fr; }
  .cta-actions             { flex-direction: column; align-items: center; }
}
