@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Fonts */
:root {
  --font-default: 'Poppins', sans-serif;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #F22735;
  --color-secondary: #f22735;
  --color-dark: #0f172a;
  --color-muted: #667085;
  --color-soft: #fff5f5;
  --color-white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #F22735 0%, #ff6b6b 100%);
  --shadow-primary: 0 20px 50px rgba(242, 39, 53, 0.16);
  --shadow-soft: 0 15px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
}

.location-page {
  background: #ffffff;
  overflow: hidden;
}

.section-space {
  position: relative;
}

.bg-soft {
  background: linear-gradient(180deg, #fff7f7 0%, #fff 100%);
}

.location-hero {
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.location-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(242, 39, 53, 0.18);
  filter: blur(120px);
  top: -80px;
  right: -80px;
  border-radius: 50%;
  z-index: 1;
}

.location-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(90px);
  bottom: -100px;
  left: -60px;
  border-radius: 50%;
  z-index: 1;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.60)),
    linear-gradient(180deg, rgba(242, 39, 53, 0.24), rgba(0, 0, 0, 0.18));
  z-index: 1;
}

.location-hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
}

.btn-hero-primary,
.btn-hero-outline,
.btn-cta {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-primary);
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-hero-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  color: #fff;
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-tag.light {
  color: rgba(255,255,255,0.85);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.section-title.centered {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  color: #4b5563;
  line-height: 1.95;
  font-size: 1rem;
  margin-bottom: 16px;
}

.content-card,
.intro-panel,
.service-card,
.cta-box,
.image-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.content-card,
.intro-panel {
  padding: 34px;
}

.image-card {
  padding: 12px;
}

.section-block {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.content-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.8;
  font-weight: 500;
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.service-card {
  padding: 28px;
  height: 100%;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(242, 39, 53, 0.12);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 39, 53, 0.12), rgba(242, 39, 53, 0.22));
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h5 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

.custom-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: var(--color-dark);
  background: #fff;
  padding: 20px 24px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: #fff7f7;
}

.custom-accordion .accordion-body {
  padding: 0 24px 22px;
  color: #4b5563;
  line-height: 1.9;
}

.cta-section {
  background: linear-gradient(135deg, #111827 0%, #1f2937 60%, #F22735 140%);
}

.cta-box {
  padding: 60px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.cta-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-text {
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto 28px;
}

.btn-cta {
  background: #fff;
  color: var(--color-primary);
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.btn-cta:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .location-hero {
    min-height: 78vh;
    padding: 100px 0 70px;
  }

  .content-card,
  .intro-panel,
  .service-card,
  .cta-box {
    padding: 24px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-text,
  .section-text {
    font-size: 0.98rem;
  }
}