/* ─────────────────────────────────────────
   ROOT VARIABLES — SRE CONSTRO Brand Theme
───────────────────────────────────────── */
:root {
  /* ─── Brand Colors ─── */
  --color-primary:        #1a7a7a;   /* Teal — main brand color */
  --color-primary-dark:   #145f5f;   /* Darker teal — hover states */
  --color-primary-light:  #e8f5f5;   /* Light teal — backgrounds/pills */
  --color-accent:         #ffcf23;   /* Yellow/Gold — highlight color */
  --color-accent-dark:    #fcc706;   /* Darker gold — hover on accent */
  --color-accent-light:   #fef9e7;   /* Light yellow — subtle bg */

  /* ─── Neutral Colors ─── */
  --color-white:          #ffffff;
  --color-bg:             #f7fafa;   /* Very light teal tint bg */
  --color-text:           #1a2e2e;   /* Deep dark teal for text */
  --color-text-muted:     #6b8f8f;   /* Muted teal-grey */
  --color-border:         #d4e8e8;   /* Light teal border */

  /* ─── Shadows ─── */
  --shadow-nav:     0 2px 14px rgba(26, 122, 122, 0.1);
  --shadow-btn:     0 4px 12px rgba(26, 122, 122, 0.35);
  --shadow-btn-mob: 0 4px 12px rgba(26, 122, 122, 0.25);
  --shadow-card:    0 8px 32px rgba(26, 122, 122, 0.1);

  /* ─── Font ─── */
  --font-family:     'Poppins', sans-serif;
  --font-xs:         0.62rem;
  --font-sm:         0.85rem;
  --font-base:       0.88rem;
  --font-md:         0.92rem;
  --font-lg:         1rem;
  --font-xl:         1.3rem;
  --font-2xl:        2rem;

  /* ─── Font Weights ─── */
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* ─── Spacing ─── */
  --spacing-xs:  4px;
  --spacing-sm:  8px;
  --spacing-md:  16px;
  --spacing-lg:  24px;
  --spacing-xl:  36px;

  /* ─── Border Radius ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* ─── Transitions ─── */
  --transition-fast:   0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ─── RESET ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── GLOBAL LINK RESET ─── */
a {
  text-decoration: none;
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
}
/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
nav {
  background: var(--color-white);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ─── LOGO ─── */
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-sre {
  font-size: var(--font-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);        /* teal */
  letter-spacing: 1px;
  line-height: 1;
}

.logo-groups {
  font-size: var(--font-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text);           /* dark teal */
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-size: var(--font-xs);
  color: var(--color-text-muted);     /* muted teal-grey */
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  margin-top: 1px;
}

/* ─── NAV LINKS (Center) ─── */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  justify-content: center;
}

.nav-links .nav-link {
  color: var(--color-text);
  font-size: var(--font-base);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
}

/* Hover — teal color */
.nav-links .nav-link:hover {
  color: var(--color-primary);        /* teal */
}

/* Active — accent gold dot indicator */
.nav-links .nav-link.active {
  color: var(--color-primary);        /* teal */
}

/* ─── NAV RIGHT ─── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-md);
}

/* ─── CTA BUTTON (Desktop) ─── */
.cta-btn {
  background: var(--color-accent);    /* gold button */
  color: var(--color-text);           /* dark teal text on gold */
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  font-family: var(--font-family);
  transition: background var(--transition-fast), transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--color-accent-dark);  /* darker gold on hover */
  color: var(--color-text);
  transform: translateY(-2px);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-primary);   /* teal bars */
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  background: var(--color-white);
  border-top: 2px solid var(--color-accent);   /* gold top border */
  padding: var(--spacing-md) var(--spacing-lg) 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.mobile-menu ul .nav-link {
  color: var(--color-text);
  font-size: var(--font-md);
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.mobile-menu ul .nav-link:hover,
.mobile-menu ul .nav-link.active {
  color: var(--color-primary);        /* teal on hover/active */
}

/* ─── CTA BUTTON (Mobile) ─── */
.cta-btn-mobile {
  display: block;
  text-align: center;
  background: var(--color-accent);    /* gold button */
  color: var(--color-text);           /* dark text */
  padding: 11px 0;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: var(--fw-bold);
  transition: background var(--transition-fast);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}

.cta-btn-mobile:hover {
  background: var(--color-accent-dark);
  color: var(--color-text);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-container {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cta-btn {
    display: none;
  }
}




/* ─────────────────────────────────────────
   PAGE BANNER — CONTACT US
───────────────────────────────────────── */
.page-banner {
  position: relative;
  background-image: url('../images/contactus-page-banner.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px var(--spacing-lg) 80px;
}

/* ─── OVERLAY ─── */
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 30, 30, 0.88) 0%,
    rgba(13, 40, 40, 0.82) 60%,
    rgba(8, 30, 30, 0.92) 100%
  );
  z-index: 0;
}

