/* ============================================
   THE SALAVAI LAUNDRY - Sakthi Masala Inspired Theme
   Deep Navy (#0c2540) & Sakthi Red Gradient Theme
   ============================================ */

/* --- FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Noto+Serif+Tamil:wght@400;600;700;800&family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* Universal Box Sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Ensure images and media don't exceed container width */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal overflow & smooth scroll */
html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

body {
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

:root {
  /* Navy Blue Primary Palette (#0c2540) */
  --navy-deep: #06182c;
  --navy-primary: #0c2540;
  --navy-mid: #153e67;
  --navy-light: #e8f1f9;
  --navy-pale: #f2f7fc;

  /* Rich Sakthi Crimson Gradient System */
  --red-primary: rgb(198, 34, 34);
  --red-dark: rgb(140, 22, 22);
  --red-light: #e53935;
  --red-pale: #fde8e8;
  --red-gradient: linear-gradient(135deg, rgb(198, 34, 34) 0%, rgb(140, 22, 22) 100%);
  --red-gradient-hover: linear-gradient(135deg, rgb(220, 40, 40) 0%, rgb(160, 25, 25) 100%);

  /* Aliases for template compatibility */
  --gold-primary: rgb(198, 34, 34);
  --gold-light: #e53935;
  --gold-pale: #fde8e8;

  --cream: #f4f8fc;
  --text-dark: #0b1a29;
  --text-mid: #2b3d52;
  --text-muted: #56697f;
  --white: #ffffff;
  --border: #c8daf0;
  --shadow-sm: 0 2px 10px rgba(12, 37, 64, 0.08);
  --shadow-md: 0 8px 30px rgba(12, 37, 64, 0.15);
  --shadow-lg: 0 20px 60px rgba(12, 37, 64, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}



html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Heebo', 'Noto Serif Tamil', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--red-gradient);
  z-index: 10001;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(198, 34, 34, 0.8);
}

/* ============================================
   SAKTHI STYLE TOP UTILITY HEADER BAR
   ============================================ */
.top-header-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.top-info-item:hover {
  color: var(--red-light);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.lang-btn {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--red-light);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.top-social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.top-social-links a:hover {
  color: var(--red-light);
  transform: scale(1.15);
}

/* ============================================
   HEADER & NAVBAR ALIGNMENT STYLES
   ============================================ */
.header {
  position: relative;
  z-index: 1000;
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  border-bottom: 1px solid #eaeaea !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid #eaeaea !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 48px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  filter: none !important;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a !important;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  text-transform: none !important;
  letter-spacing: 0.1px;
  opacity: 1;
  padding: 8px 0;
  white-space: nowrap;
  line-height: 1;
}

.nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #d32f2f !important;
  border-radius: 2px;
  transition: width 0.3s ease !important;
  display: block !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100% !important;
}

.nav-link:hover,
.nav-link.active {
  color: #155293 !important;
  font-weight: 600;
}

.header.scrolled .nav-link {
  color: #1a1a1a !important;
  opacity: 1;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: #d32f2f !important;
  font-weight: 600;
}

.header-btn-pickup,
.nav-btn-pickup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #155293 !important;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(21, 82, 147, 0.4);
  transition: all 0.2s ease;
}

.header-btn-pickup:hover,
.nav-btn-pickup:hover {
  background-color: #0f4277 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 82, 147, 0.55);
}

.nav-btn-pickup::after {
  display: none !important;
}

/* Responsive adjustment for medium desktops (901px to 1350px) */
@media screen and (max-width: 1350px) and (min-width: 901px) {
  .header-inner {
    padding: 14px 24px;
    gap: 16px;
  }

  .nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .nav-btn-pickup {
    padding: 8px 16px !important;
    font-size: 11.5px !important;
  }
}

