/* =========================================================
   PONNU SUPER MARKET — style.css
   Brand: Teal #1ABFC9 / Deep Teal #007A85 / Red #CC2222
   ========================================================= */

/* Google Fonts loaded in <head> via link tag */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #1F2937;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #1ABFC9 0%, #007A85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(26, 191, 201, .35);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid #1ABFC9;
  color: #1ABFC9;
  font-weight: 600;
  font-size: 1rem;
  transition: background .2s, color .2s;
}

.btn-outline:hover {
  background: #1ABFC9;
  color: #fff;
}

/* ripple */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%);
  transition: width .55s, height .55s, opacity .55s;
}

.btn-primary:active::after {
  width: 280px;
  height: 280px;
  opacity: 0;
  transition: 0s;
}

/* premium card hover */
.card {
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .14);
}

/* section headers */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1F2937;
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1.1rem;
  color: rgba(31, 41, 55, .7);
  max-width: 38rem;
  margin: 0 auto;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
  pointer-events: none;
  z-index: 0;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatR {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.floatR {
  animation: floatR 8s ease-in-out infinite;
}

/* AOS fade-up fallback (AOS CDN handles real animations) */

/* ── HEADER ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: box-shadow .3s;
}

#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 500;
  color: #1F2937;
  transition: color .2s;
}

.nav-desktop a:hover {
  color: #1ABFC9;
}

.nav-cta {
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  color: #fff;
  font-weight: 600;
  transition: transform .2s;
}

.nav-cta:hover {
  transform: scale(1.05);
}

/* hamburger */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #1F2937;
  padding: .5rem;
}

/* mobile drawer */
#mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  background: #fff;
  box-shadow: -4px 0 30px rgba(0, 0, 0, .15);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1100;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#mobile-drawer.open {
  transform: translateX(0);
}

#mobile-drawer a {
  padding: 1rem 0;
  font-weight: 500;
  color: #1F2937;
  border-bottom: 1px solid #E5E7EB;
  transition: color .2s;
}

#mobile-drawer a:hover {
  color: #1ABFC9;
}

#mobile-drawer .drawer-cta {
  margin-top: 2rem;
  padding: .875rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 1050;
}

#drawer-overlay.open {
  display: block;
}

/* ── HERO ───────────────────────────────────────────────── */
#home {
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, #F0FAFB 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.since-badge i {
  color: #1ABFC9;
}

.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-heading .word {
  display: inline-block;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(31, 41, 55, .8);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* banner slideshow */
.banner-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.banner-slides {
  position: relative;
  height: 280px;
}

.banner-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .7s ease;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .4) 0%, transparent 55%);
}

.banner-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.banner-dots {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  display: flex;
  gap: .4rem;
}

.banner-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transition: all .3s;
}

.banner-dots button.active {
  background: #fff;
  transform: scale(1.3);
}

/* thumbnails */
.banner-thumbs {
  display: flex;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
}

.thumb-btn {
  flex: 1;
  position: relative;
  height: 64px;
  overflow: hidden;
  opacity: .6;
  transition: opacity .2s;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn.active {
  opacity: 1;
}

.thumb-btn .thumb-bar {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1ABFC9, #007A85);
}

.thumb-btn.active .thumb-bar {
  display: block;
}

/* stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
}

.stat-label {
  font-size: .8rem;
  color: rgba(31, 41, 55, .65);
  margin-top: .2rem;
}

/* contact form card */
.hero-form-card {
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  position: sticky;
  top: 100px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid #E5E7EB;
  border-radius: .875rem;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus {
  border-color: #1ABFC9;
  box-shadow: 0 0 0 3px rgba(26, 191, 201, .18);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 400;
}

.radio-group input[type="radio"] {
  accent-color: #1ABFC9;
  width: 16px;
  height: 16px;
}

.btn-form {
  width: 100%;
  padding: 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s;
  margin-top: 1.25rem;
}

.btn-form:hover {
  transform: scale(1.04);
}

/* ── WHY CHOOSE US ──────────────────────────────────────── */
#why-choose-us {
  padding: 5rem 0;
  background: #F0FAFB;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 1.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  border-top: 4px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.feature-card:hover {
  border-color: #1ABFC9;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .625rem;
}

.feature-card p {
  color: rgba(31, 41, 55, .7);
  line-height: 1.65;
  font-size: .95rem;
}

/* ── PRODUCTS ───────────────────────────────────────────── */
#products {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, #F0FAFB 100%);
}

.swiper-nav-row {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-bottom: 1rem;
}

