/* ============================================
   GMK Global Stylesheet (root tokens + utilities)
   ============================================ */

:root {
  /* ---- Brand Colors ---- */
  --bronze-gold: #c9914d;
  --bronze-dark: #d4a056;
  --bronze-tint: rgba(201, 145, 77, 0.1);

  --deep-black: #1a1a1a;
  --charcoal-gray: #2a2a2a;
  --off-white: #f5f5f5;
  --pure-white: #ffffff;

  /* ---- Typography ---- */
  --font-heading: "Montserrat", "Poppins", "Inter", sans-serif;
  --font-body: "Inter", "Open Sans", system-ui, sans-serif;

  --fs-display: 48px;
  --fs-h1: 36px;
  --fs-h2: 26px;
  --fs-accent: 21px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-small: 14px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-heading: 1.2;
  --lh-body: 1.8;
  --lh-small: 1.6;

  /* ---- Layout ---- */
  --container: 1600px;
  --section-container: 1400px;
  --radius: 10px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* ---- Spacing ---- */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;

  --underline-width: 140px;
  --underline-height: 4px;
  --underline-radius: 6px;

  --card-padding: 40px;
}

/* ===== Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--deep-black);
  background: var(--pure-white);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}

/* ===== Typography helpers ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  color: var(--deep-black);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
}

h3 {
  font-size: var(--fs-accent);
  font-weight: var(--fw-semibold);
  color: var(--bronze-gold);
}

p {
  font-size: var(--fs-body-lg);
  color: var(--deep-black);
  margin-bottom: var(--space-sm);
}

small {
  font-size: var(--fs-small);
  color: var(--text-light);
}

/* Accent */
.accent-text {
  color: var(--bronze-gold);
  font-weight: var(--fw-semibold);
}

/* ===== Container utility ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section-container {
  max-width: var(--section-container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
/* ===== Buttons (global) ===== */
button,
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
}

.btn-primary {
  background: var(--bronze-gold);
  color: var(--pure-white);
}

.btn-primary:hover {
  background: var(--bronze-dark);
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.bg-light {
  background: var(--off-white);
}

.shadow {
  box-shadow: var(--shadow);
}

/* ===== Icon defaults ===== */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-white {
  color: var(--pure-white);
}

.section-underline {
  width: var(--underline-width);
  height: var(--underline-height);
  border-radius: var(--underline-radius);
  background: linear-gradient(180deg, var(--bronze-gold), var(--bronze-dark));
  margin: 14px auto;
  box-shadow: 0 3px 6px rgba(201, 145, 77, 0.18);
}

/* Animation effect */
.scroll-trigger {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-trigger--offscreen {
  opacity: 0;
  transform: translateY(40px); /* થોડું નીચે થી slide */
}

/* ============================================
   Header-specific styles (no inline CSS)
   ============================================ */

/* Top contact bar (desktop stacked left/right) */
.top-bar {
  background: var(--bronze-gold);
  color: var(--pure-white);
  font-size: 14px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.top-bar .top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 12px;
}

/* contact info */
.contact-info {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: var(--fw-medium);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pure-white);
  text-decoration: none;
  font-size: 15px;
}

/* social area (right) */
.social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social a {
  color: var(--pure-white);
  display: inline-flex;
  align-items: center;
}

/* Main header */
.site-header {
  background: var(--pure-white);
  box-shadow: var(--shadow);
  /* position: sticky; */
  top: 0;
  /* z-index: 120; */
}

.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* header inner row */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
  min-height: auto;
}

/* logo area */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  transform: translateY(7px);
}

.site-title {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 20px;
  color: var(--deep-black);
}

/* nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--deep-black);
  padding: 0 4px;
  display: inline-block;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--bronze-gold);
}

.contact-info .contact-link .contact-text {
  font-size: var(--fs-body);
}

/* cta */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn {
  padding: 6px 18px;
  font-size: 14px;
}

/* hamburger (hidden desktop) */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
}

.hamburger-btn .icon {
  width: 22px;
  height: 22px;
  color: var(--deep-black);
}