/* Nav Dropdown Styling for Join Us */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.nav-dropdown.open .dropdown-arrow,
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Glassmorphic Dropdown Menu (Sakthi Red Theme) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: linear-gradient(135deg, rgba(160, 25, 25, 0.94) 0%, rgba(110, 15, 15, 0.96) 100%) !important;
  backdrop-filter: blur(25px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow:
    0 20px 50px rgba(140, 22, 22, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-transform: none !important;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  transform: translateX(4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.dropdown-icon {
  font-size: 16px;
}

.nav-link.nav-btn-pickup,
.nav-btn-pickup {
  background: #134e96 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(19, 78, 150, 0.25) !important;
}

.nav-link.nav-btn-pickup::after,
.nav-btn-pickup::after {
  display: none !important;
}

.nav-link.nav-btn-pickup:hover,
.nav-btn-pickup:hover {
  background: #0d386c !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 56, 108, 0.35) !important;
}

.header-cta {
  background: var(--red-gradient);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(198, 34, 34, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-cta:hover {
  background: var(--red-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 34, 34, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  margin-left: auto;
  border-radius: 10px;
  background: rgba(12, 37, 64, 0.04);
  border: 1px solid rgba(12, 37, 64, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(198, 34, 34, 0.08);
  border-color: rgba(198, 34, 34, 0.2);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--navy-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* ============================================
   HERO SECTION (MATCHING DESIGN MOCKUP)
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #06182c;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/home page background.png');
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  filter: none;
}

.hero-overlay {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: -60px auto 0 auto;
  padding: 20px 48px 60px 48px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

/* Left Column Styling */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-heading {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  text-transform: none;
}

.hero-red-accent {
  width: 140px;
  height: 4px;
  background-color: #d32f2f;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 520px;
}

.hero-subtitle .highlight-red {
  color: #e53935;
  font-weight: 700;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-blue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #155293;
  color: #ffffff !important;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(21, 82, 147, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-blue-btn:hover {
  background-color: #0d3c6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 82, 147, 0.6);
}

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #155293;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid #155293;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(21, 82, 147, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-outline-btn:hover {
  background-color: #0d3c6e;
  border-color: #0d3c6e;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 82, 147, 0.6);
}

.hero-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #155293;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid #155293;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(21, 82, 147, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-price-btn:hover {
  background-color: #0d3c6e;
  border-color: #0d3c6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 82, 147, 0.6);
  color: #ffffff !important;
}

.hero-price-btn .currency-symbol {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

/* Right Feature Stack Styling */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-self: end;
  padding-right: 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #155293;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21, 82, 147, 0.4);
}

.hero-feature-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.desktop-br {
  display: inline;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
  .desktop-br {
    display: none !important;
  }

  .hero {
    background: transparent !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-overlay {
    display: none !important;
  }

  .hero-container {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 580px !important;
    margin: auto 0 !important;
    padding: 20px 16px !important;
    gap: 0 !important;
    text-align: center !important;
  }

  .hero-left {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-heading {
    font-size: clamp(24px, 6.2vw, 36px) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }

  .hero-red-accent {
    width: 80px !important;
    height: 3.5px !important;
    margin: 0 auto 14px auto !important;
  }

  .hero-subtitle {
    font-size: clamp(13.5px, 3.6vw, 15.5px) !important;
    line-height: 1.55 !important;
    margin: 0 auto 20px auto !important;
    max-width: 95% !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .hero-btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-blue-btn,
  .hero-outline-btn,
  .hero-price-btn {
    flex: 1 !important;
    min-width: 120px !important;
    max-width: 180px !important;
    padding: 11px 12px !important;
    font-size: 13px !important;
    border-radius: 25px !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  .hero-right {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 20px !important;
    padding: 12px 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    justify-self: center !important;
    padding-right: 10px !important;
  }

  .hero-feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 5px !important;
    flex: 1 !important;
  }

  .hero-feature-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(21, 82, 147, 0.5) !important;
  }

  .hero-feature-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .hero-feature-text {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-align: center !important;
  }
}

@media (max-width: 420px) {
  .hero-container {
    padding: 12px 10px !important;
  }

  .hero-heading {
    font-size: 23px !important;
  }

  .hero-subtitle {
    font-size: 12.5px !important;
    margin-bottom: 16px !important;
  }

  .hero-btn-group {
    flex-direction: column !important;
    gap: 8px !important;
    max-width: 260px !important;
  }

  .hero-blue-btn,
  .hero-outline-btn,
  .hero-price-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 16px !important;
  }

  .hero-right {
    margin-top: 14px !important;
    padding: 10px 6px !important;
    gap: 4px !important;
  }

  .hero-feature-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .hero-feature-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .hero-feature-text {
    font-size: 9.5px !important;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 34, 34, 0.25);
  border: 1px solid rgba(255, 77, 77, 0.5);
  color: #ff4d4d;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}

.badge-icon {
  display: flex;
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-tamil {
  font-family: 'Noto Serif Tamil', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.3;
}

.hero-title-main {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin-bottom: 30px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

/* Hero Three-Way Navigation Cards */
.hero-nav-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(6, 24, 44, 0.78) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  color: var(--white) !important;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  position: relative;
  overflow: hidden;
}

.hero-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: var(--red-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-nav-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 77, 0.6) !important;
  box-shadow: 0 14px 40px rgba(198, 34, 34, 0.4) !important;
  background: rgba(12, 37, 64, 0.9) !important;
}

.hero-nav-card:hover::before {
  opacity: 1;
}

.card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(198, 34, 34, 0.2);
  border: 1px solid rgba(255, 77, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-nav-card:hover .card-icon-box {
  transform: scale(1.08);
  background: rgba(198, 34, 34, 0.4);
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff4d4d;
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 20px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.hero-nav-card:hover .card-link-btn {
  gap: 12px;
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ff4d4d;
}

.stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.slide-dot.active {
  background: var(--red-light);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(229, 46, 46, 0.8);
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--red-gradient);
  border-color: var(--red-primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.hero-bottom-border {
  height: 6px;
  background: var(--red-gradient);
}

/* ============================================
   COMMON SECTION ELEMENTS
   ============================================ */
.section-tag {
  display: inline-block;
  font-family: 'Noto Serif Tamil', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red-primary);
  background: var(--red-pale);
  border: 1.5px solid var(--red-light);
  padding: 6px 22px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.section-tag::before,
.section-tag::after {
  content: '✦';
  color: var(--red-primary);
  font-size: 10px;
  margin: 0 6px;
}

.section-title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title-center {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--red-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

.highlight {
  color: var(--red-primary);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3.5px;
  background: var(--red-gradient);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Kolam borders */
.kolam-top-border,
.kolam-bottom-border {
  height: 5px;
  background: repeating-linear-gradient(90deg,
      var(--red-primary) 0px, var(--red-primary) 8px,
      transparent 8px, transparent 12px,
      var(--navy-primary) 12px, var(--navy-primary) 20px,
      transparent 20px, transparent 24px);
  opacity: 0.85;
}

.kolam-top-border {
  margin-bottom: 0;
}

.kolam-bottom-border {
  margin-top: 0;
}

.divider-svg {
  width: 200px;
  height: 20px;
  margin-bottom: 20px;
}

.intro-divider {
  margin: 10px 0 20px;
}

/* ============================================
   BUTTONS & ANIMATION EFFECTS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(198, 34, 34, 0.4);
}

.btn-primary:hover {
  background: var(--red-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(198, 34, 34, 0.6);
}

.text-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--red-primary);
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  margin-top: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.text-link-btn:hover {
  color: var(--red-light);
  transform: translateX(6px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 34, 34, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(198, 34, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(198, 34, 34, 0);
  }
}

/* ============================================
   INTRO SECTION (SAKTHI FRAMED PHOTO LAYOUT)
   ============================================ */
.intro-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-visual {
  position: relative;
}

/* 2-Image Sharp White Picture Frame Grid */
.intro-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.white-frame {
  background: #ffffff;
  padding: 8px;
  border-radius: 0 !important;
  border: 28px solid #ffffff;
  outline: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 45px rgba(12, 37, 64, 0.2), 0 4px 14px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

#aboutFrame1 {
  margin-top: 70px;
}

.frame-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.frame-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.frame-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.frame-slide.exit {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.intro-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
}

.intro-badge-floating {
  position: absolute;
  bottom: 20px;
  right: 15px;
  background: var(--navy-primary);
  color: var(--white);
  border: 2px solid var(--red-primary);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  z-index: 5;
}

.intro-badge-floating span {
  color: #ff4d4d;
}

.intro-badge-floating strong {
  color: var(--white);
  font-weight: 700;
}

.intro-stats-row {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.i-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.i-stat:last-child {
  border-right: none;
}

.i-stat strong {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--red-primary);
}

.i-stat span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-para {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 12px;
}

.intro-highlight-box {
  background: var(--red-pale);
  border-left: 4px solid var(--red-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.intro-highlight-box p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION (FILTER TABS & CARDS GRID)
   ============================================ */
.services-section {
  padding: 90px 0;
  position: relative;
  background: var(--cream);
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(12, 37, 64, 0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

/* Services Header & Right Aligned Filter Icons */
.services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.services-header-left {
  max-width: 600px;
  text-align: left;
}

.section-subtitle-left {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 6px;
}

.filter-icons-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.filter-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.filter-icon-btn svg {
  transition: transform 0.3s ease;
}

.filter-icon-btn:hover,
.filter-icon-btn.active {
  background: var(--red-gradient);
  color: var(--white);
  border-color: var(--red-primary);
  box-shadow: 0 4px 16px rgba(198, 34, 34, 0.35);
  transform: translateY(-2px);
}

.filter-icon-btn:hover svg,
.filter-icon-btn.active svg {
  stroke: var(--white);
  transform: scale(1.1);
}

@keyframes service3DUnfold {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(-22deg) rotateX(10deg) translateY(45px) scale(0.88);
    filter: blur(6px);
  }

  65% {
    opacity: 1;
    transform: perspective(1000px) rotateY(4deg) rotateX(-2deg) translateY(-4px) scale(1.015);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
  }
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.service-card {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}

.service-card-media {
  width: 380px;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.image-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background: var(--red-gradient);
  color: var(--white);
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 34px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 5;
  pointer-events: none;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card::before {
  display: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 12px 0;
  width: 100%;
}

.service-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.service-title-wrap h3 {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  text-transform: uppercase;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--red-primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.5px;
  margin-left: auto;
  white-space: nowrap;
}

.service-tag-blue {
  background: #1565c0;
}

.service-tag-gold {
  background: var(--red-gradient);
  color: var(--white);
}

.service-tag-orange {
  background: #e65100;
}

.service-divider {
  height: 1px;
  background: var(--border);
  margin: 0 28px 16px 28px;
}

.service-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-primary);
  padding: 0 28px;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 28px;
  margin-bottom: 18px;
}

/* --- INQUIRY / FILLING FORM STYLES --- */
.story-form-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy-pale) 0%, var(--cream) 100%);
  position: relative;
}

.story-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  max-width: 850px;
  margin: 0 auto;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  width: 100%;
}

.form-group-item label {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-input-ctrl {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: var(--navy-deep);
  background: var(--navy-pale);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-input-ctrl:focus {
  border-color: var(--red-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(198, 34, 34, 0.14);
}

select.form-input-ctrl {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230c2540' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}

textarea.form-input-ctrl {
  resize: vertical;
  min-height: 95px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  min-height: 48px;
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--red-gradient);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(198, 34, 34, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit-btn:hover {
  background: var(--red-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(198, 34, 34, 0.48);
}

.form-submit-btn:active {
  transform: scale(0.98);
}

.service-best-for {
  padding: 0 28px;
  margin-bottom: 22px;
}

.bf-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.bf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bf-tags span {
  background: var(--navy-pale);
  color: var(--navy-primary);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.bf-tags span:hover {
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 0 28px 24px 28px;
  margin-top: auto;
}

.service-cta:hover {
  color: var(--red-dark);
  transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE US (FRAMER EXPAND-ONHOVER LIST)
   ============================================ */
.why-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}

.expand-hover-list {
  max-width: 960px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
}

.expand-hover-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 22px 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}

.expand-hover-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.item-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.item-num {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
  min-width: 28px;
}

.item-title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.item-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.item-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.item-text {
  flex: 1;
}

.item-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.item-media {
  width: 240px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover & Active Expanded States */
.expand-hover-item:hover,
.expand-hover-item.active {
  background: var(--navy-pale);
  padding-left: 28px;
  padding-right: 28px;
  border-bottom-color: var(--red-primary);
  box-shadow: var(--shadow-sm);
}

.expand-hover-item:hover .item-num,
.expand-hover-item.active .item-num {
  color: var(--red-primary);
}

.expand-hover-item:hover .item-title,
.expand-hover-item.active .item-title {
  color: var(--red-primary);
}

.expand-hover-item:hover .item-arrow,
.expand-hover-item.active .item-arrow {
  color: var(--red-primary);
  transform: translateX(6px);
}

.expand-hover-item:hover .item-body,
.expand-hover-item.active .item-body {
  max-height: 180px;
  opacity: 1;
  margin-top: 18px;
}

.expand-hover-item:hover .item-img,
.expand-hover-item.active .item-img {
  transform: scale(1.06);
}

.why-icon svg {
  transition: var(--transition);
}

.why-card:hover .why-icon svg {
  transform: scale(1.18) rotate(5deg);
}

.why-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TECHNOLOGY SECTION (TRANSPARENT + TABBED SPECS)
   ============================================ */
.tech-section {
  padding: 90px 0;
  background: transparent;
  position: relative;
}

.tech-dark-band {
  background: transparent;
  padding: 0;
  position: relative;
}

.tech-dark-band::before {
  display: none;
}

.tech-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left — Image + Stats */
.tech-main-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  background: var(--white);
}

.tech-big-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease, transform 0.5s ease;
}

.tech-img-wrap:hover .tech-big-img {
  transform: scale(1.04);
}

.tech-live-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(12, 37, 64, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.tlc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 8px #4caf50;
  animation: pulseDot 1.6s infinite;
}

.tech-stat-strip {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  gap: 0;
}

.tss-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tss-item strong {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-primary);
  letter-spacing: 0.5px;
}

.tss-item span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tss-divider {
  width: 1px;
  height: 38px;
  background: var(--border);
  margin: 0 8px;
}

/* Right — Info Column */
.tech-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  background: var(--red-pale);
  border: 1px solid var(--red-light);
  padding: 5px 18px;
  border-radius: var(--radius-xl);
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  margin-bottom: 8px;
}

.tech-big-title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 0.5px;
  margin: 0;
}

.wave-underline-title {
  position: relative;
  display: inline-block;
  color: var(--red-primary);
  padding-bottom: 8px;
}

.wave-underline-svg {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 14px;
  overflow: visible;
}

.tech-intro-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Tabs */
.tech-spec-tabs {
  display: flex;
  gap: 6px;
  background: var(--navy-pale);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 5px;
  width: fit-content;
}

.tspec-tab {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tspec-tab:hover {
  color: var(--navy-primary);
  background: rgba(12, 37, 64, 0.05);
}

.tspec-tab.active {
  background: var(--red-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(198, 34, 34, 0.35);
}

/* Panels */
.tech-spec-panels {
  position: relative;
  min-height: 160px;
}

.tspec-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  animation: panelFadeIn 0.35s ease;
}

.tspec-panel.active {
  display: flex;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tsp-icon {
  width: 48px;
  height: 48px;
  background: var(--red-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  flex-shrink: 0;
}

.tspec-panel h4 {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.tspec-panel p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.tsp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red-primary);
  background: var(--red-pale);
  border: 1px solid var(--red-light);
  padding: 3px 14px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.5px;
  width: fit-content;
}

.tsp-badge-green {
  color: #2e7d32;
  background: #e8f5e9;
  border-color: #a5d6a7;
}

/* Bottom Chips */
.tech-bottom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tbc-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.tbc-chip svg {
  color: #2e7d32;
}

.tbc-chip:hover {
  border-color: var(--red-primary);
  transform: translateY(-2px);
}

/* ============================================
   HOW IT WORKS (SAKTHI 4-STEP PROCESS BAR)
   ============================================ */
.how-section {
  padding: 90px 0;
  background: var(--navy-deep);
  position: relative;
  text-align: center;
}

.how-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(198, 34, 34, 0.08) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
}

.how-section .section-tag {
  color: #ff4d4d;
  background: rgba(198, 34, 34, 0.15);
  border-color: rgba(255, 77, 77, 0.4);
}

.how-section .section-title-center {
  color: var(--white);
}

.how-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.steps-track {
  position: relative;
  padding: 20px 0;
  margin-bottom: 48px;
}

.steps-line {
  position: absolute;
  top: 78px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 3px;
  background: var(--red-gradient);
  opacity: 0.7;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  transition: var(--transition);
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff4d4d;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.step-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red-primary);
  margin-bottom: 16px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  background: var(--navy-primary);
}

.step-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.95);
}

.step-item:hover .step-img-wrap {
  border-color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(198, 34, 34, 0.85);
}

.step-item:hover .step-circle-img {
  transform: scale(1.16);
  filter: brightness(1.08);
}

.step-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.step-connector {
  font-size: 24px;
  color: #ff4d4d;
  margin-top: 68px;
  flex-shrink: 0;
  opacity: 0.7;
}

.how-cta {
  margin-top: 12px;
}

/* ============================================
   STORY & SOCIAL MISSION SECTION
   ============================================ */
.story-section {
  padding: 150px 0 90px;
  background: var(--white);
  position: relative;
}

.story-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(12, 37, 64, 0.02) 40px, rgba(12, 37, 64, 0.02) 41px);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.story-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 35px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.story-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.story-photo-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.story-quote {
  background: var(--red-pale);
  border-left: 4px solid var(--red-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}

.story-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--navy-primary);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.6;
}

.story-quote cite {
  font-size: 13px;
  color: var(--text-muted);
}

.story-para {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--navy-pale);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateX(6px);
  background: var(--white);
  border-color: var(--red-primary);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 13px;
  color: var(--text-muted);
}

.movement-box {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-deep));
  border: 2px solid var(--red-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  margin-top: 28px;
  box-shadow: var(--shadow-md);
}

.movement-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.movement-box h3 span {
  color: #ff4d4d;
}

.movement-box p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: var(--transition);
  border: 2px solid var(--border);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 80px;
  color: var(--navy-light);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-primary);
}

.testi-card-featured {
  background: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
}

.testi-card-featured::before {
  color: rgba(255, 255, 255, 0.1);
}

.testi-card-featured p {
  color: rgba(255, 255, 255, 0.92);
}

.testi-card-featured .testi-author strong {
  color: #ff4d4d;
}

.testi-card-featured .testi-author span {
  color: rgba(255, 255, 255, 0.65);
}

.testi-stars {
  color: var(--red-primary);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card-featured .testi-stars {
  color: #ff4d4d;
}

.testi-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-primary);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card-featured .testi-avatar {
  background: var(--red-gradient);
  color: var(--white);
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CONTACT / BOOKING
   ============================================ */
.contact-section,
.contact-sub-wrapper {
  padding: 85px 0;
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--navy-pale);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  box-sizing: border-box;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border-color: rgba(198, 34, 34, 0.4);
}

.cm-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(12, 37, 64, 0.08);
  border: 1px solid rgba(12, 37, 64, 0.06);
  flex-shrink: 0;
}

.cm-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy-primary);
}

.contact-method strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 3px;
}

.contact-method a,
.contact-method span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #155293;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.contact-method a:hover {
  text-decoration: underline;
  color: var(--red-primary);
}

/* Booking Form Wrapper */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(12, 37, 64, 0.08);
  box-sizing: border-box;
  width: 100%;
}

