/* ============================================
   Aman Turna Insurance — Site Stylesheet
   Brand colors:
   Deep Green #083322   Charcoal #1F1F1F
   White      #FFFFFF   Pale Lavender #F2EDFF
   Coral      #FC7D65 (accent)
   ============================================ */

:root {
  --sage: #083322;
  --sage-dark: #06281B;
  --sage-tint: #DEE4E2;
  --charcoal: #1F1F1F;
  --white: #FFFFFF;
  --beige: #F2EDFF;
  --magenta: #FC7D65;
  --magenta-dark: #C6624F;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-title: Georgia, "Times New Roman", serif;

  --max-width: 1200px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(31, 31, 31, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75em;
}

section { padding: 88px 0; }

@media (max-width: 700px) {
  section { padding: 56px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--magenta);
  color: var(--white);
}
.btn-primary:hover { background: var(--magenta-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--sage-dark); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); }

.btn-outline-charcoal {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-charcoal:hover { background: var(--charcoal); color: var(--white); }

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-wrap {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { font-weight: 300; opacity: 0.9; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--white); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-wrap { padding: 12px 16px; gap: 10px; flex-wrap: nowrap; }
  .hamburger { display: flex; order: -1; flex-shrink: 0; }
  .logo {
    font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 400;
    background: var(--charcoal);
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    padding: 0 24px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s linear 0.3s;
  }
  .site-header.nav-open .nav-links {
    max-height: 400px;
    padding: 8px 24px 20px;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links a { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .nav-cta { flex-shrink: 0; }
  .nav-cta .btn { padding: 9px 16px; font-size: 0.78rem; }
}

@media (max-width: 380px) {
  .nav-wrap { padding: 10px 12px; gap: 8px; }
  .logo { font-size: 0.85rem; }
  .nav-cta .btn { padding: 8px 12px; font-size: 0.72rem; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.hero-media {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,51,34,0.88) 0%, rgba(31,31,31,0.55) 55%, rgba(31,31,31,0.35) 100%);
}
.hero-media .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 860px;
  padding: 90px 0;
}
.hero-content .eyebrow { color: var(--beige); }
.hero h1 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  white-space: normal;
  color: var(--white);
  margin-bottom: 0.45em;
}
.hero h1 br { display: block; content: ""; }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: 2em;
}
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 2.5em; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
}
.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .hero-media { min-height: 0; }
  .hero-content { padding: 56px 0; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero p.lead { font-size: 1rem; margin-bottom: 1.6em; }
  .hero-ctas { gap: 14px; margin-bottom: 2em; }
  .hero-ctas .btn { padding: 12px 24px; font-size: 0.9rem; }
  .hero-stats { gap: 32px; row-gap: 18px; }
  .hero-stats .stat-num { font-size: 1.4rem; }
  .hero-stats .stat-label { font-size: 0.72rem; }
}

/* ============================================
   Legal Content (Privacy Policy / Disclaimer)
   ============================================ */
.legal-section { background: var(--white); }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-top: 2em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-top: 1.6em;
}
.legal-content p {
  color: #3a3d3d;
  margin-bottom: 1em;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 1.2em;
}
.legal-content li {
  color: #3a3d3d;
  margin-bottom: 0.5em;
}
.legal-content a { text-decoration: underline; color: var(--magenta); }

/* ============================================
   Contact Hero (solid) + Info Tiles
   ============================================ */
.contact-hero {
  background: var(--sage);
  padding: 72px 0;
  text-align: center;
}
.contact-hero .eyebrow { color: var(--beige); }
.contact-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.contact-hero p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .contact-hero { padding: 52px 0; }
}

.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-tile {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.contact-tile:hover {
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08), 0 0 28px rgba(252, 125, 101, 0.35);
  transform: translateY(-3px);
}
.contact-tile-static:hover {
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08), 0 0 28px rgba(8, 51, 34, 0.3);
}
.contact-tile h3 {
  font-size: 1.02rem;
  color: var(--magenta);
  margin-bottom: 6px;
}
.contact-tile p {
  font-size: 0.92rem;
  color: #3a3d3d;
  margin: 0;
}