/* mobile nav panel (hidden by default) */
.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc((var(--space-xl) * 0) + 120px);
  /* fallback positioning */
  background: var(--pure-white);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  z-index: 110;
  padding: 12px 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 8px var(--space-md);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 12px;
  font-size: 16px;
  color: var(--deep-black);
  background: transparent;
  text-decoration: none;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: var(--bronze-tint);
  color: var(--bronze-dark);
}

/* when mobile nav is open */
.mobile-nav.open {
  display: block;
}

/* responsive: mobile layout adjustments */
@media (max-width: 900px) {
  /* center contact info on mobile like the screenshot */
  .top-bar .top-inner {
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
  }

  .contact-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social {
    order: 3;
  }

  /* keep socials below */

  /* header row: logo left, hamburger right */
  .header-inner {
    padding: 10px 20px;
  }

  .main-nav {
    display: none;
  }

  .hamburger-btn {
    display: inline-flex;
  }

  .logo-img {
    height: 70px;
    padding: 0;
  }

  .site-title {
    font-size: 18px;
  }

  /* position mobile nav below header; ensure top spacing */
  .mobile-nav {
    top: calc((48px) + (21px));
    /* approx header sizes */
  }

  .header-cta {
    display: none;
  }

  .contact_email {
    display: none;
  }

  .header-right {
    display: none !important;
  }
}

/* =========================
   Hero layout
   ========================= */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--pure-white);
  overflow: hidden;
}

/* Background Image */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assests/hero-section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8);
  z-index: 0;
}

/* Dark overlay for text contrast */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(10 10 10 / 33%) 20%,
    rgb(10 10 10 / 35%) 80%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: start;
  /* padding: 70px 20px; */
  margin: 0 auto;
  align-items: center;
}

.input-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Left content */
.hero__content {
  color: var(--pure-white);
}

.hero__content {
  width: 58%;
}

.hero__eyebrow {
  font-size: var(--fs-small);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--fw-medium);
  margin-bottom: 10px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--off-white);
}

.hero__sub {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 60ch;
}

/* CTA Buttons */
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--bronze-gold);
  color: var(--pure-white);
}

.btn--primary:hover {
  background: var(--bronze-dark);
}

.btn--outline {
  border: 2px solid var(--pure-white);
  color: var(--pure-white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Trust indicators */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: var(--fs-body);
}

.trust .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust .tick {
  background: var(--bronze-gold);
  color: var(--pure-white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--fw-bold);
}

/* Right contact card */
.hero__card {
  background: var(--pure-white);
  color: var(--deep-black);
  border-radius: 30px;
  padding: 45px;
  box-shadow: var(--shadow);
  width: 42%;
}

.hero__card h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  margin-bottom: 20px;
  text-align: center;
}

.input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #bfb9b9;
  margin-bottom: 20px;
  font-size: var(--fs-small);
  line-height: 24px;
  font-family: var(--font-body);
}

.input:focus {
  outline: none;
  border-color: var(--bronze-gold);
}

textarea.input {
  border-radius: 20px;
  min-height: 80px;
  resize: vertical;
}

.btn--form {
  width: 100%;
  max-width: 200px;
  border: none;
  background: var(--bronze-gold);
  color: var(--pure-white);
  padding: 10px 0;
  border-radius: 999px;
  font-weight: var(--fw-semibold);
  cursor: pointer;
}

.btn--form:hover {
  background: var(--bronze-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    padding: 40px 20px;
    gap: 15px;
  }

  .hero__card {
    margin-top: 20px;
    width: 100%;
  }

  .hero__content {
    width: 100%;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
  .input-field {
    flex-direction: column;
    gap: 0;
  }
  .hero__title {
    font-size: 40px;
  }
}

/* ============================ 
   Who We Are section
   =========================== */
.section-who {
  background: var(--pure-white);
  padding: var(--space-xl, 56px) 0;
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: 24px 0;
}

/* Image card */
.who-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--off-white);
}