.booking-form {
  width: 100%;
}

.booking-form-title,
.booking-form h3 {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-light);
  text-transform: none;
  letter-spacing: 0.3px;
}

/* Store Location Map */
.store-map-wrap {
  margin-top: 50px;
  width: 100%;
}

.store-map-title,
.store-map-wrap h3 {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 16px;
  text-align: center;
}

.store-map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 4px rgba(198, 34, 34, 0.12);
}

.form-group textarea {
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-top-pattern {
  height: 6px;
  background: var(--red-gradient);
}

.footer .container {
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.7));
}

.footer-brand-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.footer-brand-tamil {
  font-family: 'Noto Serif Tamil', serif;
  font-size: 13px;
  color: #ff4d4d;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--red-gradient);
  border-color: var(--red-primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
}

.footer-links-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ff4d4d;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 77, 77, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links-col ul li a:hover {
  color: #ff4d4d;
  padding-left: 6px;
}

.footer-contact-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.4;
}

.footer-contact-info p>a {
  white-space: nowrap;
}

.footer-contact-info p>span:not(.footer-icon) {
  word-break: break-word;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: #ff4d4d;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-kolam {
  display: none !important;
}

.footer-kolam-svg {
  width: 100%;
  max-width: 400px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.footer-tamil-text {
  font-family: 'Noto Serif Tamil', serif;
  color: #ff4d4d;
}

.footer-mission {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  left: 70px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--red-primary);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(5px);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid var(--red-primary);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red-gradient);
  color: var(--white);
  transform: translateY(-4px) scale(1.08);
}

/* ============================================
   AOS ANIMATIONS (CSS SCROLL REVEAL)
   ============================================ */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos="zoom-in-left"] {
  transform: translateX(30px) scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Base Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ============================================ */

/* Hamburger Animation toggle state */
.hamburger.active {
  background: rgba(198, 34, 34, 0.12) !important;
  border-color: rgba(198, 34, 34, 0.35) !important;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
  background-color: var(--red-primary) !important;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
  background-color: var(--red-primary) !important;
}

/* Mobile backdrop overlay for menu */
.nav-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 24, 44, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
  pointer-events: none;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* --- TABLETS & SMALL DESKTOPS (max-width: 1024px) --- */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 14px 20px;
    gap: 20px;
  }

  .hero-title-main {
    font-size: 52px;
  }

  .hero-title-tamil {
    font-size: 28px;
  }

  .tspec-container,
  .about-split-grid,
  .booking-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .steps-wrapper,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .expand-hover-list {
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
  }

  .expand-hover-item {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    flex: none !important;
  }

  .expand-hover-item.active {
    height: auto !important;
    min-height: auto !important;
    flex: none !important;
  }
}

