@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');


/* ── CSS Variables ── */
:root {
  --burgundy:       #60071d;
  --burgundy-dark:  #45050f;
  --burgundy-light: #8a0d29;
  --cream-100:      #fdf8f0;
  --cream-200:      #f7f0e3;
  --cream-300:      #ede4d3;
  --cream-400:      #ddd0bb;
  --cream-500:      #c9b89e;
  --warm-brown:     #7a6248;
  --text-dark:      #1e1209;
  --text-mid:       #4a3728;
  --text-light:     #6b5444;
  --white:          #ffffff;
  --shadow-sm:      0 2px 8px rgba(96,7,29,0.08);
  --shadow-md:      0 8px 32px rgba(96,7,29,0.12);
  --shadow-lg:      0 20px 60px rgba(96,7,29,0.16);
  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:   'Noto Sans Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-mono:      'DM Mono', monospace;
  --nav-height:     76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-100);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-200); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: 1rem; }

.text-white{
  color: #fff;
}

.cream-300 {
  color: var(--cream-300);
}
.bg-cream-200{
  background: var(--cream-200);
}
/* ── Layout Helpers ── */
.container { max-width: 1320px; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
img {
  object-fit: cover;
}

.services-padding {
  padding: 5rem 0;
}

.section-heading {
  font-size: 30px;  
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cream {
  background: var(--cream-100);
  color: var(--burgundy);
  border-color: var(--cream-100);
}
.btn-cream:hover {
  background: var(--cream-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--burgundy);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253,248,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-300);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 145px;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 2px;
  background: var(--burgundy);
  transition: right 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--burgundy); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta { margin-left: 1rem; }

/* ── Dropdown ── */
.nav-item {
  position: relative;
  padding: 10px 0;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-item > a .chevron {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: var(--white);
  border-left: 1px solid var(--cream-300);
  border-top: 1px solid var(--cream-300);
}
.nav-item:hover > a .chevron,
.nav-item:focus-within > a .chevron {
  transform: rotate(-135deg) translateY(-2px);
}
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown a::after { display: none; }
.dropdown a:hover {
  background: var(--cream-100);
  color: var(--burgundy);
  padding-left: 1.5rem;
}

.dropdown-divider {
  height: 1px;
  background: var(--cream-300);
  margin: 0.4rem 1rem;
}

/* Mobile dropdowns */
.mobile-dropdown {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--cream-300);
  margin-top: 0.2rem;
  gap: 0;
}
.mobile-dropdown.open { display: flex; }
.mobile-dropdown a {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: var(--text-light);
  border-bottom: none;
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.mobile-nav-toggle .chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.mobile-nav-toggle.open .chevron {
  transform: rotate(-135deg) translateY(3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: var(--cream-300);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--cream-100); margin-bottom: 1rem; }
.footer-brand .logo-icon { font-size:30px }
.footer-brand p { font-size: 0.9rem; color: var(--cream-400); line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: var(--cream-100); font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--cream-400); transition: var(--transition); }
.footer-col ul a:hover { color: var(--cream-100); padding-left: 6px; }
.footer-contact p { font-size: 0.9rem; color: var(--cream-400); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--cream-500);
}
.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-400);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-link:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }

/* ── Page Hero (internal pages) ── */
.page-hero-bg{
  background: var(--burgundy);
}
.page-hero {
  /* background: var(--burgundy); */
  color: var(--white);
  padding: calc(var(--nav-height) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}
.page-hero-service::before{
  background: url("https://thehindustanpackersandmovers.com/static/images/thpm-services.jpg") center/cover no-repeat;
}
.page-hero-tracking::before{
  background: url("https://thehindustanpackersandmovers.com/static/images/thpm-track-shipment.jpg") center/cover no-repeat;
}
.page-hero-contact::before{
  background: url("https://thehindustanpackersandmovers.com/static/images/thpm-contact.jpg") center/cover no-repeat;
}
.page-hero-about::before{
  background: url("https://thehindustanpackersandmovers.com/static/images/thpm-about.jpg") center/cover no-repeat;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.side-service-menu {
  border-top: solid 1px;
}

.side-service-menu li {
  padding: 15px 30px 15px 0;
  border-bottom: solid 1px;
  position: relative;
  width: 100%;
}

.side-service-menu li a i{
  color: var(--cream-500);
}
.side-service-menu li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-service-menu li:hover , .side-service-menu li:hover a i, .side-service-menu li a:hover{
  color: var(--burgundy);
}

.side-service-menu li a.active, .side-service-menu li a.active i{
  color: var(--burgundy);
  font-weight: 600;
}

.sideobar-service-menu-wrap{
  position: sticky;
  top: 90px;
}
/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--cream-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--burgundy);
  padding: 1rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--burgundy);
  margin: 1.2rem 0 1.8rem;
  border-radius: 2px;
}

/* ── Tag ── */
.tag {
  display: inline-block;
  background: var(--cream-200);
  color: var(--burgundy);
  border: 1px solid var(--cream-300);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* ── Form Elements ── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem .8rem;
  background: var(--cream-100);
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(96,7,29,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ── Utility ── */
.text-burgundy { color: var(--burgundy); }
.text-center   { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .container  { padding: 0 1.2rem; }
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream-100);
  border-bottom: 1px solid var(--cream-300);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-300);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--burgundy); }