.swiper-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  color: #1ABFC9;
}

.swiper-nav-btn:hover {
  background: #1ABFC9;
  border-color: #1ABFC9;
  color: #fff;
}

.products-swiper {
  padding-bottom: 3rem !important;
}

.products-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #1ABFC9;
  opacity: .35;
}

.products-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  display: none;
}

.product-card-img {
  height: 192px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.1);
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.product-card-body p {
  font-size: .875rem;
  color: rgba(31, 41, 55, .65);
}

/* ── WHY CUSTOMERS LOVE US ──────────────────────────────── */
#why-love {
  padding: 5rem 0;
  background: #fff;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reason-card {
  padding: 2rem;
  border-radius: 1.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  position: relative;
  overflow: hidden;
}

.reason-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.reason-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.reason-card p {
  color: rgba(31, 41, 55, .7);
  font-size: .95rem;
  line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────────────────── */
#site-footer {
  background: #004D57;
  color: #fff;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, .24);
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-col ul li a,
.footer-col ul li button {
  color: rgba(255, 255, 255, .75);
  font-weight: 400;
  font-size: .95rem;
  transition: color .2s;
  background: none;
  font-family: inherit;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-item i {
  color: #f6faf7;
  margin-top: .15rem;
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.5;
}

.contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links button {
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
  background: none;
  font-family: inherit;
  transition: color .2s;
}

.footer-links button:hover {
  color: #fff;
}

/* ── MODALS ─────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  background: #fff;
  border-radius: 1.75rem;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: modalIn .3s cubic-bezier(.34, 1.56, .64, 1);
}

.modal-box-lg {
  max-width: 900px;
}

@keyframes modalIn {
  from {
    transform: scale(.82);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  z-index: 10;
  transition: background .2s;
}

.modal-close:hover {
  background: #E5E7EB;
}

.modal-body {
  padding: 3rem;
  overflow-y: auto;
  max-height: 90vh;
}

.modal-body .modal-logo {
  height: 64px;
  margin-bottom: 2rem;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: .875rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.info-content h4 {
  font-weight: 600;
  margin-bottom: .2rem;
}

.info-content p,
.info-content a {
  color: rgba(31, 41, 55, .7);
  font-size: .95rem;
}

.info-content a {
  color: #1ABFC9;
}

.info-content a:hover {
  text-decoration: underline;
}

.modal-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-maps {
  flex: 1;
  padding: 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1ABFC9, #007A85);
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s;
}

.btn-maps:hover {
  transform: scale(1.04);
}

.btn-wa {
  flex: 1;
  padding: 1rem;
  border-radius: 9999px;
  background: #22C55E;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s;
}

.btn-wa:hover {
  transform: scale(1.04);
}

/* scrollable modal (privacy / terms) */
.modal-scroll-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.modal-scroll-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-scroll-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: background .2s;
}

.modal-scroll-close:hover {
  background: #E5E7EB;
}

.modal-prose {
  padding: 1.5rem 2rem 2.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.modal-prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
}

.modal-prose p {
  color: rgba(31, 41, 55, .72);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: .95rem;
}

.modal-prose ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-prose ul li {
  color: rgba(31, 41, 55, .72);
  margin-bottom: .4rem;
  font-size: .95rem;
}

.modal-prose strong {
  color: #1F2937;
}

/* ── TOAST ──────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  background: #004D57;
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  gap: .75rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s, opacity .35s;
  font-weight: 500;
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

#toast i {
  color: #22C55E;
  font-size: 1.2rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-cta-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    position: static;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-num {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .modal-cta-row {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .banner-slides {
    height: 210px;
  }
}

.swiper-nav-row{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-bottom:20px;
}

.swiper-nav-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#3D9094;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.swiper-nav-btn:hover{
    background:#0E6365;
    transform:scale(1.08);
}

.form-label{
    display:block;
    font-weight:600;
    margin-bottom:10px;
}

.required{
    color:#e53935;
}

.consent-box{
    border:1px solid #dbe3ea;
    border-radius:12px;
    background:#fafbfd;
    padding:20px;
}

.consent-text{
    font-size:15px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

.radio-option{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    cursor:pointer;
    line-height:1.7;
    font-size:15px;
}

.radio-option input[type="radio"]{
    margin-top:5px;
    transform:scale(1.2);
    accent-color:#3D9094;
}

.consent-note{
    margin-top:15px;
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.consent-note a{
    color:#3D9094;
    text-decoration:none;
    font-weight:600;
}

.consent-note a:hover{
    text-decoration:underline;
}