/* --- MOBILE & TABLET PORTRAIT (max-width: 900px) --- */
@media screen and (max-width: 900px) {

  /* Top Bar Adaptation */
  .top-header-bar {
    font-size: 11px;
    padding: 8px 0;
  }

  .top-header-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-header-right {
    gap: 14px;
  }

  /* Header adjustments on mobile */
  .header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: #ffffff !important;
    box-shadow: 0 2px 14px rgba(12, 37, 64, 0.08) !important;
    border-bottom: 1px solid rgba(12, 37, 64, 0.08) !important;
  }

  .header-inner {
    padding: 10px 20px;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-img {
    height: 52px !important;
    max-height: 52px !important;
    width: auto;
  }

  /* Hamburger Menu Visible & Crisp */
  .hamburger {
    display: flex !important;
    z-index: 1002;
    position: relative;
    cursor: pointer;
  }

  .hamburger span {
    background: var(--navy-primary);
  }

  /* Mobile Slide-Out Nav Drawer */
  .nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 320px !important;
    max-width: 86vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(180deg, #07192d 0%, #0c2540 55%, #061525 100%) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 85px 22px 36px 22px !important;
    gap: 6px !important;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.55) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: right 0.38s cubic-bezier(0.2, 0.9, 0.3, 1) !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    margin-left: 0 !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    right: 0 !important;
  }

  .nav-link {
    width: 100% !important;
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    border: 1px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.02) !important;
    transition: all 0.22s ease !important;
    letter-spacing: 0.2px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: normal !important;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    transform: translateX(4px) !important;
    border-left-color: rgba(198, 34, 34, 0.6) !important;
  }

  .nav-link.active {
    background: linear-gradient(135deg, rgba(198, 34, 34, 0.22) 0%, rgba(198, 34, 34, 0.08) 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border: 1px solid rgba(198, 34, 34, 0.35) !important;
    border-left: 4px solid #d32f2f !important;
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-btn-pickup {
    margin-top: 18px !important;
    width: 100% !important;
    padding: 13px 20px !important;
    background: var(--red-gradient) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(198, 34, 34, 0.45) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    transform: none !important;
    white-space: nowrap !important;
  }

  .nav-btn-pickup:hover {
    background: var(--red-gradient-hover) !important;
    box-shadow: 0 8px 24px rgba(198, 34, 34, 0.6) !important;
  }

  /* Slider Controls Mobile Position */
  .slider-controls {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
  }

  .slider-prev,
  .slider-next {
    width: 38px;
    height: 38px;
    font-size: 20px;
    top: 52%;
    z-index: 25;
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .slider-prev {
    left: 10px;
  }

  /* Intro Section (Your Neighbourhood Laundry) Mobile Styles */
  .intro-section {
    padding: 55px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center;
  }

  .intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .intro-divider {
    margin: 8px auto 18px;
  }

  .intro-para {
    font-size: 14.5px;
    line-height: 1.65;
    text-align: center;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .intro-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
    width: 100%;
  }

  .white-frame {
    border: 12px solid #ffffff !important;
    box-shadow: 0 10px 25px rgba(12, 37, 64, 0.15) !important;
  }

  #aboutFrame1 {
    margin-top: 0 !important;
  }

  .frame-slider {
    height: 240px !important;
  }

  /* Services Section Mobile Adaptations */
  .services-section {
    padding: 60px 0;
  }

  .services-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
  }

  .services-header-left {
    max-width: 100% !important;
  }

  .filter-icons-right {
    width: 100% !important;
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }

  .filter-icon-btn {
    flex: 0 0 auto !important;
  }

  .services-grid {
    gap: 32px !important;
  }

  .service-card {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
    background: #ffffff !important;
    border-radius: var(--radius-md) !important;
    padding: 20px !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid var(--border) !important;
  }

  .service-card-media {
    width: 100% !important;
    height: 220px !important;
    flex-shrink: 0 !important;
  }

  .service-card-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .service-title-wrap {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .service-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .service-best-for {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .bf-tags {
    flex-wrap: wrap !important;
  }

  /* Why Choose Us Section Mobile Adaptations */
  .why-section {
    padding: 60px 0;
  }

  .expand-hover-list {
    margin-top: 24px;
    width: 100%;
  }

  .expand-hover-item {
    padding: 16px 14px !important;
  }

  .expand-hover-item:hover,
  .expand-hover-item.active {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .item-header {
    gap: 12px;
  }

  .item-num {
    font-size: 16px;
    min-width: 24px;
  }

  .item-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .item-arrow {
    font-size: 18px;
  }

  .item-body {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .expand-hover-item:hover .item-body,
  .expand-hover-item.active .item-body {
    max-height: 450px !important;
    opacity: 1;
    margin-top: 14px;
  }

  .item-text p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .item-media {
    width: 100% !important;
    height: 160px !important;
    border-radius: var(--radius-sm);
  }

  /* Equipment & Technology Section Mobile Adaptations */
  .tech-section {
    padding: 55px 0;
  }

  .tech-band-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .tech-info-col {
    order: -1;
    align-items: center;
    text-align: center;
  }

  .tech-big-title {
    font-size: 28px !important;
    text-align: center;
  }

  .tech-spec-tabs {
    width: 100% !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .tspec-tab {
    flex: 1 1 auto !important;
    padding: 9px 12px !important;
    font-size: 12px !important;
    text-align: center !important;
  }

  .tech-spec-panels {
    min-height: auto !important;
  }

  .tspec-panel {
    text-align: center;
    align-items: center !important;
  }

  .tspec-panel h4 {
    font-size: 17px !important;
  }

  .tspec-panel p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .tech-stat-strip {
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 14px 16px !important;
    gap: 12px !important;
  }

  .tss-divider {
    display: none !important;
  }

  .tss-item {
    flex: 1 1 30% !important;
    min-width: 90px !important;
  }

  .tss-item strong {
    font-size: 18px !important;
  }

  .tss-item span {
    font-size: 10px !important;
  }

  /* How It Works Section Mobile Adaptations */
  .how-section {
    padding: 60px 0;
  }

  .steps-track {
    padding: 0;
    margin-bottom: 24px;
  }

  .steps-line {
    display: none !important;
  }

  .steps-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .step-connector {
    display: none !important;
  }

  .step-item {
    flex: none !important;
    width: 100% !important;
    max-width: 360px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--radius-md) !important;
    padding: 24px 20px !important;
  }

  .step-item h4 {
    color: var(--white) !important;
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .step-item p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* Contact Us Section Mobile Adaptations */
  .contact-section,
  .contact-sub-wrapper {
    padding: 50px 0 !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    width: 100% !important;
  }

  .contact-info {
    text-align: left !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .contact-info .section-title {
    font-size: 28px !important;
    text-align: left !important;
    margin-bottom: 8px !important;
  }

  .contact-info .intro-divider {
    margin-bottom: 14px !important;
  }

  .contact-info p {
    text-align: left !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .contact-methods {
    width: 100% !important;
    gap: 12px !important;
  }

  .contact-method {
    padding: 14px 16px !important;
    gap: 14px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cm-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

  .cm-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-method strong {
    font-size: 12.5px !important;
  }

  .contact-method a,
  .contact-method span {
    font-size: 13.5px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    line-height: 1.4 !important;
  }

  .contact-form-wrap {
    padding: 24px 18px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(12, 37, 64, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .booking-form-title,
  .booking-form h3 {
    font-size: 19px !important;
    margin-bottom: 16px !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    border-bottom: 1.5px solid var(--navy-light) !important;
  }

  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .form-group-item {
    margin-bottom: 14px !important;
    width: 100% !important;
  }

  .form-group-item label {
    font-size: 12px !important;
  }

  .form-input-ctrl {
    font-size: 16px !important;
    /* Prevents iOS auto-zoom */
    padding: 12px 14px !important;
    border-radius: 10px !important;
  }

  .form-submit-btn {
    padding: 13px 20px !important;
    min-height: 48px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    margin-top: 4px !important;
    width: 100% !important;
  }

  .store-map-wrap {
    margin-top: 36px !important;
    width: 100% !important;
  }

  .store-map-title,
  .store-map-wrap h3 {
    font-size: 19px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .store-map-wrap iframe,
  #storeMap iframe {
    height: 260px !important;
    border-radius: 14px !important;
    width: 100% !important;
  }

  /* Testimonials Grid Mobile */
  .testimonials-section {
    padding: 55px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .testi-card {
    padding: 24px 20px !important;
  }

  /* Filter Bar Scrollable */
  .filter-bar,
  .service-filter-bar {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 12px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab,
  .filter-icon-btn {
    flex: 0 0 auto;
  }
}

/* --- MOBILE PHONES & SMALL SCREENS (max-width: 576px) --- */
@media screen and (max-width: 576px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .logo-img {
    height: 48px !important;
    max-height: 48px !important;
    width: auto;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .nav {
    width: 300px !important;
    max-width: 90vw !important;
    padding: 85px 18px 30px 18px !important;
  }

  .nav-link {
    font-size: 14px !important;
    padding: 11px 14px !important;
    line-height: 1.4 !important;
  }

  /* Section Title Spacing */
  .section-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }

  .section-subtitle {
    font-size: 14px !important;
  }

  .section-header {
    margin-bottom: 32px !important;
  }

  /* Single Column Grids for Small Screens */
  .services-grid,
  .steps-wrapper,
  .steps-grid,
  .footer-grid,
  .features-grid,
  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Contact Us Section Small Screen Adjustments (<576px) */
  .contact-section,
  .contact-sub-wrapper {
    padding: 38px 0 !important;
  }

  .contact-grid {
    gap: 22px !important;
  }

  .contact-form-wrap {
    padding: 20px 14px !important;
    border-radius: 14px !important;
  }

  .contact-method {
    padding: 12px 12px !important;
    gap: 12px !important;
    border-radius: 10px !important;
  }

  .cm-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .cm-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .store-map-wrap {
    margin-top: 28px !important;
  }

  .store-map-wrap iframe,
  #storeMap iframe {
    height: 230px !important;
    border-radius: 12px !important;
  }

  /* Service Card Touch Friendliness */
  .service-card {
    padding: 16px !important;
  }

  .service-card-media {
    height: 180px !important;
  }

  .service-title-wrap h3 {
    font-size: 19px !important;
  }

  /* Step Cards Flow on Mobile */
  .step-card {
    padding: 24px 20px !important;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 16px !important;
  }

  .flow-arrow {
    display: none !important;
  }

  /* Expand Hover Items in Why Section */
  .expand-hover-item {
    padding: 16px !important;
  }

  .expand-hover-title {
    font-size: 16px !important;
  }

  /* Booking Form */
  .form-row {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 15px !important;
    padding: 12px 16px !important;
  }

  .booking-card {
    padding: 24px 18px !important;
    border-radius: var(--radius-md) !important;
  }

  .booking-submit-btn {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
  }

  /* Footer Layout */
  .footer-col {
    text-align: center;
  }

  .footer-col .logo {
    justify-content: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Toast Notification Safe Area on Mobile */
  .salavai-toast {
    bottom: 20px !important;
    right: 16px !important;
    left: 16px !important;
    text-align: center !important;
  }
}

/* Persistent Floating Quick Book Button (Available on every page) */
.floating-book-btn {
  position: fixed;
  bottom: 28px;
  right: 85px;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-gradient);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(198, 34, 34, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-book-btn:hover {
  background: var(--red-gradient-hover);
  color: var(--white) !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(198, 34, 34, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-book-btn {
  background: var(--red-gradient) !important;
  color: var(--white) !important;
  padding: 8px 24px !important;
  border-radius: 30px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(198, 34, 34, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: var(--transition) !important;
}

.nav-book-btn:hover {
  background: var(--red-gradient-hover) !important;
  color: var(--white) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(198, 34, 34, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
  .floating-book-btn {
    bottom: 85px;
    right: 20px;
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* Ensure no unwanted horizontal overflow */
body,
html {
  max-width: 100vw;
  overflow-x: hidden !important;
}

/* =============================================
   TRANSPARENT PRICES SECTION STYLES
   ============================================= */
.prices-section {
  padding: 90px 0;
  background: var(--navy-pale);
  position: relative;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg, 16px);
  padding: 40px 30px 35px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  box-shadow: 0 10px 30px rgba(6, 24, 44, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 24, 44, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 2px solid var(--navy-primary);
  box-shadow: 0 15px 45px rgba(12, 37, 64, 0.15);
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--navy-light);
  color: var(--navy-primary);
  margin-bottom: 16px;
}

.pricing-badge.badge-popular {
  background: var(--red-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(198, 34, 34, 0.3);
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 4px;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-muted, #666);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-primary);
}

.pricing-price .amount {
  font-size: 46px;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
}

.pricing-price .unit {
  font-size: 13px;
  color: #777;
  font-weight: 500;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-dark, #333);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features .check-icon {
  color: #2e7d32;
  font-weight: 800;
  font-size: 15px;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px 20px;
  font-weight: 600;
}

/* --- MOBILE RESPONSIVENESS FOR SIMPLE & TRANSPARENT PRICING --- */
@media (max-width: 992px) {
  .prices-sub-wrapper {
    min-height: auto !important;
    height: auto !important;
    padding: 60px 0 !important;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
    width: 100% !important;
    margin: 0 auto !important;
    gap: 24px !important;
  }

  .pricing-card {
    padding: 30px 24px 28px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 576px) {
  .prices-sub-wrapper {
    padding: 45px 0 !important;
  }

  .prices-sub-wrapper .section-header {
    margin-bottom: 24px !important;
  }

  .prices-sub-wrapper .section-title-center {
    font-size: clamp(24px, 6.5vw, 30px) !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .prices-sub-wrapper .section-subtitle {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    max-width: 95% !important;
    margin: 0 auto !important;
  }

  .pricing-cards-grid {
    max-width: 100% !important;
    gap: 18px !important;
  }

  .pricing-card {
    padding: 24px 18px 22px !important;
    box-shadow: 0 4px 18px rgba(6, 24, 44, 0.08) !important;
  }

  .pricing-title {
    font-size: 19px !important;
  }

  .pricing-sub {
    font-size: 12px !important;
    margin-bottom: 16px !important;
  }

  .pricing-price {
    margin-bottom: 18px !important;
  }

  .pricing-price .currency {
    font-size: 20px !important;
  }

  .pricing-price .amount {
    font-size: 36px !important;
  }

  .pricing-price .unit {
    font-size: 12px !important;
  }

  .pricing-features {
    margin: 0 0 22px 0 !important;
    gap: 10px !important;
  }

  .pricing-features li {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .pricing-btn {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
  }
}


/* ============================================
   HERO NAV CARDS — PREMIUM GLASSMORPHISM
   ============================================ */

/* Rotating conic gradient animation for border */
@keyframes heroCardBorderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Entrance stagger */
@keyframes heroCardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pulse ring on the icon */
@keyframes heroIconPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
  }
}

/* Shimmer sweep for the CTA */
@keyframes heroCtaShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* --- Grid Container --- */
.hero-nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  perspective: 900px;
}

/* --- Individual Card --- */
.hero-nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px;
  border-radius: 20px;
  background: rgba(10, 28, 52, 0.55);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  animation: heroCardFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform;
  z-index: 1;
}

.hero-nav-card:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-nav-card:nth-child(2) {
  animation-delay: 0.30s;
}

.hero-nav-card:nth-child(3) {
  animation-delay: 0.45s;
}

/* --- Animated Gradient Border (pseudo-element technique) --- */
.hero-card-border-anim {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  z-index: -2;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-card-border-anim::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      rgba(255, 77, 77, 0.7) 25%,
      transparent 50%,
      rgba(198, 34, 34, 0.5) 75%,
      transparent 100%);
  animation: heroCardBorderSpin 4s linear infinite;
}

.hero-nav-card:hover .hero-card-border-anim {
  opacity: 1;
}

/* --- Background glow on hover --- */
.hero-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255, 77, 77, 0.12) 0%, transparent 60%);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero-nav-card:hover .hero-card-glow {
  opacity: 1;
}

/* --- Card Hover State --- */
.hero-nav-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 77, 77, 0.08);
  border-color: rgba(255, 77, 77, 0.25);
}

/* --- Card Number (top-right) --- */
.hero-card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -1px;
  user-select: none;
  pointer-events: none;
  transition: color 0.4s ease;
}

.hero-nav-card:hover .hero-card-number {
  color: rgba(255, 77, 77, 0.10);
}

/* --- Corner Accent (decorative triangle) --- */
.hero-card-corner-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.18) 0%, transparent 60%);
  border-radius: 20px 0 0 0;
  pointer-events: none;
  transition: width 0.4s ease, height 0.4s ease;
}

.hero-nav-card:hover .hero-card-corner-accent {
  width: 70px;
  height: 70px;
}

/* --- Icon Ring --- */
.hero-card-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.15), rgba(198, 34, 34, 0.10));
  border: 1.5px solid rgba(255, 77, 77, 0.30);
  color: #ff4d4d;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  flex-shrink: 0;
}

.hero-nav-card:hover .hero-card-icon-ring {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.25), rgba(198, 34, 34, 0.18));
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.20);
  animation: heroIconPulse 2s ease-in-out infinite;
}

/* --- Card Content --- */
.hero-card-content {
  flex: 1;
  margin-bottom: 20px;
}

.hero-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.hero-nav-card:hover .hero-card-title {
  color: #ff9a9a;
}

.hero-card-desc {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
}

/* --- CTA Row --- */
.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s ease;
}

.hero-nav-card:hover .hero-card-cta {
  border-color: rgba(255, 77, 77, 0.20);
}

.hero-card-cta-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 77, 77, 0.9) 50%, rgba(255, 255, 255, 0.75) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s ease;
}

