/* Lakshya Balloon Decoration - shared website styles */

:root {
  --primary: #e3322a;
  --primary-dark: #b51d17;
  --secondary: #ff5a1f;
  --secondary-dark: #d84315;
  --accent: #ffb703;
  --accent-soft: #fff3cf;
  --info: #1b6eea;
  --info-soft: #e9f2ff;
  --light-pink: #fff5ee;
  --soft-pink: #ffe9db;
  --text-dark: #182338;
  --text-muted: #5f6b7a;
  --white: #ffffff;
  --card-shadow: 0 8px 26px rgba(227, 50, 42, 0.12);
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand-logo {
  width: min(180px, 34vw);
  height: auto;
  display: block;
}

.navbar-brand {
  padding: 0;
  margin-right: 12px;
}

.footer-brand-logo {
  width: min(260px, 100%);
  height: auto;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark) !important;
  padding: 8px 13px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--light-pink);
}

.btn-outline-header,
.btn-primary-custom,
.btn-secondary-custom,
.btn-header-cta,
.btn-white-cta,
.btn-wa-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-weight: 800;
}

.btn-outline-header {
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
}

.btn-outline-header:hover {
  background: var(--primary);
  color: #fff;
}

.btn-header-cta,
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(227, 50, 42, 0.24);
}

.btn-header-cta {
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 13px;
}

.btn-primary-custom {
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 14.5px;
}

.btn-header-cta:hover,
.btn-primary-custom:hover,
.btn-white-cta:hover,
.btn-wa-cta:hover,
.btn-secondary-custom:hover {
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: 30px;
  font-size: 14.5px;
}

.btn-secondary-custom:hover {
  background: var(--primary);
  color: #fff;
}

.section-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.section-title span {
  color: var(--primary);
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
}

.section-divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  margin: 12px 0 32px;
}

.view-all-btn {
  color: var(--primary);
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.view-all-btn:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  background: linear-gradient(135deg, #fff6ef 0%, #fff7df 45%, #edf5ff 100%);
  padding: 65px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 110, 234, 0.08) 0%, transparent 70%);
}

.inner-hero {
  padding-top: 55px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-section h1 {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.16;
  color: var(--text-dark);
}

.hero-section h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.7;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: #8a5b00;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px dashed var(--accent);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 110, 234, 0.18);
  background: linear-gradient(135deg, #fff7de, #ffe7d7, #ecf4ff);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}

.hero-form-card {
  min-height: auto;
  padding: 14px;
  align-items: stretch;
  justify-content: stretch;
}

.hero-enquiry-box {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 4px;
}

.hero-logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.hero-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.hero-card-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
}

.marquee-strip {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 11px 0;
  overflow: hidden;
}

.marquee-inner {
  display: inline-flex;
  gap: 54px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  font-weight: 700;
  font-size: 13.5px;
}

.marquee-inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.categories-strip,
.process-section,
.faq-section,
.blog-section {
  background: linear-gradient(180deg, #fff8f1 0%, #eef5ff 100%);
}

.categories-strip,
.services-section,
.city-section,
.why-section,
.process-section,
.gallery-section,
.testimonials-section,
.faq-section,
.content-section,
.listing-section,
.blog-section {
  padding: 70px 0;
}

.cat-item,
.feature-card,
.info-card,
.testimonial-card,
.content-card,
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.cat-item {
  text-align: center;
  padding: 20px 12px;
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
}

.cat-item:hover,
.feature-card:hover,
.info-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.product-card:hover {
  transform: translateY(-6px);
}

.cat-icon-wrap,
.feature-icon,
.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 10px;
  font-size: 1.6rem;
}

.cat-name,
.feature-title,
.info-card h3,
.blog-card-title {
  font-weight: 800;
  color: var(--text-dark);
}

.cat-name {
  font-size: 13px;
}

.section-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-row-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.product-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  background: #fff;
  height: 100%;
}

.product-img-wrap {
  height: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  position: relative;
}

.product-img-wrap.has-photo,
.gallery-img-wrap.has-photo {
  background: #f5f7fb;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 24, 40, 0.58), rgba(16, 24, 40, 0.06));
}

.hero-page-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 18px 46px rgba(24, 35, 56, 0.12);
}

.hero-page-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.blog-thumb {
  background: linear-gradient(135deg, #ffd1e8, #ffe8c7);
}

.p-icon {
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.p-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.18);
  padding: 3px 12px;
  border-radius: 20px;
}

.card-body {
  padding: 14px;
}

.card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-copy {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 0;
}

.btn-book-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.promo-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.09), transparent 40%);
}

.promo-banner h2,
.cta-section h2 {
  font-size: 2.35rem;
  font-weight: 900;
  color: #fff;
}

.promo-banner h2 span {
  color: var(--accent);
}

.promo-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #333;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
}

.city-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 255px;
}

.city-mini-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1f4f8;
  box-shadow: 0 14px 32px rgba(24, 35, 56, 0.08);
  padding: 22px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.city-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(24, 35, 56, 0.12);
  border-color: rgba(227, 50, 42, 0.18);
}

.city-mini-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.city-mini-icon,
.city-mini-photo {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  flex-shrink: 0;
}

.city-mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
}

