/* ============================================
   Providence Professional Wallpaper Hanging
   Premium Design System
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #f1f1ef;
  --mid-gray: #e4e4e0;
  --text-primary: #2a2a2a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-light: #2a3d5e;
  --accent: #c9a96e;
  --accent-light: #dfc89e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --max-width-wide: 1400px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
iframe, video, canvas, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1, h2, h3, h4, h5, h6, p, li, a { overflow-wrap: break-word; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); }
.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0.5rem auto 0;
}

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy p, .bg-navy .section-subtitle { color: var(--white); }
.bg-navy .section-label { color: var(--accent-light); }
.text-center { text-align: center; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}
.header-brand {
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.header-brand a {
  display: block;
  color: var(--navy);
}
.header-brand a:hover { color: var(--navy-light); }

/* Desktop Nav */
.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav > li { position: relative; }
.header-nav > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header-nav > li > a:hover { background: var(--light-gray); color: var(--navy); }

/* Dropdown */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--light-gray); color: var(--navy); }

/* Header Contact */
.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
}
.header-phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.header-phone:hover { color: var(--navy-light); }
.header-email {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.header-email:hover { color: var(--navy); }

/* Burger Menu */
.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}
.burger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 80px 1.5rem 2rem;
}
.mobile-nav.active { display: block; }
.mobile-nav ul { margin-bottom: 1rem; }
.mobile-nav > ul > li > a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav .mobile-dropdown { padding-left: 1rem; display: none; }
.mobile-nav .mobile-dropdown.open { display: block; }
.mobile-nav .mobile-dropdown a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.mobile-nav .mobile-toggle-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-nav .mobile-toggle-sub::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition);
}
.mobile-nav .mobile-toggle-sub.open::after { content: '−'; }
.mobile-nav-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--navy);
}
.mobile-nav-contact a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

/* === HERO SECTIONS === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,48,0.85) 0%, rgba(26,39,68,0.7) 50%, rgba(15,26,48,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding: 2rem 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-content .section-label { color: var(--accent-light); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page Hero (smaller) */
.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-accent {
  background: var(--accent);
  color: var(--navy-dark);
}
.btn-accent:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { margin: 0 0.4rem; }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { font-size: 0.95rem; }

/* === SPLIT SECTIONS (image + text) === */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.split-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}
.split-content h2 { margin-bottom: 1rem; }
.split-content p { margin-bottom: 1rem; }

/* === PROCESS / STEPS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
  text-align: center;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.process-step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.process-step p { font-size: 0.9rem; color: var(--text-secondary); }

/* === STATS / METRICS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bg-navy .stat-number { color: var(--accent-light); }
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.bg-navy .stat-label { color: rgba(255,255,255,0.7); }

/* === TEAM SECTION === */
.team-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-member {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-member:hover img { transform: scale(1.05); }
.team-member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(15,26,48,0.9), transparent);
  color: var(--white);
}
.team-member-info h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.15rem; }
.team-member-info p { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin: 0; }

/* === TESTIMONIALS === */
.testimonials-section { overflow: hidden; }
.testimonials-section h2 { margin-bottom: 2rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(15,26,48,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}
.testimonial-stars {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #f2a100;
  margin-bottom: 0.65rem;
}
.testimonial-card p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.testimonial-author {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-transform: uppercase;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* === CONTACT FORM === */
.feedback-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.feedback-form-container h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.quote-form-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
  text-align: center;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form .form-group { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1rem;
}
.contact-form .form-submit { text-align: right; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}
.submit-btn:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
#form-success p {
  padding: 1.5rem;
  background: #e8f5e9;
  border-radius: var(--radius-md);
  color: #2e7d32;
  font-weight: 500;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3,
.footer-brand .footer-brand-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-col h4,
.footer-col .footer-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  padding: 0.9rem 1.8rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,39,68,0.35);
  transition: all var(--transition);
}
.sticky-quote-btn:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(26,39,68,0.4); }

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-primary);
  transition: background var(--transition);
}
.modal-close:hover { background: var(--mid-gray); }

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--mid-gray);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  padding: 0.5rem 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding-top: 0.75rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-secondary); }

/* === SERVICE AREA GRID === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.area-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.area-card-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.area-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.area-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* === GOOGLE MAP === */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--navy);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* === FEATURE COLUMNS === */
.feature-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature-col {
  text-align: center;
  padding: 2rem 1.5rem;
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.bg-navy .feature-icon { background: rgba(255,255,255,0.08); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .header-nav, .header-contact { display: none; }
  .burger-toggle { display: flex; }
  .header-brand {
    max-width: calc(100% - 48px);
    font-size: 1rem;
  }
  .split-image img { min-height: 320px; }
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-section.reverse { direction: ltr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-showcase { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .container,
  .container-wide,
  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header-inner {
    min-height: 72px;
    height: auto;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
  .header-brand {
    white-space: normal;
    font-size: clamp(0.76rem, 3.1vw, 0.92rem);
    line-height: 1.25;
    max-width: calc(100% - 44px);
  }
  .breadcrumbs { line-height: 1.5; }
  .split-image img { min-height: 260px; }
  .feedback-form-container { padding: 1.5rem; }
  .modal-content { padding: 1.5rem; }
  .service-feature-card { padding: 1.35rem; }
  .feature-col,
  .process-step,
  .area-card { padding: 1.25rem; }
  .contact-form .form-submit { text-align: initial; }
  .contact-form .form-submit .submit-btn { width: 100%; }
  .hero { min-height: 70vh; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .page-hero { padding: 4rem 0 3rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-showcase { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .sticky-quote-btn {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
  }
  .sticky-quote-btn:hover { transform: translateX(-50%) translateY(-2px); }
}

@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .section { padding: 3rem 0; }
  .section-lg { padding: 3.5rem 0; }
  .lead { font-size: 1.02rem; }
  .breadcrumbs { font-size: 0.78rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .team-showcase { grid-template-columns: 1fr; }
  .service-feature-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.1rem;
  }
  .faq-question {
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .trust-badges { gap: 0.75rem; }
  .trust-badge { width: 100%; }
  .sticky-quote-btn {
    width: calc(100% - 2rem);
    padding: 0.85rem 1rem;
  }
  .modal-content { padding: 1.25rem; }
}

/* === UTILITY === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* === ANIMATIONS === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease; }
.fade-in-up { animation: fadeInUp 0.6s ease; }

/* === INTERIOR PAGE SPECIFIC === */
.content-block { margin-bottom: 2.5rem; }
.content-block h2 { margin-bottom: 1rem; }
.content-block h3 { margin-bottom: 0.75rem; }
.content-block p { margin-bottom: 1rem; }
.content-block ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.content-block ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* === ALTERNATING SHOWCASE === */
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
.showcase-item:nth-child(even) { direction: rtl; }
.showcase-item:nth-child(even) > * { direction: ltr; }
.showcase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.showcase-img img { width: 100%; height: 350px; object-fit: cover; }
.showcase-text h3 { margin-bottom: 0.75rem; }
.showcase-text p { margin-bottom: 1rem; }

@media (max-width: 1024px) {
  .showcase-item { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-item:nth-child(even) { direction: ltr; }
}

/* === INLINE FORM SECTION === */
.form-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-section-split h2 { margin-bottom: 1rem; }
@media (max-width: 1024px) {
  .form-section-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* === SERVICES FEATURE GRID === */
.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.service-feature-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.service-feature-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.service-feature-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.service-feature-card p { font-size: 0.9rem; margin: 0; }

@media (max-width: 768px) {
  .services-feature-grid { grid-template-columns: 1fr; }
}