.hero-nav-card:hover .hero-card-cta-text {
  animation: heroCtaShimmer 2s ease infinite;
}

.hero-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.12);
  color: #ff4d4d;
  transition: transform 0.35s ease, background 0.35s ease;
}

.hero-nav-card:hover .hero-card-arrow {
  background: rgba(255, 77, 77, 0.25);
  transform: translateX(4px);
}


/* --- Responsive --- */
@media (max-width: 960px) {
  .hero-nav-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-nav-card:nth-child(3) {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-nav-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-nav-card:nth-child(3) {
    grid-column: span 1;
    max-width: none;
  }

  .hero-nav-card {
    padding: 24px 20px 20px;
  }

  .hero-card-icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-card-number {
    font-size: 36px;
  }
}

/* ============================================
   HERO QUICK NAVIGATION LINKS
   ============================================ */
.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-quick-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 34, 34, 0.25) 0%, rgba(140, 22, 22, 0.15) 100%);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-quick-link:hover::before {
  opacity: 1;
}

.hero-quick-link:hover {
  border-color: rgba(255, 77, 77, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 34, 34, 0.25), 0 0 0 1px rgba(255, 77, 77, 0.15);
  color: #ffffff;
}

.hero-quick-link svg:first-child {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  stroke: #ff4d4d;
  transition: transform 0.3s ease;
}

.hero-quick-link:hover svg:first-child {
  transform: scale(1.12);
}

.hero-quick-link span {
  position: relative;
  z-index: 1;
}

.hero-quick-link-arrow {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  stroke: #ff4d4d;
}

.hero-quick-link:hover .hero-quick-link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
  .hero-quick-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-quick-link {
    font-size: 13.5px;
    padding: 10px 20px;
  }
}

/* ============================================
   HERO RIGHT SIDE CARDS (SINGLE ROW)
   ============================================ */
.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-right-cards-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

.hero-right-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: rgba(12, 37, 64, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-right-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 34, 34, 0.2) 0%, rgba(140, 22, 22, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 16px;
}

.hero-right-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 77, 0.5);
  box-shadow: 0 14px 35px rgba(198, 34, 34, 0.3), 0 0 15px rgba(255, 77, 77, 0.2);
}

.hero-right-card:hover::before {
  opacity: 1;
}

.hero-rc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(198, 34, 34, 0.2);
  border: 1px solid rgba(255, 77, 77, 0.4);
  color: #ff4d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-right-card:hover .hero-rc-icon {
  transform: scale(1.08);
  background: #c62222;
  color: #ffffff;
}

.hero-rc-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-rc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.hero-rc-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ff4d4d;
  letter-spacing: 0.3px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-right-card:hover .hero-rc-cta {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hero {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .hero-right-cards-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   HOW IT WORKS - LIGHT BACKGROUND
   ============================================ */
.how-section {
  background: #f8fafc !important;
  background-color: #f8fafc !important;
  padding: 60px 0;
}

.how-bg {
  display: none !important;
}

.how-it-text {
  color: #0c2540;
}

/* Step items text colors */
.step-item h4 {
  color: #0c2540 !important;
  font-weight: 700 !important;
}

.step-item p {
  color: #334155 !important;
  line-height: 1.5 !important;
}

.step-number {
  color: #c62222 !important;
  font-weight: 700 !important;
}

.step-connector {
  color: #0c2540 !important;
}

.how-section .section-subtitle {
  color: #475569 !important;
}

/* Locate Nearby Store Transparent Button */
.why-locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #c62222;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 30px;
}

.why-locate-btn svg {
  stroke: #c62222;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.why-locate-btn:hover {
  color: #0c2540;
}

.why-locate-btn:hover svg {
  stroke: #0c2540;
}

.why-locate-btn:hover .why-locate-arrow {
  transform: translateX(4px);
}

/* View Price Transparent / Secondary Button in Why Section */
.why-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #155293;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 30px;
}