/* ─── DECORATIVE CIRCLES ─── */
.pb-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pb-decor--1 {
  width: 500px;
  height: 500px;
  top: -220px;
  right: -120px;
  background: rgba(245, 197, 24, 0.04);
  border: 1px solid rgba(245, 197, 24, 0.07);
}

.pb-decor--2 {
  width: 360px;
  height: 360px;
  bottom: -160px;
  left: -60px;
  background: rgba(26, 122, 122, 0.06);
  border: 1px solid rgba(26, 122, 122, 0.1);
}

/* ─── VERTICAL LINES ─── */
.pb-line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.pb-line--1 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 12%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-accent) 50%,
    transparent 100%
  );
}

.pb-line--2 {
  width: 1px;
  height: 100%;
  top: 0;
  right: 12%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-accent) 50%,
    transparent 100%
  );
}

/* ─── CONTAINER ─── */
.page-banner-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* ─── BREADCRUMB ─── */
.pb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pb-breadcrumb a {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.5);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.pb-breadcrumb a:hover {
  color: var(--color-accent);
}

.pb-breadcrumb svg {
  width: 11px;
  height: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.pb-breadcrumb span {
  font-size: var(--font-xs);
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

/* ─── TAG PILL ─── */
.pb-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.12);
  color: var(--color-accent);
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(245, 197, 24, 0.28);
}

/* ─── TITLE ─── */
.pb-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pb-highlight {
  color: var(--color-accent);
}

/* ─── DESC ─── */
.pb-desc {
  font-size: var(--font-md);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 500px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .page-banner {
    min-height: 260px;
    padding: 90px var(--spacing-md) 70px;
  }

  .pb-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .page-banner {
    min-height: 240px;
    padding: 80px var(--spacing-md) 60px;
    background-attachment: scroll;
  }

  .pb-title {
    font-size: 1.7rem;
  }

  .pb-desc {
    font-size: var(--font-base);
  }
}




/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */

.contact-section {
  background: var(--color-bg);
  padding: 100px var(--spacing-lg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ═══════════════════════════════════════════
   LEFT — FORM
═══════════════════════════════════════════ */

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header */
.cf-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cf-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  width: fit-content;
}

.cf-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.cf-highlight {
  color: var(--color-accent);
}

.cf-desc {
  font-size: var(--font-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Form Layout */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-field--full {
  grid-column: 1 / -1;
}

.cf-field label {
  font-size: var(--font-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  letter-spacing: 0.3px;
}

/* Input Wrap */
.cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cf-input-wrap > svg:first-child {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  color: var(--color-text-muted);
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
}

.cf-input-wrap input,
.cf-input-wrap select,
.cf-input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-family: var(--font-family);
  font-size: var(--font-base);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.cf-input-wrap input::placeholder,
.cf-input-wrap textarea::placeholder {
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
}

.cf-input-wrap input:focus,
.cf-input-wrap select:focus,
.cf-input-wrap textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 122, 122, 0.1);
}

/* Textarea */
.cf-textarea-wrap textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 14px;
  line-height: 1.6;
}

.cf-textarea-wrap > svg:first-child {
  top: 14px;
  align-self: flex-start;
}

/* Select chevron */
.cf-select-wrap {
  position: relative;
}

.cf-chevron {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  pointer-events: none;
}

/* Submit Button */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  padding: 15px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
  transition: background var(--transition-fast), transform 0.15s ease, box-shadow var(--transition-fast);
  width: 100%;
  margin-top: 4px;
}

