/* ===== Variables ===== */
:root {
  --ft-accent: #f25968;
  --ft-accent-dark: #e04555;
  --ft-dark: #1c1c1c;
  --ft-gold: #d4a853;
  --ft-gold-light: #f0d78c;
  --ft-gray: #6b6b6b;
  --ft-light: #f8f8f8;
  --ft-pink-bg: #fff5f5;
  --ft-radius: 16px;
  --ft-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --ft-transition: 0.3s ease;
  --ft-font-body: 'Inter', sans-serif;
  --ft-font-heading: 'Poppins', sans-serif;
}

/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--ft-font-body);
  font-weight: 400;
  color: var(--ft-dark);
  overflow-x: hidden;
  max-width: 100%;
  background: #fff;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.section-title-dark,
.branches-heading,
.specials-title,
.contact-title,
.premium-logo,
.service-card h6,
.branch-card h5,
.premium-benefit h5,
.footer-heading,
.ft-brand,
.stat-number,
.stat-suffix,
.diverse-title,
.diverse-item-name {
  font-family: var(--ft-font-heading);
}

/* ===== Navbar ===== */
.ft-navbar {
  padding: 1rem 0;
  transition: background var(--ft-transition), box-shadow var(--ft-transition), padding var(--ft-transition);
}

.ft-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0.6rem 0;
}

.ft-navbar .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color var(--ft-transition);
}

.ft-navbar.scrolled .nav-link {
  color: var(--ft-dark);
}

.ft-navbar .nav-link:hover {
  color: var(--ft-accent);
}

.ft-navbar .nav-link.active {
  color: var(--ft-accent) !important;
}

.ft-brand {
  padding: 0;
  line-height: 1;
}

.ft-brand-logo {
  height: 80px;
  width: auto;
  display: block;
}

.ft-brand-logo-lg {
  height: clamp(72px, 14vw, 110px);
  margin: 0 auto;
}

.ft-brand-logo-footer {
  height: 90px;
}

.ft-navbar.scrolled .ft-brand {
  color: var(--ft-accent) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.ft-navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

.ft-nav-backdrop {
  display: none;
}

.ft-mobile-nav-brand {
  display: none;
}

.nav-link-icon {
  display: none;
}

@media (max-width: 991.98px) {
  .ft-navbar {
    padding: 0.75rem 0;
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }

  .ft-navbar .container {
    position: relative;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .ft-brand {
    max-width: calc(100% - 72px);
  }

  .ft-brand-logo {
    height: 100px;
    max-width: 100%;
    object-fit: contain;
  }

  .ft-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1035;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ft-transition), visibility var(--ft-transition);
    border: none;
    cursor: pointer;
  }

  .ft-nav-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  .ft-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(320px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--ft-accent);
    backdrop-filter: blur(12px);
    padding: max(1.5rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) 1.25rem;
    z-index: 1040;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: block !important;
    visibility: hidden;
  }

  .ft-navbar .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
  }

  .ft-navbar .navbar-collapse.collapsing {
    height: 100vh !important;
    height: 100dvh !important;
    transition: transform 0.35s ease;
  }

  .ft-navbar .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.25rem;
    width: 100%;
  }

  .ft-navbar .navbar-collapse .nav-item {
    width: 100%;
  }

  .ft-navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: clamp(1rem, 3.8vw, 1.15rem);
    padding: 0.75rem 1rem 0.75rem 0.75rem !important;
    border-right: 3px solid transparent;
    width: 100%;
    min-height: 48px;
  }

  .nav-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    width: 1.4rem;
    flex-shrink: 0;
    opacity: 0.9;
  }

  .ft-navbar .nav-link.active .nav-link-icon {
    opacity: 1;
  }

  .ft-navbar .navbar-collapse .btn-ft-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    background: #fff;
    color: var(--ft-accent);
    border-color: #fff;
  }

  .ft-navbar .navbar-collapse .btn-ft-primary .nav-link-icon {
    font-size: 1rem;
    width: auto;
    opacity: 1;
  }

  .ft-navbar .navbar-collapse .btn-ft-primary:hover {
    background: var(--ft-dark);
    color: #fff;
    border-color: var(--ft-dark);
  }

  .ft-navbar .nav-link:hover {
    color: #fff !important;
  }

  .ft-navbar .nav-link.active {
    color: #fff !important;
    border-right-color: #fff;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px 0 0 8px;
  }

  .ft-mobile-nav-brand {
    display: flex;
    align-items: center;
    color: #fff !important;
    font-family: var(--ft-font-heading);
    font-weight: 700;
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    letter-spacing: -0.5px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ft-mobile-nav-brand i {
    color: #fff;
    font-size: 1.2rem;
  }

  .ft-navbar .navbar-toggler {
    background: var(--ft-accent);
    border: 2px solid var(--ft-accent) !important;
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  .ft-navbar .navbar-toggler-icon {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .ft-navbar.menu-open {
    z-index: 1050;
  }

  .ft-navbar.menu-open .navbar-toggler {
    position: relative;
    z-index: 1051;
    background: var(--ft-accent);
    border-color: var(--ft-accent) !important;
  }

  .ft-navbar.menu-open .navbar-toggler-icon {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  .ft-navbar.is-navigating .nav-link,
  .ft-navbar.is-navigating .btn,
  .ft-navbar.is-navigating .ft-mobile-nav-brand {
    pointer-events: none;
  }
}

body.nav-menu-open .ft-contact-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* ===== Buttons ===== */
.btn-ft-primary {
  background: var(--ft-accent);
  color: #fff;
  border: 2px solid var(--ft-accent);
  border-radius: 50px;
  font-family: var(--ft-font-body);
  font-weight: 500;
  transition: all var(--ft-transition);
}

.btn-ft-primary:hover {
  background: var(--ft-accent-dark);
  border-color: var(--ft-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 79, 95, 0.35);
}

.btn-ft-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-family: var(--ft-font-body);
  font-weight: 500;
  transition: all var(--ft-transition);
}

.btn-ft-outline:hover {
  background: #fff;
  color: var(--ft-dark);
  border-color: #fff;
}

.btn-ft-gold {
  background: linear-gradient(135deg, var(--ft-gold), var(--ft-gold-light));
  color: var(--ft-dark);
  border: none;
  border-radius: 50px;
  font-family: var(--ft-font-body);
  font-weight: 500;
  transition: all var(--ft-transition);
}

.btn-ft-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
  color: var(--ft-dark);
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
}

.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(239, 79, 95, 0.9);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-indicators {
  bottom: 30px;
  z-index: 5;
}

.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
}

