/* =====================================================
   KK BROTHERS SAFETY NETS - Chennai
   Mobile First CSS Design System
   Colors: Deep Blue + Orange + White
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-light: #1976D2;
  --blue-xlight: #E3F2FD;
  --orange: #F57C00;
  --orange-dark: #E65100;
  --orange-light: #FF9800;
  --white: #ffffff;
  --dark: #0A0F1E;
  --dark-2: #111827;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --gray-mid: #E5E7EB;
  --green: #25D366;
  --green-dark: #128C7E;
  --call-red: #D32F2F;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-blue: 0 4px 20px rgba(21,101,192,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(1.7rem, 5.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); }
p  { font-size: 0.95rem; line-height: 1.75; color: var(--gray); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(21,101,192,0.4);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,124,0,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,124,0,0.5);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--blue-xlight);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-call {
  background: var(--call-red);
  color: #fff;
}
.btn-call:hover { background: #b71c1c; transform: translateY(-2px); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(21,101,192,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(21,101,192,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 90px; /* Adjust this number to make it bigger or smaller */
  width: auto;
  max-width: 110px; 
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .brand { 
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 2.5vw, 1.05rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.nav-logo-text .tagline {
  font-size: 0.6rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 0.42rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,124,0,0.4);
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Mobile Nav Menu */
.nav-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--blue-xlight);
  padding: 0.5rem 1rem 1rem;
  gap: 0;
  max-height: 80vh;
  overflow-y: auto;
}
.nav-menu.open { display: flex; }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-2);
  border-bottom: 1px solid var(--gray-mid);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link .arrow { font-size: 0.7rem; transition: transform 0.3s; }
.nav-item.open .arrow { transform: rotate(180deg); }

.dropdown {
  display: none;
  flex-direction: column;
  background: var(--blue-xlight);
  border-radius: 8px;
  overflow: hidden;
  margin: 0.25rem 0 0.5rem 1rem;
}
.nav-item.open .dropdown { display: flex; }
.dropdown-link {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--blue-dark);
  font-weight: 500;
  border-bottom: 1px solid rgba(21,101,192,0.1);
  transition: background 0.2s, color 0.2s;
}
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover { background: var(--blue); color: #fff; padding-left: 1.3rem; }

/* Desktop nav */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
    gap: 0.2rem;
    max-height: none;
    overflow: visible;
  }
  .nav-link {
    padding: 0.5rem 0.85rem;
    border-bottom: none;
    border-radius: 8px;
    font-size: 0.85rem;
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s;
  }
  .nav-link:hover::after, .nav-link.active::after { width: 70%; }
  .nav-link:hover { background: var(--blue-xlight); color: var(--blue); }
  .dropdown {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    margin: 0;
    z-index: 300;
    border: 1px solid var(--gray-mid);
  }
  .nav-item:hover .dropdown { display: flex !important; }
  .dropdown-link { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 480px;
  max-height: 780px;
  overflow: hidden;
  margin-top: 70px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,71,161,0.85) 0%,
    rgba(21,101,192,0.65) 40%,
    rgba(0,0,0,0.4) 100%
  );
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: #fff;
  width: 92%;
  z-index: 5;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeSlideDown 0.8s ease forwards;
}
.hero-content h1 {
  font-size: clamp(1.5rem, 5.5vw, 3.2rem);
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 0.6rem;
  animation: fadeSlideDown 0.9s ease 0.1s both;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--orange-light); }
.hero-sub {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  opacity: 0.95;
  margin-bottom: 0.5rem;
  animation: fadeSlideDown 1s ease 0.2s both;
}
.hero-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 1s ease 0.3s both;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 1.1s ease 0.4s both;
}
/* Slider Controls */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.hero-prev { left: 12px; }
.hero-next { right: 12px; }
.hero-prev:hover, .hero-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   INVISIBLE GRILLS HIGHLIGHT BANNER
   ===================================================== */
.ig-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ig-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.ig-banner h2 {
  color: #fff;
  font-size: clamp(1rem, 3.5vw, 1.6rem);
  margin-bottom: 0.4rem;
}
.ig-banner h2 span { color: var(--orange-light); }
.ig-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.ig-banner-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ig-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,124,0,0.7); }
  70%      { box-shadow: 0 0 0 8px rgba(245,124,0,0); }
}