.why-price-btn svg {
  stroke: #155293;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.why-price-btn:hover {
  color: #c62222;
}

.why-price-btn:hover svg {
  stroke: #c62222;
}

.why-price-btn:hover .why-price-arrow {
  transform: translateX(4px);
}

/* ============================================
   YOUR NEIGHBOURHOOD LAUNDRY (INTRO SECTION) - LIGHT BACKGROUND
   ============================================ */
.intro-section {
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 70px 0;
}

/* ============================================
   WHO CAN JOIN SECTION STYLES
   ============================================ */
.who-can-join-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09) !important;
}

.who-can-join-card img {
  transition: transform 0.4s ease;
}

.who-can-join-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .who-can-join-row-top {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .who-can-join-row-bottom {
    max-width: 100% !important;
  }

  .about-sigp-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 640px) {

  .who-can-join-row-top,
  .who-can-join-row-bottom {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   ABOUT SIGP OVERLAPPING CIRCULAR DESIGN
   ============================================ */
.sigp-circles-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 450px;
  margin: 0 auto;
}

.sigp-circle-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(12, 37, 64, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #ffffff;
}

.sigp-circle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sigp-circle-item:hover img {
  transform: scale(1.06);
}

.sigp-circle-top {
  width: 250px;
  height: 250px;
  top: 0;
  right: 0;
  border: 7px solid #e7dce0;
  z-index: 2;
}

.sigp-circle-bottom {
  width: 270px;
  height: 270px;
  bottom: 0;
  left: 0;
  border: 7px solid #e7dce0;
  z-index: 1;
}

.sigp-circle-connector {
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #c62222;
  border: 3px solid #ffffff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  .csr-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 480px) {
  .sigp-circles-wrapper {
    height: 380px;
    max-width: 330px;
  }

  .sigp-circle-top {
    width: 200px;
    height: 200px;
  }

  .sigp-circle-bottom {
    width: 215px;
    height: 215px;
  }
}

/* Footer Icon SVG Styling */
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-icon svg {
  stroke: #c62222;
  transition: stroke 0.3s ease;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

/* ============================================
   BUSINESS PARTNER PROGRAM HERO SECTION
   ============================================ */
.bpp-intro-section {
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 0 0 0;
  background: #114487 url('images/BPP-BG.svg') no-repeat center center / cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.bpp-hero-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: calc(100vh - 120px);
}

.bpp-hero-content {
  flex: 1.2;
  max-width: 680px;
  align-self: center;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: left;
}

.bpp-hero-title {
  font-family: 'Poppins', 'Oswald', sans-serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 16px;
  text-transform: none;
  text-align: left;
}

.bpp-highlight-red {
  color: #e52323;
}

.bpp-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.68;
  margin-bottom: 14px;
  text-align: left;
}

.bpp-hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  margin-bottom: 10px;
  text-align: left;
}

.btn-bpp-white {
  background: #ffffff !important;
  color: #0c2540 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
  white-space: nowrap;
}

.btn-bpp-white:hover {
  background: #f1f5f9 !important;
  color: #c62222 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-bpp-outline {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.btn-bpp-outline:hover {
  background: #ffffff !important;
  color: #0c2540 !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.bpp-hero-image-wrapper {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  max-width: 680px;
  width: 100%;
  margin-right: -20px;
  margin-bottom: 0;
  line-height: 0;
}

.bpp-hero-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 60px);
  object-fit: contain;
  object-position: bottom right;
  display: block;
  margin-bottom: 0;
  vertical-align: bottom;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {
  .bpp-intro-section {
    height: auto !important;
    min-height: auto !important;
    padding: 50px 16px 0 16px !important;
    background-position: center top !important;
    align-items: center !important;
  }

  .bpp-hero-grid {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    gap: 24px !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
  }

  .bpp-hero-content {
    max-width: 100% !important;
    margin-top: 0 !important;
    padding: 0 !important;
    align-self: auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .bpp-hero-title {
    font-size: clamp(24px, 6vw, 34px) !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    text-align: center !important;
  }

  .bpp-hero-desc {
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: center !important;
    margin-bottom: 12px !important;
    max-width: 95% !important;
  }

  .bpp-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
    gap: 12px !important;
    margin: 20px auto 0 auto !important;
  }

  .btn-bpp-white,
  .btn-bpp-outline {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  .bpp-hero-image-wrapper {
    justify-content: center !important;
    align-items: flex-end !important;
    align-self: center !important;
    max-width: 480px !important;
    width: 100% !important;
    margin: 20px auto 0 auto !important;
    margin-bottom: 0 !important;
    line-height: 0 !important;
    display: flex !important;
  }

  .bpp-hero-img {
    max-height: 420px !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    transform: none !important;
    margin: 0 auto !important;
    margin-bottom: 0 !important;
    vertical-align: bottom !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .bpp-intro-section {
    padding: 40px 12px 0 12px !important;
  }

  .bpp-hero-title {
    font-size: 23px !important;
  }

  .bpp-hero-desc {
    font-size: 13px !important;
  }

  .btn-bpp-white,
  .btn-bpp-outline {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
  }

  .bpp-hero-image-wrapper {
    max-width: 360px !important;
    width: 100% !important;
    margin: 16px auto 0 auto !important;
    margin-bottom: 0 !important;
  }

  .bpp-hero-img {
    max-height: 340px !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
}

/* ============================================
   SIGP HERO SECTION
   ============================================ */
.sigp-banner-section {
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px 20px;
  background: #ffffff;
  color: #0c2540;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.sigp-banner-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 620px;
  height: 75vh;
  max-height: 620px;
  background: url('images/Independence Day India Post.svg') no-repeat center center / contain;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.sigp-banner-container {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto;
}

.sigp-banner-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sigp-banner-title .sigp-highlight-red {
  color: #d32f2f;
}

.sigp-banner-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 34px;
  letter-spacing: 0.2px;
}

.sigp-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.sigp-badge {
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sigp-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.sigp-badge-red {
  background: #c62222;
}

.sigp-badge-blue {
  background: #16427c;
}

@media (max-width: 768px) {
  .sigp-banner-section {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    padding: 40px 16px;
  }

  .sigp-banner-title {
    font-size: clamp(24px, 7vw, 36px);
    white-space: normal !important;
  }

  .sigp-badge {
    padding: 10px 20px;
    font-size: 13.5px;
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   OUR STORES HERO SECTION
   ============================================ */
.stores-hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.stores-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/store_hero_background.jpeg') no-repeat center center / cover;
  z-index: 1;
  pointer-events: none;
}

.stores-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.stores-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 48px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.stores-hero-title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  margin-top: -120px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: normal;
  word-break: normal;
  max-width: 100%;
}

.stores-hero-title .highlight-red {
  color: #e53935;
}

.stores-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 0 30px 0;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}

.stores-hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stores-search-box {
  max-width: 440px;
  width: 100%;
  margin: 0;
  background: #ffffff;
  padding: 4px 4px 4px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(198, 34, 34, 0.25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.stores-search-box:focus-within {
  border-color: #d32f2f;
  box-shadow: 0 8px 28px rgba(198, 34, 34, 0.22);
  transform: translateY(-1px);
}

.stores-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.stores-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #0c2540;
  font-weight: 500;
  background: transparent;
  padding: 8px 0;
  min-width: 0;
}

.stores-search-input::placeholder {
  color: #718096;
  font-weight: 400;
  font-size: 13.5px;
}

.stores-search-btn {
  background: #155293;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 8px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(21, 82, 147, 0.3);
}

.stores-search-btn:hover {
  background: #0c2540;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21, 82, 147, 0.45);
}

.stores-hero-cta-wrap {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.stores-hero-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--red-gradient);
  color: #ffffff !important;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(198, 34, 34, 0.35);
  transition: all 0.25s ease;
}

.stores-hero-price-btn:hover {
  background: var(--red-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(198, 34, 34, 0.5);
}

.stores-hero-price-btn .currency-symbol {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 768px) {
  .stores-hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    padding: 30px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .stores-hero-container {
    padding: 0 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto 0;
  }

  .stores-hero-title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.18;
    margin-bottom: 14px;
    white-space: normal !important;
    word-break: normal;
    text-align: center;
    max-width: 100%;
  }

  .stores-hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 auto 26px auto;
    max-width: 92%;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
  }

  .stores-search-box {
    max-width: 100%;
    padding: 5px 5px 5px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(12, 37, 64, 0.1);
  }

  .stores-search-icon {
    margin-right: 8px;
  }

  .stores-search-icon svg {
    width: 18px;
    height: 18px;
  }

  .stores-search-input {
    font-size: 16px;
    /* Prevents iOS Safari zoom */
    padding: 8px 0;
  }

  .stores-search-input::placeholder {
    font-size: 13px;
  }

  .stores-search-btn {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 50px;
  }

  .stores-hero-cta-wrap {
    margin-top: 22px;
  }

  .stores-hero-price-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .stores-hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    padding: 24px 12px;
  }

  .stores-hero-title {
    font-size: clamp(24px, 7.5vw, 30px);
    margin-bottom: 12px;
  }

  .stores-hero-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .stores-search-box {
    padding: 4px 4px 4px 10px;
  }

  .stores-search-input::placeholder {
    font-size: 12px;
  }

  .stores-search-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .stores-hero-cta-wrap {
    margin-top: 18px;
  }

  .stores-hero-price-btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}

/* ============================================
   OUR ACTIVE STORE OUTLETS SECTION & CARDS
   ============================================ */
.store-locations-wrapper {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  scroll-margin-top: 80px;
}

.store-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.store-card-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(198, 34, 34, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 37, 64, 0.1);
}