.hero-indicators button.active {
  background: var(--ft-accent);
  width: 28px;
  border-radius: 10px;
}

.hero-control {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--ft-transition);
}

.hero-section:hover .hero-control {
  opacity: 1;
}

/* ===== Sections ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-title-dark {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--ft-dark);
  margin-bottom: 0.8rem;
}

.text-ft-accent {
  color: var(--ft-accent);
}

.section-desc {
  color: var(--ft-gray);
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.7;
}

/* ===== Mission ===== */
.mission-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23f8f8f8' d='M0,100 C360,200 1080,0 1440,100 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

.mission-decor {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.mission-decor-left { top: 15%; left: 5%; }
.mission-decor-right { top: 20%; right: 8%; animation-delay: 2s; }
.mission-decor-mid { bottom: 25%; left: 15%; font-size: 2.5rem; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.stats-bar {
  background: var(--ft-light);
  border-radius: var(--ft-radius);
  padding: 2rem 1rem;
  margin-top: 3rem;
  box-shadow: var(--ft-shadow);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
}

.stat-icon {
  font-size: 2rem;
  color: var(--ft-accent);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ft-dark);
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ft-accent);
}

.stat-label {
  color: var(--ft-gray);
  font-size: 0.9rem;
}

/* ===== Services — centered ecosystem map ===== */
.banner-gallery-section {
  background: #fff;
  padding: 0;
  margin: 0;
}

.banner-gallery {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}

.banner-gallery-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

@media (max-width: 767.98px) {
  .banner-gallery-section {
    padding: 0;
    margin: 0;
  }
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(242, 89, 104, 0.08), transparent 62%),
    linear-gradient(180deg, #fffaf9 0%, #fff 48%, #f7f4f2 100%);
}

.services-header {
  text-align: center;
  margin-bottom: 1.25rem;
  max-width: 40rem;
  margin-inline: auto;
}

.services-eco-title {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ft-accent);
  letter-spacing: 0.02em;
}

.services-eco-title span {
  display: block;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 89, 104, 0.7), transparent);
}

.services-eco {
  position: relative;
  width: min(980px, 100%);
  aspect-ratio: 1000 / 440;
  min-height: 380px;
  margin: 0.75rem auto 1.75rem;
}

.services-eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.eco-path {
  fill: none;
  stroke: rgba(239, 79, 95, 0.38);
  stroke-width: 2.2;
  stroke-dasharray: 7 8;
  stroke-linecap: round;
  animation: ecoDash 18s linear infinite;
}

.eco-path--l2 { stroke: rgba(232, 155, 45, 0.42); }
.eco-path--l3 { stroke: rgba(61, 154, 74, 0.42); }
.eco-path--r1 { stroke: rgba(15, 159, 149, 0.42); }
.eco-path--r2 { stroke: rgba(47, 111, 237, 0.38); }
.eco-path--r3 { stroke: rgba(196, 92, 42, 0.42); }

.services-eco-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: clamp(150px, 20%, 200px);
  padding: 1.25rem 1.1rem 1.1rem;
  background: #fff;
  border-radius: 28px;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(239, 79, 95, 0.06),
    0 0 0 16px rgba(239, 79, 95, 0.04),
    0 14px 36px rgba(28, 28, 28, 0.1);
  animation: ecoHubPulse 4.5s ease-in-out infinite;
}

.services-eco-hub-rings {
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  border: 1.5px dashed rgba(239, 79, 95, 0.18);
  pointer-events: none;
  animation: ecoRingSpin 28s linear infinite;
}

.services-eco-logo {
  width: 56px;
  height: auto;
  margin-bottom: 0.3rem;
  object-fit: contain;
}

.services-eco-hub strong {
  font-family: var(--ft-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ft-dark);
  letter-spacing: -0.02em;
}

.services-eco-hub small {
  font-size: 0.7rem;
  color: var(--ft-gray);
  font-weight: 600;
}

.eco-branch {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  animation: ecoBranchIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eco-branch--l1 { top: 8%; left: 2%; animation-delay: 0.06s; }
.eco-branch--l2 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.14s; }
.eco-branch--l3 { bottom: 8%; left: 2%; animation-delay: 0.22s; }
.eco-branch--r1 { top: 8%; right: 2%; animation-delay: 0.1s; }
.eco-branch--r2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.18s; }
.eco-branch--r3 { bottom: 8%; right: 2%; animation-delay: 0.26s; }

.eco-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.2rem 0.72rem 0.72rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--eco) 12%, #fff);
  color: var(--ft-dark);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow:
    0 1px 0 #fff inset,
    0 6px 16px rgba(28, 28, 28, 0.07);
  border: 1px solid color-mix(in srgb, var(--eco) 22%, transparent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-pill i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--eco);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--eco) 35%, transparent);
  transition: transform 0.3s ease;
}

.eco-branch:hover .eco-pill {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 1px 0 #fff inset,
    0 10px 24px color-mix(in srgb, var(--eco) 22%, transparent);
}

.eco-branch:hover .eco-pill i {
  transform: scale(1.08) rotate(-6deg);
}

.services-eco-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.services-eco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.9rem 1.6rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.services-eco-btn--light {
  background: #fff;
  color: var(--ft-dark);
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 20px rgba(28, 28, 28, 0.06);
}

.services-eco-btn--dark {
  background: var(--ft-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 79, 95, 0.28);
}