/* =====================================================
   SECTION UTILITIES
   ===================================================== */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-title {
  text-align: center;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.section-line::before, .section-line::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--gray-mid);
}
.section-line span {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
}
.section-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}
.tag-label {
  display: inline-block;
  background: var(--blue-xlight);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  background: var(--gray-light);
  padding: 4rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 650px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-body {
  padding: 1rem;
}
.service-card-body h3 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.service-card-body p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.service-card-actions {
  display: flex;
  gap: 0.4rem;
}
.sc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition);
}
.sc-btn-call { background: #FFF3E0; color: var(--orange-dark); }
.sc-btn-call:hover { background: var(--orange); color: #fff; }
.sc-btn-wa { background: #E8F5E9; color: #1B5E20; }
.sc-btn-wa:hover { background: var(--green); color: #fff; }
.sc-btn-info { background: var(--blue-xlight); color: var(--blue-dark); }
.sc-btn-info:hover { background: var(--blue); color: #fff; }

.service-card.featured {
  border: 2px solid var(--orange);
}
.service-card .featured-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,0.75); }
.why-section .section-line::before,
.why-section .section-line::after { background: rgba(255,255,255,0.2); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}
.why-icon {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: #fff;
  color: var(--orange);
  transform: scale(1.1) rotate(5deg);
}
.why-card h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.why-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 500px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.8); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,101,192,0.8) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews-section { background: var(--gray-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem; left: 1rem;
  font-size: 4rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.15;
}
.review-stars { color: #FFC107; font-size: 0.9rem; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.reviewer-area { font-size: 0.75rem; color: var(--gray); }

/* =====================================================
   STATS COUNTER
   ===================================================== */
.stats-section {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.82rem; color: var(--gray); font-weight: 500; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { background: var(--blue-xlight); }
.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item.orange .contact-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.contact-item.green .contact-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.contact-label { font-size: 0.75rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-val { font-size: 0.95rem; color: var(--dark); font-weight: 700; }
.contact-val a { color: var(--blue); }
.contact-val a:hover { color: var(--orange); }

/* Contact Form */
.contact-form {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-form h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 0.85rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  padding: 2rem 1rem;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 0.5rem; font-size: clamp(1.1rem, 4vw, 1.8rem); }
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; font-size: 0.9rem; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(1);
  background: white;
  padding: 4px 8px;
  border-radius: 8px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom span { color: var(--orange-light); }

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.float-buttons {
  position: fixed;
  bottom: 90px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  animation: floatIn 0.5s ease both;
}
.float-btn:hover { transform: scale(1.15); }
.float-btn.call-float { background: var(--call-red); animation-delay: 0.1s; }
.float-btn.wa-float   { background: var(--green); animation-delay: 0.2s; }
.float-btn.email-float{ background: var(--blue); animation-delay: 0.3s; }
.float-btn .float-label {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .float-label { opacity: 1; }

@keyframes floatIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: #fff;
  border-top: 1px solid var(--gray-mid);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.6rem 0.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #fff;
  transition: opacity 0.2s;
}
.mobile-cta-bar a:hover { opacity: 0.9; }
.mobile-cta-bar .mcta-call { background: var(--call-red); }
.mobile-cta-bar .mcta-wa   { background: var(--green); }
.mobile-cta-bar .mcta-email{ background: var(--blue); }
.mobile-cta-bar i { font-size: 1rem; }

@media (min-width: 900px) {
  .mobile-cta-bar { display: none; }
  .float-buttons { bottom: 30px; }
}

/* =====================================================
   PAGE HERO (for inner pages)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 5rem 1rem 3rem;
  text-align: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--orange-light); }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto; font-size: 0.95rem; }

/* Service Page Layout */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .service-page-layout { grid-template-columns: 2fr 1fr; }
}

.service-content h2 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.4rem; }
.service-content p { margin-bottom: 1rem; }
.service-content h3 { color: var(--blue); margin: 1.5rem 0 0.75rem; font-size: 1.15rem; }

.features-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-light);
  border-radius: 10px;
  border-left: 3px solid var(--blue);
}
.feature-item i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.feature-item span { font-size: 0.88rem; color: var(--dark-2); }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.sidebar-card h4 {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
}
.sidebar-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.sidebar-contact-btn.call { background: var(--call-red); }
.sidebar-contact-btn.call:hover { background: #b71c1c; }
.sidebar-contact-btn.whatsapp { background: var(--green); margin-bottom: 0; }
.sidebar-contact-btn.whatsapp:hover { background: var(--green-dark); }

.ig-promo-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: #fff;
}
.ig-promo-card h4 { color: #fff; border-bottom-color: var(--orange); }
.ig-promo-card p { color: rgba(255,255,255,0.85); font-size: 0.83rem; margin-bottom: 0.75rem; }

/* SEO Location Page */
.location-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.5rem 0;
}
@media (min-width: 600px) { .location-areas { grid-template-columns: repeat(3, 1fr); } }
.area-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: var(--blue-xlight);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--blue-dark);
  font-weight: 600;
  transition: var(--transition);
}
.area-chip:hover { background: var(--blue); color: #fff; }
.area-chip i { font-size: 0.75rem; color: var(--orange); }
.area-chip:hover i { color: #fff; }

/* FAQ Section */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.faq-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--blue-xlight); color: var(--blue); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { background: var(--blue-xlight); color: var(--blue); }

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: auto; }