.city-mini-photo {
  object-fit: cover;
  display: block;
}

.city-mini-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
}

.city-mini-meta {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.city-mini-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 900;
}

.city-mini-action i {
  font-size: 1.2rem;
}

.city-mini-card.text-decoration-none {
  text-decoration: none;
}

.city-mini-card.text-decoration-none:hover {
  text-decoration: none;
}

.city-bg,
.city-overlay {
  position: absolute;
  inset: 0;
}

.city-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.28) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.city-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px;
}

.city-desc,
.city-areas {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.city-desc {
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.city-areas {
  font-size: 11px;
  margin-bottom: 14px;
}

.compact-city-card .btn-primary-custom {
  padding: 9px 18px;
  font-size: 12.5px;
}

.why-section {
  background: linear-gradient(135deg, #fff8f1 0%, #eef5ff 100%);
}

.feature-card {
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.feature-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}

.feature-title {
  font-size: 14.5px;
  margin-bottom: 7px;
}

.feature-desc,
.info-card p,
.content-card p,
.blog-article p,
.blog-article li {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.8;
}

.process-step {
  text-align: center;
}

.step-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}

.step-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.7;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.gallery-img-wrap {
  min-height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(227, 50, 42, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  text-align: center;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 12px;
  color: #8d8da2;
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
}

.testimonial-card {
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}

.stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 800;
  font-size: 14px;
}

.reviewer-loc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
}

.accordion-button {
  font-weight: 700;
  font-size: 14.5px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--soft-pink) !important;
  box-shadow: none;
}

.accordion-item {
  border: 1.5px solid rgba(233, 30, 140, 0.12) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-body {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.75;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 48%, var(--info) 100%);
  padding: 80px 0;
  text-align: center;
}

.booking-form-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
}

.form-heading-wrap {
  margin-bottom: 18px;
  text-align: center;
}

.form-heading {
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}

.hero-enquiry-box .form-heading {
  color: var(--primary);
  font-size: 1.5rem;
}

.form-subheading {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.hero-enquiry-box .form-subheading {
  color: var(--text-muted);
}

.form-help-text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-weight: 700;
}

.form-help-text a {
  color: #fff;
}

.form-alert {
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.form-alert-success {
  background: #eafaf0;
  color: #156f3e;
  border: 1px solid #bde8ca;
}

.form-alert-error {
  background: #fff1f0;
  color: #a12c25;
  border: 1px solid #ffc9c4;
}

.booking-form-box .form-control,
.booking-form-box .form-select {
  border-radius: 12px;
  padding: 12px 16px;
  border: none;
  font-weight: 700;
  font-size: 14px;
}

.hero-enquiry-box .form-control,
.hero-enquiry-box .form-select {
  border: 1px solid #e7ebf2;
  background: #fff;
}

.btn-white-cta {
  background: #fff;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 14.5px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-wa-cta {
  background: #25d366;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 14.5px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32);
}

.breadcrumb-wrap {
  background: #fff;
  border-top: 1px solid rgba(233, 30, 140, 0.08);
}

.custom-breadcrumb {
  padding: 14px 0;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(--primary);
}

.listing-section {
  background: #fff;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
}

.locality-group {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.locality-group-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.locality-icon {
  width: 50px;
  height: 50px;
}

.locality-group h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
}

.locality-group p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.locality-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locality-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7f9fc;
  border: 1px solid #e8eef5;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
}

.locality-links a:hover {
  color: var(--primary);
  border-color: rgba(227, 50, 42, 0.24);
  transform: translateY(-2px);
}

.area-card {
  border: 1px solid rgba(233, 30, 140, 0.08);
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.info-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.content-card {
  padding: 34px;
}

.about-media-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 16px;
  height: 100%;
}

.about-media-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3d6, #ffe4d6, #ecf4ff);
  display: flex;
  align-items: center;
  justify-content: center;

}

.about-media-frame img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.image-path-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 800;
}

.content-card h2,
.blog-article h2 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.content-card h3,
.blog-article h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.blog-card-title {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.blog-article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
  padding: 36px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-article ul {
  padding-left: 20px;
}

.blog-cta-box {
  background: var(--light-pink);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
}

.blog-cta-box h3 {
  margin-top: 0;
}

.main-footer {
  background: #0f0f1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-desc,
.footer-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  line-height: 1.75;
}

.footer-heading {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(227, 50, 42, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  margin-top: 48px;
}

.footer-bottom-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
}

.lbd-toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 99999;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .brand-logo {
    width: min(154px, 46vw);
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1,
  .promo-banner h2,
  .cta-section h2 {
    font-size: 1.85rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .content-card,
  .blog-article,
  .booking-form-box {
    padding: 22px;
  }

  .hero-form-card {
    padding: 8px;
  }

  .section-row-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .city-mini-card {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    width: min(140px, 44vw);
  }

  .hero-main-card {
    border-radius: 18px;
    padding: 12px;
  }

  .hero-enquiry-box {
    padding: 0;
  }

  .form-heading {
    font-size: 1.25rem;
  }

  .hero-enquiry-box .form-heading {
    font-size: 1.3rem;
  }

  .form-subheading,
  .form-help-text {
    font-size: 13px;
  }
}