.contact-social-row {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--sage-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.contact-social-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.contact-social-icons { display: flex; gap: 14px; }
.contact-social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-family: var(--font-head);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-social-icons a:hover { background: var(--sage); color: var(--white); }

/* ============================================
   FAQ Hero (solid)
   ============================================ */
.faq-hero {
  background: var(--sage);
  padding: 72px 0;
  text-align: center;
}
.faq-hero .eyebrow { color: var(--beige); }
.faq-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.faq-hero p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .faq-hero { padding: 52px 0; }
}

/* ============================================
   FAQ List (accordion tiles)
   ============================================ */
.faq-section { background: var(--white); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-tile {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px 26px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.faq-tile:hover {
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08), 0 0 28px rgba(252, 125, 101, 0.35);
  transform: translateY(-3px);
}
.faq-tile summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}
.faq-tile summary::-webkit-details-marker { display: none; }
.faq-tile summary::marker { content: ""; }
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-tile[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--magenta);
  color: var(--white);
}
.faq-answer { padding: 0 0 24px; }
.faq-answer p {
  margin: 0;
  color: #3a3d3d;
  font-size: 0.95rem;
  max-width: 700px;
}
@media (max-width: 600px) {
  .faq-tile { padding: 4px 18px; }
  .faq-tile summary { font-size: 0.94rem; gap: 12px; }
}

/* ============================================
   Services Hero
   ============================================ */
.services-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.services-hero-media {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: var(--white);
}
.services-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/review.jpg");
  background-size: cover;
  background-position: center;
}
.services-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,51,34,0.92) 0%, rgba(31,31,31,0.76) 55%, rgba(31,31,31,0.6) 100%);
}
.services-hero-media .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.services-hero-content {
  max-width: 760px;
  padding: 70px 0;
}
.services-hero-content .eyebrow { color: var(--beige); }
.services-hero-content h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.5em;
}
.services-hero-content p.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0;
}
@media (max-width: 700px) {
  .services-hero-media { min-height: 0; }
  .services-hero-content { padding: 52px 0; }
  .services-hero-content h1 { font-size: clamp(1.7rem, 7vw, 2.1rem); }
  .services-hero-content p.lead { font-size: 0.98rem; }
}

/* ============================================
   Service Groups (Commercial / Personal)
   ============================================ */
.service-group-commercial { background: var(--white); }
.service-group-personal { background: var(--beige); }

.service-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-tiles-grid-personal { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
  .service-tiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-tiles-grid,
  .service-tiles-grid-personal { grid-template-columns: 1fr; }
}

.service-tile-sm {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-tile-sm:hover {
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08), 0 0 28px rgba(252, 125, 101, 0.35);
  transform: translateY(-3px);
}
.service-group-personal .service-tile-sm { background: var(--white); }
.tile-icon-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-tint);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.service-tile-sm h3 {
  font-size: 1.05rem;
  color: var(--magenta);
  margin-bottom: 8px;
}
.service-tile-sm p {
  font-size: 0.9rem;
  color: #3a3d3d;
  margin: 0;
}

.industry-focus {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.industry-focus-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.industry-focus-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.bundle-callout {
  margin-top: 40px;
  background: var(--sage);
  border-radius: var(--radius);
  padding: 30px 32px;
  color: var(--white);
}
.bundle-callout h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.bundle-callout p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
}

.service-group-personal .services-cta { margin-top: 48px; }

/* ============================================
   About Hero / Image Carousel
   ============================================ */
.about-hero {
  background: var(--white);
  padding-bottom: 56px;
}
.about-hero .section-head { margin-bottom: 0; }

