/* ============================================================
   Ellen Wallpaper Houston — Main Stylesheet
   Color Palette:
     Primary BG:      #0A2540 (deep navy)
     Secondary BG:    #1E3A5F (steel blue)
     Light sections:  #F7F9FC (soft white)
     Text on dark:    #FFFFFF
     Text on light:   #1A2B3C
     Accent:          #2E6CF6 (strong blue)
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #F7F9FC;
  color: #1A2B3C;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #2E6CF6; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.25;
  color: inherit;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  line-height: 1;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: #2E6CF6;
  color: #fff;
  box-shadow: 0 4px 14px rgba(46,108,246,0.35);
}
.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  text-decoration: none;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #0A2540;
  text-decoration: none;
}
.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  min-height: 44px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0A2540;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-top {
  background: #061829;
  padding: 0.35rem 0;
  font-size: 0.85rem;
}
.header-top .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: center;
}
.header-top a {
  color: #a8c4e0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-top a:hover { color: #fff; text-decoration: none; }
.header-top .icon-sm {
  width: 14px; height: 14px; fill: currentColor;
}

.header-main {
  padding: 0.75rem 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.site-logo .logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.site-logo .logo-sub {
  font-size: 0.72rem;
  color: #a8c4e0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav > li {
  position: relative;
}
.site-nav > li > a,
.site-nav > li > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  color: #d0e4f7;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.site-nav > li > a:hover,
.site-nav > li > button:hover,
.site-nav > li.active > a {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

/* Dropdown arrow */
.nav-arrow {
  width: 10px; height: 10px;
  fill: currentColor;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.site-nav > li.open > button .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #0d2e4e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
.site-nav > li.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.site-nav > li.open .dropdown-menu li:nth-child(1)  { transition-delay: 0.04s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(2)  { transition-delay: 0.08s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(3)  { transition-delay: 0.12s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(4)  { transition-delay: 0.16s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(5)  { transition-delay: 0.20s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(6)  { transition-delay: 0.24s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(7)  { transition-delay: 0.28s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(8)  { transition-delay: 0.32s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(9)  { transition-delay: 0.36s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(10) { transition-delay: 0.40s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(11) { transition-delay: 0.44s; opacity:1; transform:none; }
.site-nav > li.open .dropdown-menu li:nth-child(12) { transition-delay: 0.48s; opacity:1; transform:none; }

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: #c8ddf0;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: rgba(46,108,246,0.2);
  color: #fff;
  text-decoration: none;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 55%;
  max-width: 320px;
  height: 100%;
  background: #0A2540;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.mobile-nav-header .logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-close-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-close-btn svg { width: 22px; height: 22px; fill: currentColor; }

.mobile-nav-links {
  list-style: none;
  padding: 0.75rem 0;
  flex: 1;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-links > li > a,
.mobile-nav-links > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  color: #d0e4f7;
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > button:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.mobile-nav-links .mobile-submenu {
  list-style: none;
  background: rgba(0,0,0,0.2);
  display: none;
}
.mobile-nav-links .mobile-submenu.open { display: block; }
.mobile-nav-links .mobile-submenu a {
  display: block;
  padding: 0.65rem 1.25rem 0.65rem 2rem;
  color: #a8c4e0;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-links .mobile-submenu a:hover {
  background: rgba(46,108,246,0.15);
  color: #fff;
}

.mobile-nav-contact {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a8c4e0;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.mobile-nav-contact a:hover { color: #fff; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A2540;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(30,58,95,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 4rem;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { color: #fff; }
.hero-text .badge {
  display: inline-block;
  background: rgba(46,108,246,0.25);
  border: 1px solid rgba(46,108,246,0.5);
  color: #7ab3f7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.hero-text h1 { color: #fff; margin-bottom: 1rem; }
.hero-text p  { color: #c0d8f0; font-size: 1.1rem; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
}

/* ---------- SECTIONS ---------- */
.section { padding: 5rem 0; }
.section-light { background: #F7F9FC; }
.section-dark  { background: #0A2540; color: #fff; }
.section-mid   { background: #1E3A5F; color: #fff; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  color: #2E6CF6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-dark .section-header h2,
.section-mid  .section-header h2 { color: #fff; }
.section-dark .section-header p,
.section-mid  .section-header p  { color: #a8c4e0; }

/* ---------- CARDS ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 1.4rem; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #0A2540; }
.card-body p  { font-size: 0.92rem; color: #4a6070; margin-bottom: 1rem; }

/* Dark card variant */
.card-dark {
  background: #0d2e4e;
  color: #fff;
}
.card-dark .card-body h3 { color: #fff; }
.card-dark .card-body p  { color: #a8c4e0; }

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #0d2e4e;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #2E6CF6;
}
.service-card .svc-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: rgba(46,108,246,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .svc-icon svg {
  width: 28px; height: 28px; fill: #2E6CF6;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.88rem; color: #a8c4e0; margin-bottom: 1.2rem; }
.service-card a  { color: #7ab3f7; font-size: 0.88rem; font-weight: 600; }
.service-card a:hover { color: #fff; }

/* ---------- LOCATIONS GRID ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.location-card {
  background: #0d2e4e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #c8ddf0;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.location-card:hover {
  background: rgba(46,108,246,0.15);
  border-color: #2E6CF6;
  color: #fff;
  text-decoration: none;
}
.location-card svg {
  width: 16px; height: 16px; fill: #2E6CF6; flex-shrink: 0;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: #1E3A5F;
  padding: 1.5rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #c8ddf0;
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; fill: #2E6CF6; flex-shrink: 0; }

/* ---------- STATS ROW ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2E6CF6;
  font-family: 'Playfair Display', Georgia, serif;
}
.stat-item .stat-label {
  font-size: 0.88rem;
  color: #a8c4e0;
  margin-top: 0.25rem;
}

/* ---------- PROCESS STEPS ---------- */
.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.steps-list li {
  counter-increment: step;
  background: #0d2e4e;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
}
.steps-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #2E6CF6;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.steps-list li h3 { font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.steps-list li p  { font-size: 0.87rem; color: #a8c4e0; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: #0d2e4e;
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.testimonial-card .stars {
  color: #f5c518;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.93rem;
  color: #c8ddf0;
  font-style: italic;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}
.testimonial-card .reviewer {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7ab3f7;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.section-light .faq-item { border-bottom-color: #dde5ef; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
  gap: 1rem;
}
.faq-question .faq-icon {
  width: 20px; height: 20px; fill: #2E6CF6; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.93rem;
  color: #a8c4e0;
}
.section-light .faq-answer { color: #4a6070; }
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1rem;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1E3A5F 0%, #0A2540 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  margin: 3rem 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p  { color: #a8c4e0; margin-bottom: 1.5rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- MAP ---------- */
.map-section { padding: 4rem 0; }
.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  height: 420px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(46,108,246,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .ci-icon svg { width: 22px; height: 22px; fill: #2E6CF6; }
.contact-info-item .ci-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #2E6CF6; margin-bottom: 0.2rem; }
.contact-info-item .ci-text a, .contact-info-item .ci-text span { color: #1A2B3C; font-size: 0.95rem; }

/* ---------- FORM STYLES ---------- */
.feedback-form-container {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.feedback-form-container h3 {
  font-size: 1.3rem;
  color: #0A2540;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #dde5ef;
  border-radius: 8px;
  font-size: 0.93rem;
  color: #1A2B3C;
  background: #F7F9FC;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2E6CF6;
  box-shadow: 0 0 0 3px rgba(46,108,246,0.12);
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 1rem;
}
.contact-form .form-submit { text-align: center; }
.submit-btn {
  background: #2E6CF6;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  min-height: 56px;
  width: 100%;
}
.submit-btn:hover { transform: scale(1.02); filter: brightness(1.1); }
#form-success {
  text-align: center;
  padding: 2rem;
  color: #0A2540;
}
#form-success p {
  font-size: 1rem;
  color: #2E6CF6;
  font-weight: 500;
}

/* Dark form (hero) */
.hero-form-card .feedback-form-container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.hero-form-card .feedback-form-container h3 { color: #fff; }
.hero-form-card .contact-form input,
.hero-form-card .contact-form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.hero-form-card .contact-form input::placeholder,
.hero-form-card .contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.hero-form-card .contact-form input:focus,
.hero-form-card .contact-form textarea:focus {
  border-color: #2E6CF6;
  background: rgba(255,255,255,0.12);
}
.hero-form-card #form-success p { color: #7ab3f7; }

/* ---------- MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #4a6070;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.modal-close:hover { background: #f0f4f8; }
.modal-close svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- STICKY QUOTE BUTTON ---------- */
.sticky-quote-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  background: #2E6CF6;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(46,108,246,0.45);
  transition: transform 0.2s, filter 0.2s;
  white-space: nowrap;
}
.sticky-quote-btn:hover { transform: scale(1.05); filter: brightness(1.1); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
  padding: 4rem 0 3rem;
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p  { color: #a8c4e0; font-size: 1.05rem; max-width: 680px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #7ab3f7;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: #7ab3f7; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #a8c4e0; }

/* ---------- CONTENT PAGE ---------- */
.content-section { padding: 4rem 0; }
.content-section h2 { color: #0A2540; margin: 2rem 0 0.75rem; }
.content-section h3 { color: #1E3A5F; margin: 1.5rem 0 0.5rem; }
.content-section ul, .content-section ol { margin-bottom: 1rem; }
.content-section li { margin-bottom: 0.4rem; }

/* ---------- ABOUT PAGE ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #061829;
  color: #a8c4e0;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-brand .footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a8c4e0;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer-brand .footer-contact a:hover { color: #fff; }
.footer-brand .footer-contact svg { width: 16px; height: 16px; fill: #2E6CF6; flex-shrink: 0; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: #a8c4e0;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: #7ab3f7; }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .header-top .container { justify-content: center; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 0; }
  .hero-text h1 { font-size: 1.9rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-quote-btn {
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
  }
  .sticky-quote-btn:hover { transform: translateX(50%) scale(1.05); }
  .steps-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .trust-bar .container { gap: 1rem; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease both; }