.who-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content */
.who-content {
  padding: 8px 6px;
}

.who-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--bronze-gold);
  font-weight: var(--fw-medium);
  margin-bottom: 12px;
}

.who-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h1);
  line-height: 1.05;
  color: var(--deep-black);
  margin-bottom: 18px;
}

.who-intro {
  font-size: var(--fs-body);
  color: var(--deep-black);
  margin-bottom: 18px;
  max-width: 56ch;
}

/* Principles list (three core principles) */
.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 6px;
}

.principle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  min-width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--bronze-gold);
  color: var(--pure-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-family: var(--font-body);
}

.principle .p-text {
  font-size: var(--fs-body);
  color: var(--deep-black);
  line-height: 1.5;
  font-weight: var(--fw-regular);
}

.principle .p-title {
  display: block;
  font-weight: var(--fw-semibold);
  margin-bottom: 6px;
}

/* subtle divider on right side like arrow in your reference (optional) */
.who-aside {
  display: none;
  /* decorative; not required */
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .who-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .who-title {
    font-size: var(--fs-h1-lg);
  }

  .who-image {
    order: -1;
  }

  /* show image first if you prefer */
  .who-content {
    padding-top: 8px;
  }
}

@media (max-width: 600px) {
  :root {
    --fs-h1: 26px;
    --fs-body: 15px;
  }

  .who-title {
    font-size: 26px;
  }

  .who-intro {
    font-size: 15px;
  }

  .principle .p-text {
    font-size: 15px;
  }

  .principle .dot {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* small helper for spacing when embedding in page */
.section-who .spacer {
  height: var(--space-lg);
}

/* =========================================
   TRUST BAR (Blue Section)
   ========================================= */
.trust-bar {
  background: var(--off-white);
}
.trust-bar .section-container {
  max-width: 1250px;
}
.trust_bar_items {
  color: var(--pure-white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  padding: 48px 0;
}

.trust-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  width: 35px;
  height: 35px;
  margin-bottom: 8px;
  fill: var(--charcoal-gray);
}

.trust-item p {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
}

/* Responsive Trust Bar */
@media (max-width: 900px) {
  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .trust_bar_items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   OUR SERVICES SECTION
   ========================================= */

.section-services {
  padding: 60px 0;
  background: var(--pure-white);
}

.section-services h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  text-align: center;
  color: var(--deep-black);
  margin-bottom: 10px;
}

/* decorative underline element */

/* subtitle */
.section-services p.subtitle {
  text-align: center;
  color: var(--charcoal);
  font-size: var(--fs-body);
  margin-bottom: 40px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: var(--pure-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid #f7f0e7;
}

.service-card:hover {
  border: 2px solid #ead4ba;
}

/* Image area */
.service-card .img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* top-right decorative dot on the image */
.img-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--bronze-gold), var(--bronze-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.img-dot .dot {
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
  min-width: auto;
}

/* ensure .dot svg inside scales nicely */
.img-dot .dot svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* Card content */
.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--deep-black);
  margin-bottom: 14px;
  text-align: center;
}

/* Service list — align dot + text */
.service-list {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--fs-body);
  color: var(--deep-black);
  margin-bottom: 10px;
}
.service-list li.add-more-deta {
  opacity: 0.5;
  font-style: italic;
}

/* .dot used inline in markup — wrap it in circle background for list */
.service-list .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bronze-gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.service-list .dot svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* CTA button */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--bronze-gold);
  color: var(--pure-white);
}

.btn--primary:hover {
  background: var(--bronze-dark);
}

.btn--outline {
  border: 2px solid var(--bronze-gold);
  color: var(--bronze-gold);
  background: transparent;
}

.btn--outline:hover {
  background: var(--bronze-gold);
  color: var(--pure-white);
}

.service-card:hover .btn--outline {
  background: #c9914d;
  color: #fff;
}