/* Gallery Page Filters */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--gray-mid);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* Animations */
.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate.delay-1 { transition-delay: 0.1s; }
.animate.delay-2 { transition-delay: 0.2s; }
.animate.delay-3 { transition-delay: 0.3s; }
.animate.delay-4 { transition-delay: 0.4s; }

/* Utilities */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } .show-mobile { display: none !important; } }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 90px;
  left: 16px;
  width: 42px; height: 42px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  border: none;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-dark); }
@media (min-width: 900px) { .scroll-top { bottom: 30px; left: 30px; } }

/* =====================================================
   ADDITIONAL SECTIONS & FIXES
   ===================================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.process-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.process-step {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(245,124,0,0.3);
}
.process-card i {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  transition: var(--transition);
}
.process-card:hover i { transform: scale(1.1); color: var(--orange); }
.process-card h4 { margin-bottom: 0.5rem; color: var(--dark-2); }
.process-card p { font-size: 0.85rem; }

.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
  aspect-ratio: 16/9;
}
@media(min-width: 768px){ .map-container { aspect-ratio: 21/9; } }
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-container { margin-top: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--dark-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-heading);
}
.faq-q:hover { color: var(--blue); }
.faq-q i { transition: transform 0.3s; color: var(--blue); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--gray);
  font-size: 0.9rem;
}
.faq-item.open .faq-a {
  padding: 0 1.25rem 1.25rem;
  max-height: 200px;
}
/* =====================================================
   EXTRA CONTENT BLOCKS - Added to homepage
   ===================================================== */

/* ---- Split Block Layout ---- */
.split-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-block {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
  .split-block.split-reverse {
    flex-direction: row-reverse;
  }
}

.split-img {
  flex: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.split-content {
  flex: 1;
  width: 100%;
}

.split-content p {
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

/* ---- Extra List ---- */
.extra-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.extra-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--dark-2);
  font-weight: 500;
}

.extra-list li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- Extra Badges Row ---- */
.extra-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.extra-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-xlight);
  color: var(--blue-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.extra-badge i { font-size: 0.85rem; }

.extra-badge.orange {
  background: #FFF3E0;
  color: var(--orange-dark);
}

.extra-badge.green {
  background: #E8F5E9;
  color: #1B5E20;
}

/* ---- Split Action Buttons ---- */
.split-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

/* ---- Services List Grid ---- */
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sl-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-2);
}

.sl-item i {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ---- Types Grid ---- */
.types-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.type-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
}

.type-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-2);
  margin-bottom: 0.2rem;
}

.type-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

.type-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.type-dot.orange { background: var(--orange); }
.type-dot.green { background: #2E7D32; }
.type-dot.blue { background: var(--blue); }
.type-dot.purple { background: #7B1FA2; }

/* ---- Sports Types Grid ---- */
.sports-types-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sport-type-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-sm);
}

.sport-num {
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.sport-type-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark-2);
  margin-bottom: 0.15rem;
}

.sport-type-item span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ---- Extra Block spacing ---- */
.extra-block {
  padding: 3.5rem 0;
}

@media (max-width: 600px) {
  .extra-block {
    padding: 2.5rem 0;
  }
  .services-list-grid {
    grid-template-columns: 1fr;
  }
  .split-btns .btn {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
  }
  .types-grid, .sports-types-grid {
    gap: 0.65rem;
  }
}