.services-eco-btn:hover {
  transform: translateY(-2px);
}

.services-eco-btn--light:hover {
  box-shadow: 0 12px 26px rgba(28, 28, 28, 0.1);
}

.services-eco-btn--dark:hover {
  background: var(--ft-accent-dark);
  color: #fff;
}

@keyframes ecoDash {
  to { stroke-dashoffset: -240; }
}

@keyframes ecoHubPulse {
  0%, 100% {
    box-shadow:
      0 0 0 8px rgba(239, 79, 95, 0.06),
      0 0 0 16px rgba(239, 79, 95, 0.04),
      0 14px 36px rgba(28, 28, 28, 0.1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(239, 79, 95, 0.09),
      0 0 0 22px rgba(239, 79, 95, 0.05),
      0 18px 40px rgba(28, 28, 28, 0.12);
  }
}

@keyframes ecoRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes ecoBranchIn {
  from {
    opacity: 0;
    filter: blur(2px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@media (max-width: 991.98px) {
  .services-eco {
    width: 100%;
    aspect-ratio: 1000 / 520;
    min-height: 340px;
  }

  .services-eco-hub {
    width: clamp(120px, 28vw, 160px);
    padding: 1rem 0.85rem 0.9rem;
    border-radius: 22px;
  }

  .services-eco-hub-rings {
    inset: -14px;
    border-radius: 28px;
  }

  .services-eco-logo {
    width: 44px;
  }

  .services-eco-hub strong {
    font-size: 0.78rem;
  }

  .services-eco-hub small {
    font-size: 0.6rem;
  }

  .eco-branch--l1 { top: 6%; left: 0; }
  .eco-branch--l2 { left: 0; }
  .eco-branch--l3 { bottom: 6%; left: 0; }
  .eco-branch--r1 { top: 6%; right: 0; }
  .eco-branch--r2 { right: 0; }
  .eco-branch--r3 { bottom: 6%; right: 0; }

  .eco-pill {
    gap: 0.4rem;
    padding: 0.55rem 0.85rem 0.55rem 0.55rem;
    font-size: 0.72rem;
  }

  .eco-pill i {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.72rem;
  }

  .eco-path {
    stroke-width: 1.8;
  }
}

@media (max-width: 575.98px) {
  .services-section .container {
    padding-left: max(0.65rem, env(safe-area-inset-left));
    padding-right: max(0.65rem, env(safe-area-inset-right));
  }

  .services-eco {
    aspect-ratio: 1000 / 560;
    min-height: 300px;
    margin-bottom: 1.25rem;
  }

  .services-eco-hub {
    width: clamp(100px, 30vw, 128px);
    padding: 0.8rem 0.65rem 0.7rem;
    border-radius: 18px;
    box-shadow:
      0 0 0 5px rgba(239, 79, 95, 0.06),
      0 0 0 10px rgba(239, 79, 95, 0.04),
      0 10px 24px rgba(28, 28, 28, 0.1);
  }

  .services-eco-hub-rings {
    inset: -10px;
    border-radius: 22px;
  }

  .services-eco-logo {
    width: 36px;
    margin-bottom: 0.15rem;
  }

  .services-eco-hub strong {
    font-size: 0.62rem;
  }

  .services-eco-hub small {
    font-size: 0.5rem;
  }

  .eco-pill {
    gap: 0.3rem;
    padding: 0.4rem 0.55rem 0.4rem 0.4rem;
    font-size: 0.58rem;
    max-width: 42vw;
  }

  .eco-pill span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .eco-pill i {
    width: 1.3rem;
    height: 1.3rem;
    font-size: 0.62rem;
    flex-shrink: 0;
  }

  .eco-path {
    stroke-width: 1.5;
    stroke-dasharray: 5 6;
  }

  .services-eco-btn {
    min-width: 160px;
    padding: 0.8rem 1.35rem;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-path,
  .services-eco-hub,
  .services-eco-hub-rings,
  .eco-branch {
    animation: none !important;
  }

  .eco-branch {
    opacity: 1;
    filter: none;
  }
}

.bg-pink { background: linear-gradient(135deg, #ff6b8a, #ef4f5f); }
.bg-orange { background: linear-gradient(135deg, #ff9a56, #ff6b35); }
.bg-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.bg-teal { background: linear-gradient(135deg, #2dd4bf, #0d9488); }
.bg-yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.bg-red { background: linear-gradient(135deg, #f87171, #dc2626); }
.bg-green { background: linear-gradient(135deg, #4ade80, #16a34a); }
.bg-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }

/* ===== Premium ===== */
.premium-section {
  background: var(--ft-dark);
  color: #fff;
  position: relative;
  padding: 0;
}

.premium-curve-top {
  height: 60px;
  background: #f03b3b;
  /* background: var(--ft-pink-bg); */
  clip-path: ellipse(55% 100% at 50% 0%);
  margin-bottom: -1px;
}

.premium-curve-bottom {
  height: 60px;
  background: #f03b3b;
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -1px;
}

.premium-logo {
  line-height: 1;
}

.premium-tagline {
  color: var(--ft-gold-light);
  font-size: 1.1rem;
  opacity: 0.9;
}

.premium-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--ft-radius);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--ft-transition);
}

.premium-benefit:hover {
  border-color: var(--ft-gold);
  background: rgba(212, 168, 83, 0.08);
}

.premium-benefit i {
  font-size: 1.5rem;
  color: var(--ft-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.premium-benefit h5 {
  color: var(--ft-gold-light);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.premium-benefit p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
}

.premium-coin {
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}

.premium-coin-left { top: 30%; left: 3%; }
.premium-coin-right { top: 40%; right: 5%; animation-delay: 2.5s; }

/* ===== Branches ===== */
.branches-section {
  background: linear-gradient(180deg, #fff 0%, #fafafa 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.branches-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  animation: branchBlob 12s ease-in-out infinite;
}

.branches-bg-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(239, 79, 95, 0.15);
  top: 10%;
  left: -10%;
}

.branches-bg-shape-2 {
  width: 350px;
  height: 350px;
  background: rgba(124, 58, 237, 0.12);
  bottom: 5%;
  right: -8%;
  animation-delay: 6s;
}

@keyframes branchBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.branches-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ft-accent);
  margin-bottom: 0.6rem;
}

.branches-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -1px;
  color: var(--ft-dark);
}

.branches-grid {
  perspective: 1200px;
}

.branch-col {
  display: flex;
}

.branch-card {
  border-radius: 24px;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

.branch-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.branch-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  z-index: 4;
  pointer-events: none;
  transition: left 0.6s ease;
}

.branch-card:hover .branch-card-shine {
  left: 120%;
}

.branch-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.branch-zomato .branch-card-glow { background: radial-gradient(circle at 50% 0%, rgba(226, 55, 68, 0.12), transparent 60%); }
.branch-blinkit .branch-card-glow { background: radial-gradient(circle at 50% 0%, rgba(247, 203, 69, 0.2), transparent 60%); }
.branch-hyperpure .branch-card-glow { background: radial-gradient(circle at 50% 0%, rgba(232, 62, 70, 0.12), transparent 60%); }
.branch-district .branch-card-glow { background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15), transparent 60%); }

.branch-card:hover .branch-card-glow {
  opacity: 1;
}

.branch-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.branch-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.branch-card:hover .branch-brand-img {
  transform: scale(1.12);
}

.branch-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 2;
}

.branch-card-body {
  padding: 0 1.5rem 1.8rem;
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.branch-logo-float {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
  animation: logoFloat 4s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.branch-logo-float:not(.branch-logo-icon) {
  overflow: hidden;
  background: #fff;
}

.branch-col:nth-child(2) .branch-logo-float { animation-delay: 1s; }
.branch-col:nth-child(3) .branch-logo-float { animation-delay: 2s; }
.branch-col:nth-child(4) .branch-logo-float { animation-delay: 3s; }

.branch-card:hover .branch-logo-float {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.branch-logo-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
}

.branch-logo-float.branch-logo-icon.bg-pink { background: linear-gradient(135deg, #ff6b8a, #ef4f5f); }
.branch-logo-float.branch-logo-icon.bg-orange { background: linear-gradient(135deg, #ff9a56, #ff6b35); }
.branch-logo-float.branch-logo-icon.bg-teal { background: linear-gradient(135deg, #2dd4bf, #0d9488); }
.branch-logo-float.branch-logo-icon.bg-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.branch-logo-icon i {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
  color: #fff;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.branch-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.branch-zomato:hover h5 { color: #e23744; }
.branch-blinkit:hover h5 { color: #248245; }
.branch-hyperpure:hover h5 { color: #e83e46; }
.branch-district:hover h5 { color: #7c3aed; }

.branch-card p {
  color: var(--ft-gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.branch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.branch-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ft-gray);
  transition: all 0.3s ease;
}

.branch-zomato:hover .branch-tags span { background: rgba(226, 55, 68, 0.1); color: #e23744; }
.branch-blinkit:hover .branch-tags span { background: rgba(36, 130, 69, 0.1); color: #248245; }
.branch-hyperpure:hover .branch-tags span { background: rgba(232, 62, 70, 0.1); color: #e83e46; }
.branch-district:hover .branch-tags span { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ft-dark);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: static;
}

.branch-card .branch-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.branch-zomato .branch-link:hover { color: #e23744; }
.branch-blinkit .branch-link:hover { color: #248245; }
.branch-hyperpure .branch-link:hover { color: #e83e46; }
.branch-district .branch-link:hover { color: #7c3aed; }

.branch-link i {
  transition: transform 0.3s ease;
}

.branch-link:hover i {
  transform: translateX(5px);
}

/* Staggered card entrance */
.branch-col.reveal.visible .branch-card {
  animation: branchCardIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.branch-col.reveal.delay-1.visible .branch-card { animation-delay: 0.1s; }
.branch-col.reveal.delay-2.visible .branch-card { animation-delay: 0.2s; }
.branch-col.reveal.delay-3.visible .branch-card { animation-delay: 0.3s; }

@keyframes branchCardIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== Explore Streams (Cookr-style hub) ===== */
.streams-section {
  background: #fff;
  overflow: visible;
}

.streams-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--ft-accent);
  margin-bottom: 0.85rem;
}

.streams-heading {
  font-family: var(--ft-font-heading);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ft-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.streams-lead {
  color: var(--ft-gray);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 38ch;
}

.streams-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.streams-stat-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.streams-stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-accent);
  background: rgba(239, 79, 95, 0.1);
  border: 1.5px solid rgba(239, 79, 95, 0.28);
  font-size: 1.05rem;
}

.streams-stat-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.streams-stat-body strong {
  font-family: var(--ft-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ft-dark);
  line-height: 1.15;
}

.streams-stat-body small {
  margin-top: 3px;
  font-size: 0.8rem;
  color: var(--ft-gray);
}

/* Streams hub — overlapping rounded collage */
.streams-hub {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.streams-card {
  position: absolute;
  width: 46%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.7rem 0.9rem;
  border-radius: 28% 28% 22px 22px / 36% 36% 18px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}

.streams-card:hover {
  z-index: 5;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
  color: inherit;
}

.streams-card-label {
  display: block;
  font-family: var(--ft-font-heading);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.55vw, 0.92rem);
  text-align: center;
  color: var(--ft-dark);
  line-height: 1.25;
}

.streams-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1.15;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.streams-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.streams-card:hover .streams-card-media img {
  transform: scale(1.07);
}

.streams-card--hotels {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #e7f6ec 0%, #d5efde 100%);
}

.streams-card--hotels:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.03);
}

.streams-card--shops {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #fff1e0 0%, #ffe2c2 100%);
}

.streams-card--shops:hover {
  transform: translateY(calc(-50% - 8px)) scale(1.03);
}

.streams-card--products {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.9rem 0.7rem 0.7rem;
  border-radius: 22px 22px 28% 28% / 18px 18px 36% 36%;
  background: linear-gradient(180deg, #f8d0d7 0%, #fde9ec 100%);
}

.streams-card--products .streams-card-label {
  order: 1;
  padding-top: 0.15rem;
}

.streams-card--products:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.03);
}

.streams-card--workshops {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #e8f0fc 0%, #d5e5f8 100%);
}

.streams-card--workshops:hover {
  transform: translateY(calc(-50% - 8px)) scale(1.03);
}

.streams-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 32%;
  aspect-ratio: 1;
  padding: 0.7rem;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.12),
    0 0 0 12px rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.streams-hub-logo {
  width: 56%;
  max-width: 84px;
  height: auto;
  object-fit: contain;
}

.streams-hub-tag {
  font-size: clamp(0.58rem, 1.3vw, 0.72rem);
  font-weight: 600;
  color: var(--ft-gray);
  line-height: 1.2;
}

@media (max-width: 991px) {
  .streams-hub {
    width: min(100%, 460px);
  }

  .streams-lead {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .streams-stat-grid {
    grid-template-columns: 1fr;
  }

  .streams-section {
    overflow: visible;
  }

  .streams-hub {
    width: 100%;
    max-width: 360px;
    margin-block: 0.75rem;
  }

  .streams-card {
    width: 44%;
    padding: 0.5rem 0.5rem 0.7rem;
    border-radius: 24% 24% 14px 14px / 32% 32% 12px 12px;
  }

  .streams-card--products {
    padding: 0.7rem 0.5rem 0.5rem;
    border-radius: 14px 14px 24% 24% / 12px 12px 32% 32%;
  }

  .streams-card-label {
    font-size: 0.68rem;
  }

  .streams-card-media {
    border-radius: 12px;
  }

  .streams-hub-center {
    width: 34%;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.1),
      0 0 0 8px rgba(255, 255, 255, 0.95);
  }

  .streams-hub-tag {
    font-size: 0.52rem;
  }
}

/* ===== Section curves ===== */
.ft-curve-top {
  height: 60px;
  clip-path: ellipse(55% 100% at 50% 0%);
  margin-bottom: -1px;
}

.ft-curve-bottom {
  height: 60px;
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -1px;
}

.ft-curve-top--white {
  /* background: #e10909; */
}

.ft-curve-bottom--white {
  /* background: #e10909;
  */
}

.ft-curve-bottom--dark {
  background: var(--ft-dark);
}

/* ===== Specials ===== */
.specials-section {
  /* background: #f25968; */
  padding: 0;

}

.specials-wrapper {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--ft-shadow);
  position: relative;
  overflow: hidden;
}

.specials-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 79, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.specials-badge {
  display: inline-block;
  background: rgba(239, 79, 95, 0.1);
  color: var(--ft-accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.specials-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.specials-desc {
  color: var(--ft-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.specials-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.specials-list li {
  padding: 0.5rem 0;
}

.specials-list-link {
  display: inline-flex;
  align-items: center;
  color: var(--ft-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.specials-list-link:hover {
  color: var(--ft-accent);
}

.specials-list-link i {
  color: var(--ft-accent);
  margin-right: 8px;
  flex-shrink: 0;
}

.specials-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.specials-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--ft-radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--ft-transition);
}

.specials-img:hover {
  transform: scale(1.03);
}

.specials-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 280px;
}

.specials-img-2,
.specials-img-3 {
  min-height: 134px;
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: #fff;
}

.testimonial-card {
  background: var(--ft-light);
  border-radius: var(--ft-radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--ft-transition);
}

.testimonial-card:hover {
  box-shadow: var(--ft-shadow);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: var(--ft-gray);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--ft-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-author small {
  color: var(--ft-gray);
  font-size: 0.8rem;
}

/* ===== Contact Form ===== */
.contact-section {
  background: var(--ft-dark);
  padding: 0;
}

/* Curved layout + gold border — contact only */
.contact-curve {
  --contact-curve-h: 60px;
  height: var(--contact-curve-h);
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.contact-curve-top {
  margin-bottom: -1px;
}

.contact-curve-bottom {
  margin-top: -1px;
}

.contact-curve svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-curve-top .contact-curve-fill {
  /* fill: var(--ft-gold); */
  fill: #f03b3b;
}

.contact-curve-bottom .contact-curve-fill {
  fill: #f03b3b;
}

.contact-curve-line {
  fill: none;
  stroke: var(--ft-gold-light);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.contact-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.12);
  color: var(--ft-gold);
  border: 1px solid rgba(212, 168, 83, 0.35);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: var(--ft-gold);
}

.contact-desc {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 83, 0.1);
  color: var(--ft-gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--ft-gold-light);
}

.contact-info-list a,
.contact-info-list span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--ft-transition);
}

.contact-info-list a:hover {
  color: var(--ft-gold);
}

.contact-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ft-gold-light);
  margin-bottom: 0.4rem;
}

.contact-input {
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: border-color var(--ft-transition), box-shadow var(--ft-transition), background var(--ft-transition);
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus {
  border-color: var(--ft-gold);
  background: rgba(212, 168, 83, 0.06);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.15);
  color: #fff;
}

.contact-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit {
  padding: 0.75rem 2rem;
  min-width: 200px;
  border-radius: 50px;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-success {
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(212, 168, 83, 0.12);
  color: var(--ft-gold-light);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.ft-footer {
  background: var(--ft-dark);
  color: rgba(255, 255, 255, 0.7);
}

.ft-brand-footer {
  padding: 0;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--ft-transition);
}

.footer-links a:hover {
  color: var(--ft-accent);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 8px;
  font-size: 1rem;
  transition: all var(--ft-transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--ft-accent);
  transform: translateY(-2px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--ft-transition);
}

.footer-legal a:hover {
  color: #fff;
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

.fade-up {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Floating AI Contact ===== */
.ft-contact-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  /* Closed panel must not create an invisible hit box over cuisine cards (esp. mobile). */
  pointer-events: none;
}

.ft-fab-panel {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: min(300px, calc(100vw - 40px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(239, 79, 95, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.92);
  transform-origin: bottom right;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.35s;
  pointer-events: none;
}

.ft-contact-fab.open .ft-fab-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ft-fab-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.ft-fab-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(239, 79, 95, 0.12), rgba(212, 168, 83, 0.15));
  color: var(--ft-accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.ft-fab-title {
  font-family: var(--ft-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ft-dark);
}

.ft-fab-desc {
  font-size: 0.85rem;
  color: var(--ft-gray);
  margin: 0;
}

.ft-fab-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-fab-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ft-dark);
  background: var(--ft-light);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
}

.ft-contact-fab.open .ft-fab-action {
  opacity: 1;
  transform: translateX(0);
}

.ft-contact-fab.open .ft-fab-action:nth-child(1) { transition-delay: 0.05s; }
.ft-contact-fab.open .ft-fab-action:nth-child(2) { transition-delay: 0.12s; }
.ft-contact-fab.open .ft-fab-action:nth-child(3) { transition-delay: 0.19s; }

.ft-fab-action:hover {
  transform: translateX(-4px);
  color: var(--ft-dark);
}

.ft-fab-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
}

.ft-fab-email:hover {
  background: rgba(239, 79, 95, 0.08);
  border-color: var(--ft-accent);
}

.ft-fab-call:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

.ft-fab-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.ft-fab-whatsapp .ft-fab-action-icon { background: linear-gradient(135deg, #25d366, #128c7e); }
.ft-fab-email .ft-fab-action-icon { background: linear-gradient(135deg, var(--ft-accent), var(--ft-accent-dark)); }
.ft-fab-call .ft-fab-action-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.ft-fab-action-text strong {
  display: block;
  font-family: var(--ft-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.ft-fab-action-text small {
  color: var(--ft-gray);
  font-size: 0.78rem;
}

.ft-fab-toggle {
  position: relative;
  width: 72px;
  height: 72px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.ft-fab-toggle:hover {
  transform: scale(1.06);
}

.ft-contact-fab.open .ft-fab-toggle {
  transform: scale(0.95);
}

.ft-fab-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
  animation: fabBounce 3s ease-in-out infinite;
}

.ft-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ft-accent);
  opacity: 0;
  animation: fabPulse 2.5s ease-out infinite;
  pointer-events: none;
}

.ft-fab-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5eead4;
  border-radius: 2px;
  transform: rotate(45deg);
  pointer-events: none;
  animation: fabSparkle 2s ease-in-out infinite;
}

.ft-fab-spark-1 { top: 2px; right: 8px; animation-delay: 0s; }
.ft-fab-spark-2 { top: 18px; left: -2px; animation-delay: 0.6s; }
.ft-fab-spark-3 { bottom: 10px; right: -2px; animation-delay: 1.2s; }

.ft-contact-fab.open .ft-fab-pulse {
  animation: none;
  opacity: 0;
}

@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fabSparkle {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) scale(0.8); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.2); }
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .hero-content {
    padding: 100px 16px 70px;
  }

  .hero-slide {
    min-height: 100svh;
  }

  .section-desc {
    font-size: 0.98rem;
  }

  .contact-wrapper {
    padding: 2rem 1.5rem;
  }

  .stats-bar {
    padding: 1.5rem 0.75rem;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .stat-item {
    border: none !important;
    padding: 1rem;
  }

  .stats-bar .col-md-4:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }

  .specials-wrapper,
  .contact-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  .specials-image-grid {
    margin-top: 1rem;
  }

  .specials-img {
    min-height: 200px;
  }

  .ft-curve-top,
  .ft-curve-bottom {
    height: 40px;
  }

  .contact-curve {
    --contact-curve-h: 30px;
  }

  .contact-curve-line {
    stroke-width: 4;
  }

  .hero-control {
    display: none;
  }

  .premium-coin,
  .mission-decor {
    display: none;
  }

  .ft-contact-fab {
    bottom: 18px;
    right: 18px;
  }

  .ft-fab-toggle {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 576px) {
  .ft-navbar .navbar-collapse {
    width: min(300px, 92vw);
    padding-left: 1rem;
  }

  .ft-brand {
    max-width: calc(100vw - 64px);
  }

  .hero-content {
    padding: 92px 14px 60px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .specials-wrapper,
  .contact-wrapper {
    padding: 1.75rem 1.15rem;
    border-radius: 18px;
  }

  .section-title,
  .section-title-dark {
    font-size: clamp(1.5rem, 6.5vw, 1.9rem);
  }

  .branches-heading {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .ft-contact-fab {
    bottom: max(14px, env(safe-area-inset-bottom));
    right: max(14px, env(safe-area-inset-right));
  }

  .ft-fab-toggle {
    width: 58px;
    height: 58px;
  }

  .ft-fab-panel {
    width: min(280px, calc(100vw - 28px));
  }
}

@media (max-width: 380px) {
  .ft-navbar .navbar-collapse {
    width: 100%;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .ft-navbar .nav-link {
    font-size: 1rem;
    gap: 0.6rem;
  }

  .nav-link-icon {
    font-size: 1rem;
    width: 1.25rem;
  }

  .ft-mobile-nav-brand {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .ft-navbar .navbar-collapse {
    width: min(340px, 55vw);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .ft-mobile-nav-brand {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .ft-navbar .nav-link {
    min-height: 40px;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .ft-navbar .navbar-collapse .btn-ft-primary {
    margin-top: 0.5rem;
  }
}

/* ===== Diverse Delights ===== */
.diverse-section {
  --dd-navy: #1d2b53;
  --dd-muted: #7a7f8c;
  --dd-soft: #9aa0ad;
  --dd-bg: #fbfbfc;
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% 55%, rgba(255, 255, 255, 0.9) 0%, transparent 70%),
    linear-gradient(180deg, #f7f8fa 0%, var(--dd-bg) 40%, #f4f5f8 100%);
  overflow: hidden;
}

.diverse-watermark {
  position: absolute;
  inset: 18% 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  pointer-events: none;
  z-index: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.85;
  letter-spacing: 0.12em;
  color: rgba(29, 43, 83, 0.035);
  text-transform: uppercase;
  user-select: none;
}

.diverse-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.diverse-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  letter-spacing: 0.04em;
  color: #1c1c1c;
  line-height: 1;
  text-align: center;
}

.diverse-intro {
  margin: 0 auto;
  max-width: 540px;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  line-height: 1.65;
  color: var(--dd-muted);
}

.diverse-orbit {
  --dd-count: 10;
  /* Text sits outside the rings; sats sit further out with a clear gap */
  --dd-radius: min(44vw, 360px);
  --dd-sat-radius: min(56vw, 475px);
  --dd-sat-size: clamp(64px, 8.5vw, 96px);
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(1100px, 108vw);
  max-height: 1020px;
  margin: 0 auto;
  overflow: visible;
}

.diverse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  /* Desktop: larger light ornamental rings around the center */
  width: 178%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  color: var(--ft-accent);
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
}

.diverse-ring-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.diverse-ring-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.diverse-ring-spin {
  transform-origin: 50% 50%;
}

.diverse-ring-spin--mid {
  animation: diverseRingSpin 28s linear infinite;
}

.diverse-ring-spin--outer {
  animation: diverseRingSpinReverse 42s linear infinite;
}

@keyframes diverseRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes diverseRingSpinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .diverse-ring-spin--mid,
  .diverse-ring-spin--outer {
    animation: none;
  }

  .diverse-center-label,
  .diverse-center-label::after {
    animation: none;
  }
}

.diverse-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(58%, 400px);
  overflow: visible;
}

.diverse-center-stage {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  height: auto;
  flex-shrink: 0;
  overflow: visible;
}

.diverse-center-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(239, 79, 95, 0.45);
  box-shadow:
    0 0 0 10px rgba(239, 79, 95, 0.06),
    0 0 42px rgba(239, 79, 95, 0.28),
    0 22px 55px rgba(26, 43, 94, 0.12);
}

.diverse-center-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.42s ease, transform 0.55s ease;
}

.diverse-center.is-swapping .diverse-center-media img {
  opacity: 0;
  transform: scale(0.94);
}

.diverse-center-label {
  position: absolute;
  /* Clear the decorative rings that extend past the center photo */
  top: calc(100% + clamp(3.5rem, 5.5vw, 5rem));
  left: 50%;
  z-index: 3;
  margin: 0;
  padding: 0.2rem 0.55rem;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dd-navy);
  line-height: 1.15;
  text-shadow:
    0 0 12px #fff,
    0 0 24px rgba(255, 255, 255, 0.95),
    0 1px 0 #fff;
  transition: opacity 0.35s ease, transform 0.4s ease, letter-spacing 0.45s ease;
}

.diverse-center-label.is-highlight {
  animation: diverseLabelIn 0.55s ease both;
}

.diverse-center-label::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.45rem auto 0;
  border-radius: 2px;
  background: var(--ft-accent);
  transform-origin: center;
}

.diverse-center-label.is-highlight::after {
  animation: diverseLabelMark 0.55s ease both;
}

.diverse-center.is-swapping .diverse-center-label {
  opacity: 0;
  transform: translateX(-50%) translateY(8px) scale(0.96);
  letter-spacing: 0.22em;
  animation: none;
}

.diverse-center.is-swapping .diverse-center-label::after {
  transform: scaleX(0.35);
  opacity: 0;
  animation: none;
}

@keyframes diverseLabelIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.96);
    letter-spacing: 0.22em;
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    letter-spacing: 0.12em;
  }
}

@keyframes diverseLabelMark {
  from {
    opacity: 0;
    transform: scaleX(0.25);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.diverse-item {
  --angle: calc((360deg / var(--dd-count)) * var(--i) - 108deg);
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(112px, 14.5vw, 142px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-radius)) rotate(calc(-1 * var(--angle)));
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.72;
}

.diverse-item[data-side="left"] {
  text-align: right;
}

.diverse-item[data-side="right"] {
  text-align: left;
}

.diverse-item:hover,
.diverse-item:focus-visible,
.diverse-item.is-active {
  opacity: 1;
  outline: none;
  z-index: 3;
}

.diverse-item.is-active {
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-radius)) rotate(calc(-1 * var(--angle))) scale(1.04);
}

/* Short red indicator line beside the active cuisine */
.diverse-item.is-active::before {
  content: '';
  position: absolute;
  top: 0.2em;
  width: 2px;
  height: 1.05em;
  background: var(--ft-accent);
  border-radius: 1px;
  pointer-events: none;
}

.diverse-item[data-side="left"].is-active::before {
  right: -0.55rem;
}

.diverse-item[data-side="right"].is-active::before {
  left: -0.55rem;
}

.diverse-item-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.72rem, 1.3vw, 0.88rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dd-navy);
  margin-bottom: 0.2rem;
  transition: color 0.25s ease;
}

.diverse-item.is-active .diverse-item-name,
.diverse-item:hover .diverse-item-name {
  color: var(--ft-accent);
}

.diverse-item-desc {
  display: block;
  font-size: clamp(0.66rem, 1.05vw, 0.75rem);
  line-height: 1.35;
  color: var(--dd-soft);
}

/* Outer surrounding circular cuisine images — sit between labels on a wider ring */
.diverse-sat {
  --angle: calc((360deg / var(--dd-count)) * (var(--i) + 0.5) - 108deg);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: var(--dd-sat-size);
  height: var(--dd-sat-size);
  margin: 0;
  padding: 0;
  border: 2.5px solid rgba(239, 79, 95, 0.55);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(239, 79, 95, 0.07),
    0 0 28px rgba(239, 79, 95, 0.32),
    0 8px 22px rgba(26, 43, 94, 0.12);
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-sat-radius)) rotate(calc(-1 * var(--angle)));
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.25s ease, box-shadow 0.3s ease;
  opacity: 0.92;
}

.diverse-sat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.diverse-sat:hover,
.diverse-sat:focus-visible {
  outline: none;
  opacity: 1;
  z-index: 4;
  border-color: var(--ft-accent);
  box-shadow:
    0 0 0 8px rgba(239, 79, 95, 0.1),
    0 0 36px rgba(239, 79, 95, 0.42),
    0 10px 28px rgba(26, 43, 94, 0.16);
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-sat-radius)) rotate(calc(-1 * var(--angle))) scale(1.08);
}

.diverse-sat.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 4;
  border-color: var(--ft-accent);
  box-shadow:
    0 0 0 8px rgba(239, 79, 95, 0.12),
    0 0 40px rgba(239, 79, 95, 0.45),
    0 10px 28px rgba(239, 79, 95, 0.2);
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-sat-radius)) rotate(calc(-1 * var(--angle))) scale(1.06);
}

.diverse-orbit-frame {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

/*
 * Tablet + phone: keep the exact desktop circular layout, draw it at a fixed
 * design size, then scale it down so left/right side images stay fully visible.
 */
@media (max-width: 991.98px) {
  .diverse-section {
    overflow: visible;
  }

  .diverse-section > .container {
    overflow: visible;
    max-width: 100%;
  }

  .diverse-orbit-frame {
    --dd-design: 1040px;
    --dd-scale: min(1, calc((100vw - 1.25rem) / var(--dd-design)));
    width: 100%;
    height: calc(var(--dd-design) * var(--dd-scale));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
  }

  .diverse-orbit {
    --dd-radius: 300px;
    --dd-sat-radius: 430px;
    --dd-sat-size: 112px;
    width: var(--dd-design);
    height: var(--dd-design);
    max-height: none;
    flex-shrink: 0;
    transform: scale(var(--dd-scale));
    transform-origin: top center;
    margin: 0;
    overflow: visible;
  }

  .diverse-ring {
    display: block;
    width: 170%;
    opacity: 0.7;
    top: 50%;
    left: 50%;
  }

  .diverse-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(54%, 300px);
    margin: 0;
  }

  .diverse-center-stage {
    width: min(100%, 260px);
  }

  .diverse-center-media {
    box-shadow:
      0 0 0 8px rgba(239, 79, 95, 0.06),
      0 0 32px rgba(239, 79, 95, 0.24),
      0 16px 40px rgba(26, 43, 94, 0.12);
  }

  .diverse-center-label {
    top: calc(100% + 3.5rem);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }

  .diverse-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 118px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0.72;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    --angle: calc((360deg / var(--dd-count)) * var(--i) - 108deg);
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-radius)) rotate(calc(-1 * var(--angle)));
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .diverse-item[data-side="left"] {
    text-align: right;
  }

  .diverse-item[data-side="right"] {
    text-align: left;
  }

  .diverse-item > * {
    pointer-events: none;
  }

  .diverse-item:active,
  .diverse-item.is-active {
    opacity: 1;
  }

  .diverse-item.is-active {
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-radius)) rotate(calc(-1 * var(--angle))) scale(1.04);
  }

  .diverse-item.is-active .diverse-item-name {
    color: var(--ft-accent);
  }

  .diverse-item-name {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.18rem;
    line-height: 1.2;
  }

  .diverse-item-desc {
    display: block;
    font-size: 0.7rem;
    line-height: 1.35;
    color: var(--dd-soft);
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .diverse-sat {
    --angle: calc((360deg / var(--dd-count)) * (var(--i) + 0.5) - 108deg);
    width: var(--dd-sat-size);
    height: var(--dd-sat-size);
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-sat-radius)) rotate(calc(-1 * var(--angle)));
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .diverse-sat.is-active {
    opacity: 1;
    visibility: visible;
  }

  .diverse-sat:active:not(.is-active) {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--dd-sat-radius)) rotate(calc(-1 * var(--angle))) scale(1.06);
  }
}