.service-content .btn {
  border-radius: 14px;
  text-align: left;
}
/* responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card .img-wrap {
    height: 220px;
  }

  .img-dot {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --underline-width: 110px;
    --underline-height: 5px;
  }

  .service-card .img-wrap {
    height: 180px;
  }

  .service-content {
    padding: 18px;
  }

  .service-list .dot {
    min-width: 24px;
    height: 24px;
  }
}

/* ===================================
    FAQ Section
   ================================== */
.section-faq {
  padding: 72px 0;
}

/* Heading area */
.section-faq .heading {
  text-align: center;
  margin-bottom: 6px;
}

.section-faq h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--deep-black);
  margin-bottom: 10px;
}

/* subtitle */
.section-faq .subtitle {
  font-size: var(--fs-sub);
  color: var(--muted);
  text-align: center;
  max-width: 850px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* faq list layout */
.faq-list {
  max-width: 895px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

/* each item */
.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  border: 2px solid transparent;
  /* reserve space for border */
  transition: border-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}

/* hover lift and subtle bronze glow on desktop */
@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }
}

/* summary row (clickable) */
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-summary:focus {
  outline: none;
}

/* question text */
.faq-question {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--deep-black);
}

/* toggle chevron */
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(180deg, var(--bronze-gold), var(--bronze-dark)); */
  color: #fff;
  /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08); */
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

/* rotate when open */
.faq-item[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
}

/* answer panel */
.faq-panel {
  padding: 0 20px;
  color: var(--charcoal);
  font-size: var(--fs-body);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.2, 0.9, 0.2, 1),
    padding 0.22s ease;
}

.faq-panel p {
  font-size: var(--fs-body);
}

/* show gap & padding when open */
.faq-item[aria-expanded="true"] .faq-panel {
  padding-top: 0;
  padding-bottom: 18px;
  max-height: 800px;
  /* JS also sets exact height for smoother animation */
}

/* highlighted open style (bronze glow & slight border) */
.faq-item[aria-expanded="true"] {
  border-color: rgba(201, 145, 77, 0.24);
  box-shadow: 0px 15px 14px 0px rgb(201 145 77 / 20%);
}

/* subtle divider inside open panel */
.faq-item[aria-expanded="true"] .faq-panel::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 12px;
  background: linear-gradient(
    90deg,
    rgba(201, 145, 77, 0.12),
    rgba(0, 0, 0, 0.04)
  );
}

/* chevron svg size */
.faq-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* responsive */
@media (max-width: 900px) {
  .section-faq {
    padding: 44px 0;
  }

  .section-underline {
    width: 120px;
    height: 5px;
  }

  .faq-summary {
    padding: 14px 16px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-list {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .section-underline {
    width: 96px;
    height: 5px;
  }

  .faq-panel {
    font-size: 14px;
  }
}

/* ========================================
    Local Plumber 
   ======================================== */

.section-local {
  background: var(--off-white);
  padding: 56px 0;
  color: var(--pure-white);
}

/* layout: two columns (card left, image right) */
.local-inner {
  display: flex;
  gap: 34px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Left card: white rounded box */
.local-card {
  background: var(--pure-white);
  color: var(--deep-black);
  border-radius: 30px;
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  position: relative;
  width: 70%;
}

/* eyebrow (small) */
.local-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  text-transform: uppercase;
  color: var(--bronze-gold);
  font-weight: var(--fw-medium);
  margin-bottom: 12px;
}

/* heading */
.local-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--deep-black);
  margin-bottom: 20px;
}

/* intro paragraph */
.local-desc {
  font-size: var(--fs-body);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* suburb list - two column inline badges
.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  margin: 15px 0;
} */

.suburb-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}

/* each suburb row */
.suburb-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: var(--fs-body);
  color: var(--deep-black);
}

/* check circle (small) used before each suburb */
.suburb-item .check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
}

.suburb-item .check svg {
  width: 20px;
  height: 20px;
  display: block;
}

.suburb-item .check svg path {
  stroke: #000;
}

/* "and many more..." small text */
.suburb-more {
  color: var(--muted);
  font-size: var(--fs-small);
  margin-top: 6px;
}