.cf-submit svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.cf-submit:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.5);
}

.cf-submit:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   RIGHT — CONTACT DETAILS
═══════════════════════════════════════════ */

.contact-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header */
.cd-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cd-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.12);
  color: var(--color-accent);
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(245, 197, 24, 0.28);
  width: fit-content;
}

.cd-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.cd-highlight {
  color: var(--color-primary);
}

.cd-desc {
  font-size: var(--font-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── Contact Cards ─── */
.cd-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.cd-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.15);
  transform: translateX(4px);
}

.cd-card--no-link {
  cursor: default;
}

.cd-card--no-link:hover {
  transform: none;
  border-color: var(--color-border);
  box-shadow: none;
}

/* WhatsApp card */
.cd-card--whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.15);
}

/* Icon */
.cd-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}

.cd-card-icon svg {
  width: 22px;
  height: 22px;
}

.cd-card-icon--teal {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.cd-card-icon--whatsapp {
  background: #25d366;
  color: #fff;
}

/* Body */
.cd-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.cd-card-label {
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cd-card-value {
  font-size: var(--font-md);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cd-card-sub {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

/* Arrow */
.cd-card-arrow {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.cd-card:hover .cd-card-arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* ─── Business Hours ─── */
.cd-hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-primary-light);
  border: 1px solid rgba(26, 122, 122, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}

.cd-hours-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.cd-hours-icon svg {
  width: 20px;
  height: 20px;
}

.cd-hours-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cd-hours-title {
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.cd-hours-time {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-section {
    padding: 80px var(--spacing-md);
  }
}

@media (max-width: 560px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 60px var(--spacing-md);
  }

  .cd-card-value {
    font-size: var(--font-base);
  }
}

/* ═══════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════ */

.map-section {
  width: 100%;
  background: var(--color-bg);
  padding: 30px 0 100px;
}

/* ─── LABEL BAR ─── */
.map-label-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px var(--spacing-lg);
}

.map-label-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.map-label-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.map-label-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.map-label-icon svg {
  width: 20px;
  height: 20px;
}

.map-label-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-label-title {
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.map-label-addr {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

/* ─── GET DIRECTIONS BUTTON ─── */
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--fw-semibold);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast), transform 0.15s ease;
  white-space: nowrap;
}

.map-directions-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.map-directions-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ─── MAP EMBED WRAP ─── */
.map-embed-wrap {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 var(--spacing-lg);
}

.map-embed {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
  filter: grayscale(15%) contrast(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ─── FLOATING PIN CARD ─── */
.map-pin-card {
  position: absolute;
  top: 24px;
  left: calc(var(--spacing-lg) + 24px);
  background: var(--color-white);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  border: 1px solid var(--color-border);
  z-index: 3;
  animation: pin-float 3s ease-in-out infinite;
}

.map-pin-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.map-pin-icon svg {
  width: 17px;
  height: 17px;
}

.map-pin-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.map-pin-name {
  font-size: var(--font-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.2;
}

.map-pin-place {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
}

/* Float animation */
@keyframes pin-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .map-section {
    padding-bottom: 70px;
  }

  .map-embed {
    height: 360px;
  }

  .map-label-bar {
    padding: 16px var(--spacing-md);
  }

  .map-embed-wrap {
    padding: 0 var(--spacing-md);
    margin-top: 28px;
  }

  .map-pin-card {
    left: calc(var(--spacing-md) + 16px);
  }
}

@media (max-width: 480px) {
  .map-embed {
    height: 280px;
    border-radius: var(--radius-md);
  }

  .map-label-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .map-directions-btn {
    width: 100%;
    justify-content: center;
  }

  .map-pin-card {
    top: 14px;
    left: calc(var(--spacing-md) + 10px);
    padding: 8px 14px 8px 8px;
  }

  .map-pin-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .map-pin-name {
    font-size: var(--font-xs);
  }

  .map-pin-place {
    display: none;
  }
}




/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #0d2828;
  position: relative;
  overflow: hidden;
}

/* ─── FOOTER TOP ─── */
.footer-top {
  position: relative;
  padding: 60px 5vw 0;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

/* ─── TRUCK — absolute bottom left ─── */
.footer-truck {
  position: absolute;
  bottom: 25px;
  left: -90px;
  width: 490px;
  z-index: 2;
  pointer-events: none;
}

.footer-truck img {
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
}

/* ─── FOOTER CONTENT — pushed right of truck ─── */
.footer-content {
  margin-left: 300px;
  width: calc(100% - 300px);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 36px;
  position: relative;
  z-index: 3;
  padding-bottom: 52px;
}

/* ─── BRAND COL ─── */
.fc-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-title {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1.2;
  font-family: var(--font-family);
}

.fbrand-sre {
  color: var(--color-accent);           /* gold SRE */
}

.footer-tagline-sub {
  font-size: var(--font-xs);
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  margin-top: -6px;
}

.fc-brand > p:not(.footer-tagline-sub) {
  font-size: var(--font-base);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 240px;
}

/* ─── SOCIALS ─── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}

.footer-socials a svg {
  width: 15px;
  height: 15px;
}

.footer-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* ─── COL TITLE ─── */
.fc-col h4 {
  font-size: var(--font-xs);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  width: fit-content;
}

/* ─── QUICK LINKS ─── */
.fql-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fql-list li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-base);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.fql-list li a svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.fql-list li a:hover {
  color: var(--color-accent);
  gap: 12px;
}

/* ─── WORKING HOURS ─── */
.foh-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.foh-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
}

.foh-day {
  font-size: var(--font-base);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.foh-time {
  font-size: var(--font-sm);
  color: var(--color-accent);
  font-weight: var(--fw-medium);
}

.foh-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── CONTACT INFO ─── */
.fci-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fci-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-top: 1px;
}

.fci-icon svg {
  width: 15px;
  height: 15px;
}

.fci-item a,
.fci-item span {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  transition: color var(--transition-fast);
}

.fci-item a:hover {
  color: var(--color-accent);
}

/* ─── FOOTER BOTTOM — centered copyright only ─── */
.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: var(--font-sm);            /* bumped up from font-xs */
  font-weight: var(--fw-medium);        /* slightly bolder */
  color: rgba(255, 255, 255, 0.45);     /* slightly more visible */
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    gap: 28px;
  }

  .footer-truck {
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    margin-left: 240px;
    width: calc(100% - 240px);
    grid-template-columns: 1fr 1fr;
    gap: 32px 36px;
  }

  .fc-brand {
    grid-column: 1 / -1;
  }

  .footer-truck {
    width: 240px;
  }
}

@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
    min-height: unset;
  }

  .footer-truck {
    position: relative;
    width: 60%;
    max-width: 320px;
    bottom: auto;
    left: auto;
    margin: 0 auto;
    padding-top: 40px;
  }

  .footer-content {
    margin-left: 0;
    width: 100%;
    padding: 40px 0 48px;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }

  .fc-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-top {
    padding: 40px 5vw 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .fc-brand {
    grid-column: auto;
  }
}


/* ─────────────────────────────────────────
   SCROLL TO TOP BUTTON
───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(26, 122, 122, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--transition-fast),
              visibility var(--transition-fast),
              transform var(--transition-fast),
              background var(--transition-fast);
}

/* Visible state */
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent);        /* gold on hover */
  color: var(--color-text);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── Progress Ring (optional) ─── */
.scroll-top::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.scroll-top.visible::before {
  opacity: 0.4;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 480px) {
  .scroll-top {
    bottom: 24px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