@media (max-width: 767.98px) {
  .diverse-section {
    padding: 2.5rem 0 2.75rem;
  }

  .diverse-section > .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .diverse-header {
    margin-bottom: 0.5rem;
    padding: 0 0.75rem;
  }

  .diverse-title {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: clamp(1.15rem, 6.2vw, 1.85rem);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .diverse-intro {
    max-width: 34ch;
    padding: 0 0.5rem;
    font-size: 0.85rem;
  }

  .diverse-watermark {
    font-size: clamp(2.75rem, 18vw, 4.5rem);
    inset: 22% 0 auto;
  }

  .diverse-orbit-frame {
    --dd-design: 1000px;
    --dd-scale: min(1, calc((100vw - 0.5rem) / var(--dd-design)));
  }

  .diverse-orbit {
    --dd-radius: 290px;
    --dd-sat-radius: 415px;
    --dd-sat-size: 112px;
  }
}

@media (max-width: 420px) {
  .diverse-orbit-frame {
    --dd-design: 960px;
  }

  .diverse-orbit {
    --dd-radius: 280px;
    --dd-sat-radius: 400px;
    --dd-sat-size: 106px;
  }

  .diverse-item {
    width: 112px;
  }

  .diverse-item-name {
    font-size: 0.74rem;
  }

  .diverse-item-desc {
    font-size: 0.66rem;
  }
}

@media (max-width: 360px) {
  .diverse-orbit-frame {
    --dd-design: 920px;
  }

  .diverse-orbit {
    --dd-radius: 268px;
    --dd-sat-radius: 380px;
    --dd-sat-size: 100px;
  }

  .diverse-center-stage {
    width: min(100%, 200px);
  }

  .diverse-center-label {
    top: calc(100% + 2.65rem);
  }

  .diverse-item {
    width: 106px;
  }
}