/* final paragraph */
.local-footer {
  margin-top: 20px;
  font-size: var(--fs-body);
  color: var(--charcoal);
  line-height: 1.6;
}

/* Right image box */
.local-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  width: 50%;
}

.local-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive behaviour */
@media (max-width: 1100px) {
  .local-inner {
    padding: 0 18px;
  }
}

@media (max-width: 820px) {
  .local-inner {
    flex-direction: column;
    gap: 24px;
  }

  .local-image {
    order: -1;
    margin-bottom: 18px;
    width: 100%;
  }

  .local-card {
    padding: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .local-inner {
    gap: 16px;
    padding: 0 14px;
  }

  .local-title {
    font-size: 18px;
  }

  .suburb-item {
    font-size: 14px;
  }

  .local-desc,
  .local-footer {
    font-size: 14px;
  }

  .local-image {
    border-radius: 12px;
  }
}

/* ==========================================
    Footer layout
  ========================================== */
.footer {
  background: #ffffff;
  color: var(--charcoal);
  padding: 48px 0 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* grid: four columns on desktop */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr ;
  gap: 28px;
  align-items: start;
}

/* Logo + description column */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Quick links and lists */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--deep-black);
  margin-bottom: 12px;
  font-weight: var(--fw-bold);
}

.footer-links,
.footer-services,
.footer-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li,
.footer-areas li {
  margin-bottom: 10px;
  font-size: var(--fs-body);
  color: var(--charcoal);
}

.footer-links a,
.footer-services a,
.footer-areas a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a svg {
  height: 15px;
  width: 15px;
}
.footer-links a:hover,
.footer-services a:hover,
.footer-areas a:hover {
  color: var(--link-blue);
}

/* contact column */
.footer-contact p {
  font-size: var(--fs-body);
  margin-bottom: 8px;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-line {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--charcoal);
  font-size: var(--fs-body);
}

.contact-line a {
  color: var(--deep-black);
  text-decoration: none;
}
.contact-line svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  color: var(--bronze-gold);
}

/* dotted divider */
.footer-divider {
  margin: 28px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

/* bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 28px;
  font-size: var(--fs-small);
  color: var(--muted);
}

.footer-bottom .left {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.left a.small-muted{
  color: #1a1a1a;
  text-decoration: none;
}
.footer-bottom .right {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* social icons - circular */
.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--bronze-gold), var(--bronze-dark));
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.social a svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: #fff;
}
.top-inner .social a {
  background: none;
  box-shadow: none;
}
.top-inner .social {
  gap: 5px;
}
.contact-link.contact_phone.mobile{
  display: none;
}
@media (max-width: 900px) {
  .top-inner .social {
    display: none;
  }
  .contact-link.contact_phone.desktop{
    display: none;
  }
  .contact-link.contact_phone.mobile{
    display: block;
  }
}

@media (max-width: 1440px) {
  .top-bar .top-inner {
    padding-inline-start: 1.5rem;
    padding-inline-end: 1.5rem;
  }

  .header-inner {
    padding-inline-start: 1.5rem;
  }

  .footer-grid {
    padding-inline-start: 0.5rem;
  }

  .footer-bottom {
    padding-inline-end: 0.5rem;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1440px) {
  .header-right {
    margin-left: auto;
    gap: 24px;
  }
}

/* small responsive tweaks */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 8px;
  }
  .footer-bottom .right {
    display: block;
  }
  .right .social {
    justify-content: center;
    padding-top: 10px;
  }
  .small-muted {
    text-align: center;
  }
  .footer-bottom .left {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand .logo img {
    height: 90px;
  }

  .social a {
    width: 36px;
    height: 36px;
  }

  .footer {
    padding: 36px 0 20px;
  }
}

@media (max-width: 475px) {
  .hero__inner {
    flex-direction: column;
    padding: 40px 0px;
  }

  .hero__card {
    padding: 15px;
  }

  button.btn--form {
    max-width: 180px;
  }
}