.store-card-main {
  display: flex;
  flex-direction: column;
}

.store-card-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.store-badge-open {
  background: #e6f4ea;
  color: #137333;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-pincode-tag {
  font-size: 12.5px;
  font-weight: 700;
  color: #c62222;
}

.store-card-title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 22px;
  color: #0c2540;
  margin-bottom: 12px;
  line-height: 1.3;
}

.store-card-details {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.store-detail-row {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.store-detail-row:last-child {
  margin-bottom: 0;
}

.store-detail-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.store-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
  border-top: 1px solid #edf2f7;
  padding-top: 18px;
  width: 100%;
}

.store-btn-whatsapp {
  flex: 1;
  min-width: 130px;
  background: #0c2540;
  color: #ffffff !important;
  border: 1.5px solid #0c2540;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(12, 37, 64, 0.18);
}

.store-btn-whatsapp:hover {
  background: #155293;
  border-color: #155293;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21, 82, 147, 0.3);
}

.store-btn-pickup {
  flex: 1;
  min-width: 130px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

/* Store Outlets Mobile Responsiveness */
@media (max-width: 768px) {
  .store-locations-wrapper {
    padding: 45px 0 35px 0 !important;
  }

  .store-locations-wrapper .section-header {
    margin-bottom: 28px !important;
  }

  .store-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }

  .store-card-item {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .store-card-title {
    font-size: 19px !important;
    margin-bottom: 10px !important;
  }

  .store-card-details {
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }

  .store-card-actions {
    gap: 8px !important;
    padding-top: 14px !important;
  }

  .store-btn-whatsapp,
  .store-btn-pickup {
    padding: 9px 12px !important;
    font-size: 12.5px !important;
    min-width: 120px !important;
  }
}

@media (max-width: 420px) {
  .store-card-item {
    padding: 18px 14px !important;
  }

  .store-card-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .store-btn-whatsapp,
  .store-btn-pickup {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* ============================================
   SALAVAI LAUNDRY GARMENT PRICING LIST SECTION
   ============================================ */
.garment-pricing-section {
  padding: 60px 0 80px;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
}

.garment-pricing-header {
  text-align: center;
  margin-bottom: 35px;
}

/* Minimize / Expand Toggle Button */
.garment-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.garment-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--navy-primary);
  border: 1.5px solid rgba(12, 37, 64, 0.15);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.garment-toggle-btn:hover {
  background: var(--navy-primary);
  color: #ffffff;
  border-color: var(--navy-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 37, 64, 0.15);
}

.garment-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.garment-toggle-btn.minimized .garment-toggle-icon {
  transform: rotate(180deg);
}

.garment-toggle-btn.minimized {
  background: var(--red-pale);
  color: var(--red-primary);
  border-color: var(--red-light);
}

/* Collapsible Content Area */
.garment-collapsible-body {
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, transform 0.35s ease;
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
}

.garment-collapsible-body.collapsed {
  max-height: 0 !important;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.garment-pricing-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.garment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(12, 37, 64, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.garment-tab-btn {
  padding: 8px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 40px;
  border: none;
  background: transparent;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.garment-tab-btn:hover {
  color: var(--navy-primary);
  background: rgba(12, 37, 64, 0.05);
}

.garment-tab-btn.active {
  background: var(--red-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(198, 34, 34, 0.3);
}

.garment-search-box {
  position: relative;
  min-width: 240px;
  max-width: 320px;
  width: 100%;
}

.garment-search-box input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: 30px;
  border: 1.5px solid rgba(12, 37, 64, 0.15);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  background: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

.garment-search-box input:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(198, 34, 34, 0.12);
}

.garment-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.garment-table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  box-shadow: 0 10px 35px rgba(12, 37, 64, 0.05);
  overflow-x: auto;
}

.garment-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.garment-table th {
  background: var(--navy-primary);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 20px;
  white-space: nowrap;
}

.garment-table th:first-child {
  border-top-left-radius: 15px;
  width: 70px;
  text-align: center;
}

.garment-table th:last-child {
  border-top-right-radius: 15px;
  text-align: right;
  padding-right: 28px;
}

.garment-table th.th-discount,
.garment-table th.th-price {
  text-align: right;
}

.garment-table td {
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.garment-table tr:hover td {
  background-color: #f8fafc;
}

.garment-table tr:last-child td {
  border-bottom: none;
}

.garment-sno {
  font-weight: 700;
  color: #94a3b8;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-size: 13.5px;
}

.garment-name {
  font-weight: 600;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.garment-cat-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  display: inline-block;
}

.garment-orig-price {
  text-align: right;
  font-weight: 500;
  color: #64748b;
  font-size: 14px;
}

.garment-discount {
  text-align: right;
}

.garment-discount-badge {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-weight: 700;
  font-size: 12.5px;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #fecaca;
}

.garment-final-price {
  text-align: right;
  padding-right: 28px !important;
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #16a34a;
}

.garment-table tr.category-header-row td {
  background: #f1f5f9;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
}

.garment-table tr.no-match-row td {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
  font-size: 15px;
}

.garment-footer-banner {
  margin-top: 25px;
  background: linear-gradient(135deg, rgba(12, 37, 64, 0.03) 0%, rgba(198, 34, 34, 0.05) 100%);
  border: 1px dashed rgba(198, 34, 34, 0.3);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.garment-footer-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #334155;
}

.garment-footer-text strong {
  color: var(--red-primary);
}

@media (max-width: 768px) {
  .garment-pricing-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .garment-tabs {
    justify-content: center;
  }

  .garment-search-box {
    max-width: 100%;
  }

  .garment-table th,
  .garment-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .garment-final-price {
    font-size: 15px;
    padding-right: 14px !important;
  }

  .garment-table th:last-child {
    padding-right: 14px;
  }
}

/* ============================================
   ABOUT US PAGE STYLES & MOBILE RESPONSIVENESS
   ============================================ */
.about-page-wrapper {
  overflow-x: hidden;
  width: 100%;
}

.story-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.story-text {
  display: flex;
  flex-direction: column;
}

.story-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: left;
}

.story-para:last-child {
  margin-bottom: 0;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.story-photo-card {
  max-width: 480px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 37, 64, 0.12);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(12, 37, 64, 0.18);
}

.story-photo-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* Gap Section */
.gap-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
  border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  box-sizing: border-box;
}

.gap-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.gap-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.gap-photo-card {
  max-width: 440px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(12, 37, 64, 0.1);
  border: 3px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gap-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 37, 64, 0.15);
}

.gap-photo-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.gap-text {
  display: flex;
  flex-direction: column;
}

.gap-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  text-align: left;
}

/* Chennai Facility Section */
.chennai-section {
  padding: 80px 0;
  background: #ffffff;
  box-sizing: border-box;
}

.chennai-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.chennai-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chennai-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
}

.chennai-para:last-child {
  margin-bottom: 0;
}

.chennai-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.chennai-photo-card {
  max-width: 480px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 37, 64, 0.14);
  border: 4px solid #ffffff;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chennai-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(12, 37, 64, 0.2);
}

.chennai-photo-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* Pathways Section */
.pathways-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
  border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  box-sizing: border-box;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
  width: 100%;
}

.pathway-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(12, 37, 64, 0.1);
  border-color: rgba(198, 34, 34, 0.25);
}

.pathway-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pathway-badge-bpp {
  display: inline-block;
  background: rgba(198, 34, 34, 0.1);
  color: #c62222;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pathway-badge-sigp {
  display: inline-block;
  background: rgba(12, 37, 64, 0.08);
  color: #0c2540;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pathway-num {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0c2540;
  opacity: 0.2;
}

.pathway-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0c2540;
  margin-bottom: 12px;
}

.pathway-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 22px;
  text-align: left;
}

.pathway-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pathway-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.pathway-list .check-icon {
  color: #c62222;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.pathway-cta-btn {
  text-align: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  padding: 13px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  background: #0c2540;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 14px rgba(12, 37, 64, 0.2);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
}

.pathway-cta-btn:hover {
  background: #c62222;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 34, 34, 0.35);
  color: #ffffff !important;
}

/* ============================================
   ABOUT US MOBILE MEDIA QUERIES (<= 992px & <= 576px)
   ============================================ */
@media (max-width: 992px) {

  .story-section,
  .gap-section,
  .chennai-section,
  .pathways-section {
    padding: 50px 0 !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .story-grid,
  .gap-grid,
  .chennai-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: left !important;
  }

  .story-visual,
  .gap-visual,
  .chennai-visual {
    order: 2;
    margin-top: 5px;
  }

  .story-text,
  .gap-text,
  .chennai-text {
    order: 1;
  }

  .story-photo-card,
  .gap-photo-card,
  .chennai-photo-card {
    max-width: 100% !important;
    border-radius: 14px !important;
    height: auto !important;
    min-height: auto !important;
  }

  .story-photo-img,
  .gap-photo-img,
  .chennai-photo-img {
    max-height: 280px !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    object-fit: cover !important;
  }

  .pathways-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .pathway-card {
    padding: 26px 20px !important;
    border-radius: 14px !important;
  }

  .pathway-title {
    font-size: 20px !important;
  }

  .story-para,
  .gap-para,
  .chennai-para,
  .pathway-desc {
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: left !important;
  }
}

