/* ============================================
   MIMAR CONSTRUCTION LLC - Main Stylesheet
   Color Palette: Navy (#1a2744), Gold (#c8952e),
   White (#ffffff), Light Gray (#f5f5f5)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #1a2744;
  --navy-dark: #111b30;
  --navy-light: #2a3d5e;
  --gold: #c8952e;
  --gold-light: #d4a94e;
  --gold-dark: #a87a24;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f0f2f5;
  --mid-gray: #6c757d;
  --dark-gray: #343a40;
  --text: #2d2d2d;
  --text-light: #555;
  --border: #dee2e6;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -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); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1em; }

ul, ol { margin-bottom: 1em; padding-left: 1.5em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header p { color: var(--text-light); font-size: 1.1rem; }

.gold-accent { color: var(--gold); }

/* --- Top Bar --- */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }

/* --- Header --- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo img { height: 50px; width: auto; }
.logo span { color: var(--gold); }
.logo small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--mid-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Navigation --- */
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a, .main-nav .dropdown > a {
  color: var(--text);
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav .dropdown:hover > a {
  color: var(--gold-dark);
  background: var(--light-gray);
}
.main-nav a.active { color: var(--gold-dark); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--light-gray); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}
.header-phone svg { color: var(--gold); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200,149,46,0.4);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--light-gray);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); font-size: 3rem; max-width: 800px; }
.hero h1 .gold-accent { color: var(--gold-light); }
.hero p { font-size: 1.25rem; max-width: 650px; margin-bottom: 30px; opacity: 0.9; }
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero Path Selector */
.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin-top: 40px;
}
.hero-path {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  color: var(--white);
}
.hero-path:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--white);
}
.hero-path svg { width: 48px; height: 48px; margin-bottom: 12px; color: var(--gold-light); }
.hero-path h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.hero-path p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 0; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--white);
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--text-light); flex-grow: 1; }
.service-card .btn { margin-top: 15px; align-self: flex-start; }

/* --- Project Showcase --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: all var(--transition);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-images {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.project-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.project-info { padding: 20px; }
.project-info h3 { font-size: 1.1rem; }
.project-info p { font-size: 0.95rem; color: var(--text-light); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}
.testimonial-author { font-weight: 600; color: var(--navy); }
.testimonial-location { font-size: 0.85rem; color: var(--mid-gray); }

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.why-card { text-align: center; padding: 20px; }
.why-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--gold);
}
.why-card h3 { font-size: 1.15rem; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

/* --- Certifications Bar --- */
.cert-bar {
  background: var(--navy);
  padding: 40px 0;
  color: var(--white);
}
.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.cert-logos img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.cert-logos img:hover { opacity: 1; }
.cert-logos span {
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.7;
}

/* --- Service Area Map --- */
.map-section { text-align: center; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 30px;
}
.map-embed iframe { width: 100%; height: 450px; border: 0; }

/* --- Service Page Layout --- */
.service-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  position: relative;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero h1 { color: var(--white); font-size: 2.5rem; }
.service-hero p { font-size: 1.15rem; opacity: 0.9; max-width: 700px; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: var(--light-gray);
  font-size: 0.9rem;
}
.breadcrumbs a { color: var(--mid-gray); }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs span { color: var(--text-light); }
.breadcrumbs .separator { margin: 0 8px; color: var(--border); }

/* Service Content */
.service-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}
.service-main {}
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-bottom: 25px;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: 10px; }
.sidebar-cta p { opacity: 0.8; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-cta .phone-link {
  display: block;
  margin-top: 15px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.2rem;
}

.sidebar-services {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow);
}
.sidebar-services h4 { margin-bottom: 15px; }
.sidebar-services a {
  display: block;
  padding: 10px 15px;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.sidebar-services a:hover, .sidebar-services a.active {
  background: var(--light-gray);
  color: var(--gold-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 25px 0;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }

/* FAQ Accordion */
.faq-list { margin: 25px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-family: inherit;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light-gray); }
.faq-question .icon {
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 20px 18px; color: var(--text-light); line-height: 1.8; }

/* Service Area List */
.service-areas {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 30px 0;
}
.service-areas h3 { margin-bottom: 15px; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tag {
  background: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold-dark); }

/* --- Location Page --- */
.location-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 60px 0 50px;
}
.location-hero h1 { color: var(--white); }
.location-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.location-stat { text-align: center; }
.location-stat .number { font-size: 2rem; font-weight: 700; color: var(--gold-light); }
.location-stat .label { font-size: 0.85rem; opacity: 0.8; }

/* --- Contact Forms --- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}
.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(200,149,46,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: 12px;
}

/* Inline Form (footer/sidebar) */
.inline-form { display: flex; gap: 10px; }
.inline-form input { flex: 1; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-about p { font-size: 0.95rem; line-height: 1.7; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item svg { color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.floating-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,0,0,0.3); }
.floating-btn-primary {
  background: var(--gold);
  color: var(--white);
}
.floating-btn-phone {
  background: var(--navy);
  color: var(--white);
}

/* --- About Page --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.value-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-card-icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--gold);
}
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 25px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
}
.timeline-year { font-weight: 700; color: var(--gold-dark); margin-bottom: 5px; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .service-content {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 { font-size: 2.3rem; }
  .hero-paths { grid-template-columns: 1fr; max-width: 400px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .top-bar { display: none; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .main-nav.active { transform: translateX(0); }
  .main-nav a { padding: 12px 15px; font-size: 1.1rem; }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 15px;
    display: none;
  }
  .dropdown.active .dropdown-menu { display: block; }

  .menu-toggle { display: block; }

  .header-cta { display: none; }
  .header-phone-mobile {
    display: flex !important;
    padding: 12px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    justify-content: center;
    gap: 8px;
  }

  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1.05rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .trust-items { gap: 20px; }
  .trust-item { font-size: 0.85rem; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .section { padding: 50px 0; }

  .floating-cta { bottom: 10px; right: 10px; }
  .floating-btn { padding: 12px 18px; font-size: 0.85rem; }
  .floating-btn span.btn-text { display: none; }

  .contact-form { padding: 25px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  .service-hero { padding: 40px 0 35px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Print --- */
@media print {
  .site-header, .floating-cta, .top-bar { display: none; }
  .hero { background: var(--navy) !important; }
  body { font-size: 12pt; }
}