/* ── Skip to content (a11y) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }


/* ── SERVICES SECTION ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .service-card .service-image {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .service-card:hover .service-image img {
    transform: scale(1.05);
  }

  .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--cream-400);
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--burgundy);
    transition: var(--transition);
  }

  .service-link:hover {
    gap: 0.7rem;
  }

    /* MODERN STEP CARDS — totally different from plain list */
    .step-card {
      background: #ffffff;
      padding: 1.8rem 1.5rem 2rem 1.5rem;
      transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
      height: 100%;
      position: relative;
      z-index: 2;
      backdrop-filter: blur(0px);
      border: 1px dashed var(--cream-300);
    }

    .step-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 45px -18px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(13, 110, 253, 0.2);
      border-color: var(--burgundy-light);
    }

    /* icon + number wrapper */
    .step-icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .step-icon {
      font-size: 2rem;
      color: var(--burgundy);
      background: linear-gradient(125deg, #ffe7ed, #ffffff);
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1.5rem;
      box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
    }

    .step-card:hover .step-icon {
      transform: scale(1.02);
      color: var(--burgundy-light);
    }

    .step-number {
      font-weight: 800;
      font-size: 2.2rem;
      line-height: 1;
      background: linear-gradient(145deg, #cbd5e1, #e2e8f0);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      opacity: 0.55;
      transition: opacity 0.2s ease;
    }

    .step-card:hover .step-number {
      opacity: 0.85;
      background: linear-gradient(145deg, #fd104a, #60071d);
      background-clip: text;
      -webkit-background-clip: text;
    }

    .step-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0.75rem 0 0.65rem 0;
      color: #0f172a;
      letter-spacing: -0.3px;
      line-height: 1.3;
    }

    .step-desc {
      color: #334155;
      font-weight: 400;
      line-height: 1.55;
      font-size: 0.98rem;
      margin-bottom: 0;
    }

    /* responsive adjustments */
    @media (max-width: 768px) {
      .step-icon {
        width: 54px;
        height: 54px;
        font-size: 2.3rem;
      }
      .step-number {
        font-size: 1.8rem;
      }
      .step-card {
        padding: 1.5rem;
      }
    }

    /* extra micro-animation on load */
    @keyframes fadeSlideUp {
      0% {
        opacity: 0;
        transform: translateY(24px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .step-card {
      animation: fadeSlideUp 0.5s ease forwards;
      opacity: 0;
    }

    /* optional custom container width */
    .custom-container {
      max-width: 1280px;
    }

    /* background texture for modern feel */
    .bg-dots {
      background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
      background-size: 28px 28px;
      opacity: 0.2;
      pointer-events: none;
    }

    .badge-process {
      background: rgba(13, 110, 253, 0.12);
      color: #0a58ca;
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.35rem 1rem;
      border-radius: 40px;
      display: inline-block;
      letter-spacing: 0.5px;
      backdrop-filter: blur(2px);
      margin-bottom: 1rem;
    }

    .whatsapp-float {
      position: fixed;
      width: 75px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
}

.call-float {
    position: fixed;
    width: 50px;;
    bottom: 20px; /* placed above WhatsApp */
    left: 20px;
    z-index: 1000;
}

.whatsapp-float img,
.call-float img {
    width: 100%;
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
}

.info-box {
    background-color: #fff;
    border: 1px solid var(--cream-300);
    padding: 20px;
    transition: all 0.5s ease;
}

.info-box:hover {
    box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 36px;
    transform: translateY(-4px);
}

.info-box h5 {
    font-weight: 600;
    color: #000;
    margin: 14px 0px;
    
}

.cta-wrap {
  background: linear-gradient(110deg, #400b18 0%, #8b112f 100%);
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin: 0 0 3rem;
}

/* Subtle decorative circles */
.cta-wrap::before,
.cta-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-wrap::before {
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.04);
}
.cta-wrap::after {
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.03);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.cta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f87171;
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.cta-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 1.5rem;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Tablet */
@media (max-width: 992px) {
  .cta-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.2s;
}
.cta-card:hover {
  background: rgba(255,255,255,0.12);
}

.cta-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.cta-icon-wrap--green {
  background: rgba(37,211,102,0.18);
  color: #4ade80;
}

.cta-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin: 0;
}

.cta-card-value {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  padding: 8px 16px;
  width: 100%;
  border-radius: 8px;
  background: rgba(255,255,255,0.13);
  border: 0.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-action:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
  .cta-wrap {
    padding: 2.5rem 1.5rem;
  }
}

.head-office-card {
      background: linear-gradient(135deg, #ffffff 0%, #fef6ef 100%);
      border-radius:1.5rem;
      padding: 2rem;
      border-left: 8px solid var(--burgundy);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      transition: all 0.2s;
    }

    .branch-card {
      background: white;
      border-radius: 1.5rem;
      padding: 1.2rem;
      transition: all 0.2s ease;
      border: 1px solid #f0e2d8;
      height: 100%;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.02);
    }

    .branch-card:hover {
      transform: translateY(-5px);
      border-color: #d9522c60;
      box-shadow: 0 15px 25px -12px rgba(217, 82, 44, 0.12);
    }

    .badge-branch {
      background: #f2e4db;
      color: #b3401f;
      font-weight: 600;
      font-size: 0.7rem;
      padding: 0.3rem 0.7rem;
      border-radius: 2rem;
    }




    /* ── Marquee ── */
  .marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .marquee-outer::before,
  .marquee-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-outer::before { left: 0;  background: linear-gradient(to right, #fdf8f0, transparent); }
  .marquee-outer::after  { right: 0; background: linear-gradient(to left,  #fdf8f0, transparent); }

  .marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: scroll-left 32s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }

  @keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── Logo card ── */
  .logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-100);
    border: 1px solid var(--cream-300);
    border-radius: 12px;
    width: 170px;
    height: 88px;
    margin: 0 10px;
    flex-shrink: 0;
    padding: 14px 18px;        /* breathing room around logo */
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }
  .logo-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
    border-radius: 0 0 12px 12px;
  }
  .logo-card:hover {
    border-color: var(--cream-400);
    box-shadow: 0 6px 24px var(--cream-300);
  }
  .logo-card:hover::after { transform: scaleX(1); }

  /* Key rule: logo image fills the card but never overflows */
  .logo-card img,
  .logo-card svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }