/* ============================================================
   Psychology Theme — Main Stylesheet
   Bootstrap 5 base + custom design system
   ============================================================ */

/* ------------------------------------------------------------------ */
/*  CSS Variables                                                       */
/* ------------------------------------------------------------------ */
:root {
  --primary:        #4a6d8c;
  --primary-light:  #5e83a3;
  --primary-soft:   #eaf3f7;
  --accent:         #6eaac8;
  --gold:           #b89fd4;
  --gold-hover:     #cbb5e6;
  --cream:          #f5f0fa;
  --white:          #ffffff;
  --text-dark:      #0a0f2e;
  --text-muted:     #5a6380;
  --border:         #e2e6f0;
  --footer-bg:      #2c4a61;
  --txt-white:      #fff;
	
  --font-main:      'Google Sans', sans-serif;
}

/* ------------------------------------------------------------------ */
/*  Base Reset & Typography                                             */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 700;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ------------------------------------------------------------------ */
/*  Scroll Animations                                                   */
/* ------------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible    { opacity: 1; transform: translateY(0); }
.fade-up-delay-1    { transition-delay: 0.1s; }
.fade-up-delay-2    { transition-delay: 0.2s; }
.fade-up-delay-3    { transition-delay: 0.3s; }
.fade-up-delay-4    { transition-delay: 0.4s; }

/* ------------------------------------------------------------------ */
/*  Layout                                                              */
/* ------------------------------------------------------------------ */
section { padding: 100px 0; }
section.service-hero {
    background: linear-gradient(135deg, #cecbd1 0%, #ededed 50%, #c2c1c3 100%);
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------------------------ */
/*  Eyebrow & Section Titles                                            */
/* ------------------------------------------------------------------ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold);
}
.eyebrow-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ------------------------------------------------------------------ */
/*  Buttons                                                             */
/* ------------------------------------------------------------------ */
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--txt-white);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,130,185,0.35);
}
.btn-outline-white {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  color: white;
}
.btn-gold-lg {
  display: inline-block;
  padding: 18px 52px;
  background: var(--gold);
  color: var(--txt-white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.btn-gold-lg:hover {
  background: var(--gold-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(155,130,185,0.5);
}

/* ------------------------------------------------------------------ */
/*  1. NAVBAR                                                           */
/* ------------------------------------------------------------------ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(74,109,140,0.08);
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(74,109,140,0.14);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand svg { color: var(--primary); }
.nav-brand-text .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.nav-brand-text .role {
  font-size: 11px;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-hover);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Mega Menu */
.nav-item-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(74,109,140,0.14);
  min-width: 520px;
  padding: 20px;
  z-index: 100;
  display: none;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega .nav-link[aria-expanded="true"] ~ .mega-menu {
  display: block;
}
.mega-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega-item {
  display: block;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mega-item:hover { background: var(--primary-soft); }
.mega-item .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.mega-item .sub {
  font-size: 12px;
  color: var(--text-muted);
}
.mega-footer {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 12px;
  text-align: center;
}
.mega-footer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.mega-footer-link:hover { color: var(--primary); }

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ------------------------------------------------------------------ */
/*  2. HERO                                                             */
/* ------------------------------------------------------------------ */
#hero {
  background: linear-gradient(135deg, #b27ee3 0%, #1a4b9f 50%, var(--wp--preset--color--vivid-purple) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,170,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  max-width: 520px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  min-width: 160px;
}
.trust-item.last { border-right: none; }
.trust-check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.hero-image-col { flex: 0 0 480px; max-width: 480px; }
.hero-image-wrap { position: relative; }
.hero-slider {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 560px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255,255,255,0.15);
}
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hero-dot.active {
  background: white;
  transform: scale(1.3);
}
.hero-image-badge,
.hero-image-badge2 {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(74,109,140,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-image-badge {
  bottom: -16px;
  left: -24px;
}
.hero-image-badge2 {
  top: 24px;
  right: -16px;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 18px;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-text .num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.hero-badge-text .label {
  font-size: 12px;
  color: var(--text-muted);
}
.hero-badge-stars {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

/* ------------------------------------------------------------------ */
/*  3. USPs                                                             */
/* ------------------------------------------------------------------ */
#usps { background: var(--cream); }
.usps-header { text-align: center; margin-bottom: 52px; }
.usps-header .section-sub { margin: 0 auto; }
.usp-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,109,140,0.1);
}
.usp-icon {
  width: 44px; height: 44px;
  margin-bottom: 20px;
  color: var(--accent);
}
.usp-card h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 10px;
}
.usp-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ------------------------------------------------------------------ */
/*  4. SERVICES                                                         */
/* ------------------------------------------------------------------ */
#services { background: white; }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-sub { margin: 0 auto; }
.service-card {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,109,140,0.1);
}
.service-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 16px;
  color: var(--primary);
  margin: 0;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.service-card:hover .service-link { gap: 8px; color: var(--primary); }

/* ------------------------------------------------------------------ */
/*  5. TESTIMONIALS                                                     */
/* ------------------------------------------------------------------ */
#testimonials {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,170,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header h2 { color: white; }
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 15px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.testimonial-divider {
  height: 1px;
  background: var(--border);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.author-role { font-size: 13px; color: var(--text-muted); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}
.g-icon {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 25% 50%, #FBBC04 50% 75%, #34A853 75%);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/*  6. FAQ                                                              */
/* ------------------------------------------------------------------ */
#faq { background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
  padding-left: 12px;
}
.faq-item.show,
.faq-item:has(.accordion-button:not(.collapsed)) {
  border-left-color: var(--gold);
}
.faq-question.accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  padding: 20px 0 20px 4px;
  box-shadow: none;
  border: none;
}
.faq-question.accordion-button:not(.collapsed) { color: var(--primary); }
.faq-question.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a6d8c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-item { border: none; border-bottom: 1px solid var(--border); background: transparent; }
.accordion-item:last-child { border-bottom: none; }
.faq-answer-inner {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 4px 20px;
}

/* ------------------------------------------------------------------ */
/*  7. CONTACT                                                          */
/* ------------------------------------------------------------------ */
#contact { background: white; }
.contact-header { text-align: center; margin-bottom: 52px; }
.contact-info h3 { font-size: 22px; color: var(--primary); margin-bottom: 24px; }
.contact-address {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--txt-white);
  border-radius: 50px;
  margin-bottom: 28px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-maps:hover {
  background: var(--gold-hover);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(155,130,185,0.4);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.contact-detail-icon { font-size: 18px; width: 24px; flex-shrink: 0; }
.contact-detail a { color: var(--text-dark); transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent); }
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(74,109,140,0.1);
}

/* ------------------------------------------------------------------ */
/*  8. CTA BAND                                                         */
/* ------------------------------------------------------------------ */
#cta-band {
  background: var(--primary);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(110,170,200,0.1) 0%, transparent 70%);
  pointer-events: none;
}
#cta-band h2 {
  font-size: clamp(26px, 4vw, 42px);
  color: white;
  margin-bottom: 16px;
  position: relative;
}
#cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  position: relative;
}

/* ------------------------------------------------------------------ */
/*  9. FOOTER                                                           */
/* ------------------------------------------------------------------ */
footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--gold);
  padding: 64px 24px 0;
}
.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .name { font-size: 16px; font-weight: 700; color: white; }
.footer-logo .role { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin: 0;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(155,130,185,0.08);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item .fi { flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 16px; }

/* ------------------------------------------------------------------ */
/*  CONTACT MODAL                                                       */
/* ------------------------------------------------------------------ */
.modal-box { border-radius: 24px; padding: 40px; border: none; }
.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(110,170,200,0.12);
  background: white;
}
.form-group textarea { height: 80px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--primary-soft); color: var(--primary); }

/* ------------------------------------------------------------------ */
/*  RESPONSIVE                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 991.98px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px 40px;
    text-align: center;
  }
  .hero-image-col { flex: none; max-width: 360px; width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-trust { max-width: 100%; justify-content: center; }
  .trust-item { min-width: 0; justify-content: center; }
  .hero-image-badge { left: -8px; }
  .hero-image-badge2 { right: -8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-menu { left: 0; transform: none; min-width: 320px; }
}
@media (max-width: 767.98px) {
    div#navbarMain {
    background: white;
    border-radius: 0 0 20px 10px;
    align-items: center;
    justify-content: center;
}
   div#navbarMain.a.nav-cta.ms-lg-3 {
    margin: auto;
    display: block;
    text-align: center;
    max-width: 200px;
}
  section { padding: 64px 0; }
  .hero-h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-address { font-size: 15px; }
  .btn-gold-lg { font-size: 16px; padding: 14px 36px; }
}
@media (max-width: 575.98px) {
  .hero-inner { padding: 48px 16px 32px; }
  .nav-inner { padding: 0 16px; }
  .hero-image-badge,
  .hero-image-badge2 { display: none; }
}