@media (max-width: 480px) {

  .story-section,
  .gap-section,
  .chennai-section,
  .pathways-section {
    padding: 40px 0 !important;
  }

  .section-title,
  .section-title-center {
    font-size: 26px !important;
  }

  .story-photo-img,
  .gap-photo-img,
  .chennai-photo-img {
    max-height: 220px !important;
  }

  .pathway-card {
    padding: 22px 16px !important;
  }

  .pathway-list li {
    font-size: 13.5px !important;
  }

  .pathway-cta-btn {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
  }
}

/* ============================================
   BPP PAGE STYLES & MOBILE OVERHAUL
   ============================================ */
.bpp-page-wrapper {
  overflow-x: hidden;
  width: 100%;
}

/* BPP Journey & Story Section */
.bpp-story-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
  border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  box-sizing: border-box;
}

.bpp-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.bpp-story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bpp-story-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: left;
}

.bpp-story-para:last-child {
  margin-bottom: 0;
}

.bpp-story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bpp-story-photo-card {
  max-width: 480px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 37, 64, 0.12);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpp-story-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(12, 37, 64, 0.18);
}

.bpp-story-photo-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* BPP Real Problem & Solution Section */
.bpp-gap-section {
  padding: 80px 0;
  background: #ffffff;
  box-sizing: border-box;
}

.bpp-gap-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.bpp-gap-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bpp-gap-photo-card {
  max-width: 440px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(12, 37, 64, 0.1);
  border: 3px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpp-gap-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 37, 64, 0.15);
}

.bpp-gap-photo-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.bpp-gap-text {
  display: flex;
  flex-direction: column;
}

.bpp-gap-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  text-align: left;
}

/* BPP Start with Confidence Box */
.bpp-confidence-box {
  margin-top: 50px;
  background: #ffffff;
  border: 1px solid rgba(12, 37, 64, 0.08);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.bpp-confidence-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0c2540;
  margin-bottom: 12px;
}

.bpp-confidence-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  max-width: 760px;
  margin: 0 auto 24px auto;
  line-height: 1.7;
  text-align: center;
}

/* BPP CTA Visit Section */
.bpp-cta-visit-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
  border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  text-align: center;
  box-sizing: border-box;
}

.bpp-cta-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.bpp-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: #0c2540;
  margin-bottom: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bpp-cta-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14.5px, 2vw, 16px);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.btn-bpp-red-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgb(198, 34, 34) 0%, rgb(140, 22, 22) 100%);
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 22px rgba(198, 34, 34, 0.28);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-bpp-red-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(198, 34, 34, 0.4);
  color: #ffffff !important;
}

/* ============================================
   BPP PAGE MOBILE MEDIA QUERIES (<= 992px & <= 480px)
   ============================================ */
@media (max-width: 992px) {

  .bpp-story-section,
  .bpp-gap-section,
  .bpp-cta-visit-section,
  .bpp-why-section,
  .bpp-contact-section {
    padding: 50px 0 !important;
  }

  .bpp-story-grid,
  .bpp-gap-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .bpp-story-visual,
  .bpp-gap-visual {
    order: 2;
    margin-top: 5px;
  }

  .bpp-story-text,
  .bpp-gap-text {
    order: 1;
    text-align: left;
  }

  .bpp-story-photo-card,
  .bpp-gap-photo-card {
    max-width: 100% !important;
    border-radius: 14px !important;
  }

  .bpp-story-photo-img,
  .bpp-gap-photo-img {
    max-height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .bpp-story-para,
  .bpp-gap-para {
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: left !important;
  }

  .btn-bpp-red-cta {
    width: 100% !important;
    max-width: 320px !important;
    padding: 13px 20px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {

  .bpp-story-section,
  .bpp-gap-section,
  .bpp-cta-visit-section,
  .bpp-why-section,
  .bpp-contact-section {
    padding: 40px 0 !important;
  }

  .bpp-confidence-box {
    padding: 24px 16px !important;
    margin-top: 35px !important;
    border-radius: 12px !important;
  }

  .bpp-confidence-title {
    font-size: 22px !important;
  }

  .bpp-confidence-desc {
    font-size: 13.5px !important;
  }

  .bpp-story-photo-img,
  .bpp-gap-photo-img {
    max-height: 220px !important;
  }

  .bpp-cta-title {
    font-size: 20px !important;
  }
}

/* ============================================
   SIGP PAGE STYLES & MOBILE OVERHAUL
   ============================================ */
.sigp-page-wrapper {
  overflow-x: hidden;
  width: 100%;
}

/* SIGP Join Section ("Who Can Join?") */
.sigp-join-section {
  padding: 80px 0;
  background: #ffffff;
  box-sizing: border-box;
}

.who-can-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

.who-can-join-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 37, 64, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.who-can-join-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(12, 37, 64, 0.1);
}

.who-can-join-img-box {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f1f5f9;
}

.who-can-join-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.who-can-join-card:hover .who-can-join-img {
  transform: scale(1.05);
}

.who-can-join-content {
  padding: 22px 20px 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.who-can-join-title {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0c2540;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.who-can-join-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* SIGP About Section */
.sigp-about-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
  border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  box-sizing: border-box;
}

.about-sigp-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.sigp-about-text {
  display: flex;
  flex-direction: column;
}

.sigp-about-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
}

.sigp-about-para:last-child {
  margin-bottom: 0;
}

/* SIGP Vision Box */
.sigp-vision-box {
  margin-top: 55px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  box-sizing: border-box;
}

.sigp-vision-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0c2540;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sigp-vision-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0 auto 18px auto;
  max-width: 860px;
  text-align: center;
}

.sigp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  text-align: left;
}

.sigp-pillar-card {
  background: #f8fafc;
  border-left: 4px solid #c62222;
  border-radius: 12px;
  padding: 22px 20px;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sigp-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.sigp-pillar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0c2540;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.sigp-pillar-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* SIGP What We Provide Section */
.sigp-provide-section {
  padding: 70px 0;
  background: #ffffff;
  box-sizing: border-box;
}

.sigp-provide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
}

.sigp-provide-card {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  padding: 36px 30px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.sigp-provide-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0c2540;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sigp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sigp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.5;
}

.sigp-check-list .check-sym {
  color: #c62222;
  font-weight: 700;
  flex-shrink: 0;
}

/* SIGP Training Section */
.sigp-training-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(12, 37, 64, 0.06);
  border-bottom: 1px solid rgba(12, 37, 64, 0.06);
  box-sizing: border-box;
}

.sigp-training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.sigp-training-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(12, 37, 64, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sigp-training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(12, 37, 64, 0.08);
}

.sigp-training-card.center-span {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 520px;
}

.sigp-training-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(198, 34, 34, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  flex-shrink: 0;
}

.sigp-training-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
  margin: 0;
}

/* SIGP CSR Section */
.sigp-csr-section {
  padding: 80px 0;
  background: #ffffff;
  box-sizing: border-box;
}

.csr-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.csr-partner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  padding: 36px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.csr-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.csr-partner-item {
  background: #ffffff;
  border: 1px solid rgba(198, 34, 34, 0.18);
  border-radius: 12px;
  padding: 16px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0c2540;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  min-height: 60px;
  box-sizing: border-box;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.csr-partner-item:hover {
  transform: translateY(-2px);
  border-color: #c62222;
}

/* ============================================
   SIGP MOBILE MEDIA QUERIES (<= 992px & <= 576px)
   ============================================ */
@media (max-width: 992px) {

  .sigp-join-section,
  .sigp-about-section,
  .sigp-provide-section,
  .sigp-training-section,
  .sigp-csr-section,
  .sigp-contact-section {
    padding: 50px 0 !important;
  }

  .who-can-join-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .about-sigp-grid,
  .csr-grid-wrapper,
  .sigp-provide-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .sigp-about-text {
    order: 1;
  }

  .sigp-circles-wrapper {
    order: 2;
    height: 320px !important;
    max-width: 290px !important;
    margin: 10px auto 0 auto !important;
  }

  .sigp-circle-top {
    width: 170px !important;
    height: 170px !important;
  }

  .sigp-circle-bottom {
    width: 185px !important;
    height: 185px !important;
  }

  .sigp-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .sigp-training-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .sigp-training-card.center-span {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
  }

  .csr-partner-box {
    padding: 24px 18px !important;
  }

  .csr-partner-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

@media (max-width: 576px) {

  .sigp-join-section,
  .sigp-about-section,
  .sigp-provide-section,
  .sigp-training-section,
  .sigp-csr-section,
  .sigp-contact-section {
    padding: 40px 0 !important;
  }

  .who-can-join-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .who-can-join-img-box {
    height: 170px !important;
  }

  .who-can-join-content {
    padding: 18px 16px 20px 16px !important;
  }

  .who-can-join-title {
    font-size: 18px !important;
  }

  .sigp-about-para,
  .who-can-join-desc,
  .sigp-training-text {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .sigp-vision-box {
    padding: 26px 18px !important;
    margin-top: 35px !important;
    border-radius: 14px !important;
  }

  .sigp-vision-title {
    font-size: 23px !important;
  }

  .sigp-provide-card {
    padding: 24px 18px !important;
    border-radius: 14px !important;
  }

  .sigp-provide-card-title {
    font-size: 22px !important;
  }

  .sigp-training-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .sigp-training-card {
    padding: 22px 16px !important;
  }

  .csr-partner-item {
    padding: 14px 12px !important;
    font-size: 13px !important;
  }
}