.about-carousel-wrap {
  overflow: hidden;
  margin-top: 48px;
}
.about-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 42s linear infinite;
}
.about-carousel-track .carousel-item {
  position: relative;
  width: 360px;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-carousel-track .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 51, 34, 0.22);
}
@media (max-width: 700px) {
  .about-carousel-track .carousel-item { width: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-carousel-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ============================================
   Meet Your Broker
   ============================================ */
.broker-section {
  background: var(--beige);
}
.broker-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .broker-grid { grid-template-columns: 1fr; gap: 40px; }
}

.broker-photo-frame {
  position: relative;
  padding: 18px 18px 18px 0;
}
.broker-photo-frame::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: -18px;
  bottom: -18px;
  border: 3px solid var(--magenta);
  border-radius: var(--radius);
  z-index: 0;
}
.broker-photo-frame img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.broker-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.broker-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}
.credential-pill {
  background: var(--sage-tint);
  color: var(--sage-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.broker-copy p { color: #3a3d3d; max-width: 640px; }
.broker-stat {
  margin: 10px 0 24px;
  font-family: var(--font-head);
}
.broker-stat strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--magenta);
}
.broker-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   Why Work With Aman
   ============================================ */
.why-section { background: var(--white); }
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { color: #4b4e4e; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-tile {
  background: var(--sage-tint);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 4px solid var(--sage);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.why-tile:hover {
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08), 0 0 28px rgba(252, 125, 101, 0.35);
  transform: translateY(-3px);
}
.why-tile .tile-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--sage);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.why-tile h3 { font-size: 1.1rem; }
.why-tile p { color: #3a3d3d; font-size: 0.95rem; margin: 0; }

/* Carrier carousel banner */
.carrier-banner {
  background: var(--magenta);
  margin-top: 64px;
  padding: 40px 0;
  overflow: hidden;
}
.carrier-banner .section-head { margin-bottom: 26px; }
.carrier-banner .section-head h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.carrier-track-wrap { overflow: hidden; }
.carrier-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}
.carrier-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carrier-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   Services teaser
   ============================================ */
.services-section { background: var(--beige); }
.services-section .section-head { max-width: 1000px; }
.services-section .section-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 780px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-tile:hover {
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08), 0 0 28px rgba(252, 125, 101, 0.35);
  transform: translateY(-3px);
}
.service-tile h3 {
  font-size: 1.3rem;
  color: var(--magenta);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-tile .tile-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  font-size: 1.1rem;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 20px 0 8px;
}
.service-list li {
  font-size: 0.92rem;
  color: #3a3d3d;
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.services-cta { text-align: center; margin-top: 40px; }
.services-cta p { color: #4b4e4e; margin-bottom: 18px; }

/* ============================================
   Get Quote / Reviews
   ============================================ */
.quote-section {
  background: var(--white);
}
.quote-panel {
  background: var(--sage);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08) 0, transparent 45%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 2px, transparent 2px, transparent 14px);
  border-radius: 18px;
  padding: 64px 48px;
  color: var(--white);
  text-align: center;
}
@media (max-width: 600px) {
  .quote-panel { padding: 48px 24px; }
}
.quote-panel .eyebrow { color: var(--beige); }
.quote-panel h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.quote-panel p.lead {
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0 auto 30px;
}
.quote-panel .btn-primary { background: var(--white); color: var(--sage-dark); }
.quote-panel .btn-primary:hover { background: var(--beige); }

.trust-row {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stars { color: #FFD166; font-size: 1.2rem; letter-spacing: 2px; }
.trust-row a { text-decoration: underline; font-size: 0.92rem; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
.footer-brand .logo { display: block; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.85); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 10px;
  opacity: 0.95;
}
.footer-col a:hover { text-decoration: underline; }
.footer-socials { display: flex; gap: 14px; margin-top: 6px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.footer-socials a:hover { background: rgba(255,255,255,0.15); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.footer-bottom a { text-decoration: underline; }
