/* ============================================================
   COURT MARRIAGE MUMBAI — style.css
   Author: Court Marriage Legal Services
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-dark: #A87B2F;
  --gold-light: #F0D080;
  --navy: #0D1B2A;
  --navy-light: #1A2D42;
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-gray: #5C6472;
  --text-light: #8A8F9A;
  --border-color: #E8E0D0;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- UTILITY ---- */
.section-pad { padding: 90px 0; }
.bg-light-cream { background-color: var(--cream); }
.text-gold { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.30);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-desc { color: var(--text-gray); font-size: 15.5px; margin-bottom: 10px; }
.section-subtitle { color: var(--text-gray); font-size: 16px; max-width: 580px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(201,168,76,0.30);
  transition: var(--transition);
}
.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.42);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}
.btn-consult {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(201,168,76,0.28);
  transition: var(--transition);
}
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,168,76,0.40); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-info { color: rgba(255,255,255,0.80); }
.topbar-info a {
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
  margin-right: 6px;
}
.topbar-info a:hover { color: var(--gold); }
.topbar-divider { color: rgba(255,255,255,0.25); margin: 0 10px; }
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-left: 6px;
  transition: var(--transition);
}
.topbar-social:hover { background: var(--gold); color: var(--white); }

/* ---- HEADER / NAVBAR ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar { padding: 14px 0; }
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(201,168,76,0.28);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-sub { font-size: 10px; color: var(--gold); letter-spacing: 0.10em; text-transform: uppercase; font-weight: 500; }

.nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

.toggler-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.10);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
}
.navbar-toggler { border: none; padding: 0; box-shadow: none !important; }

/* ---- HERO CAROUSEL ---- */
.hero-slide {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide-1 { background-image: url('../images/banner1.webp'); background-color: #0D1B2A; }
.slide-2 { background-image: url('../images/banner2.webp'); background-color: #1A2D42; }
.slide-3 { background-image: url('../images/banner4.webp'); background-color: #0D1B2A; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.60) 100%);
}
.carousel-inner, .carousel, .hero-slide { height: 88vh; }
.carousel-item { height: 88vh; }
.container.h-100, .row.h-100 { height: 100%; }

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.50);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  animation: fadeInUp 0.9s ease 0.15s both;
}
.hero-accent { color: var(--gold); }
.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.28s both;
}
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.9s ease 0.40s both; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(201,168,76,0.38);
  transition: var(--transition);
  border: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.50); }
.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--transition);
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(201,168,76,0.10); transform: translateY(-3px); }

.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.20);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--gold); }
.carousel-control-prev-icon, .carousel-control-next-icon { background-image: none; }
.carousel-control-prev-icon i, .carousel-control-next-icon i { color: white; font-size: 18px; }
.carousel-indicators [data-bs-target] {
  width: 24px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.40);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active { background: var(--gold); width: 40px; }

/* ---- ABOUT ---- */
.about-img-wrap { position: relative; }
.about-main-img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.about-main-img:hover { transform: scale(1.01); }
.about-badge-box {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}
.about-badge-num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 900; line-height: 1; }
.about-badge-txt { font-size: 12px; font-weight: 500; opacity: 0.90; line-height: 1.3; margin-top: 4px; display: block; }
.about-img-shape {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: -1;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
}
.about-feat-item i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* ---- SERVICES ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.30);
}
.service-card-featured {
  border-color: var(--gold);
  box-shadow: 0 6px 32px rgba(201,168,76,0.18);
}
.service-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.06em;
}
.service-img-wrap { position: relative; overflow: hidden; height: 220px; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-img-overlay i { font-size: 40px; color: var(--gold); }
.service-card:hover .service-img-overlay { opacity: 1; }
.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc { color: var(--text-gray); font-size: 14.5px; margin-bottom: 14px; }
.service-list { margin-bottom: 20px; }
.service-list li {
  font-size: 14px;
  color: var(--text-dark);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed var(--border-color);
}
.service-list li:last-child { border-bottom: none; }
.service-list i { color: var(--gold); font-size: 13px; }
.btn-service-call {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: none;
  transition: var(--transition);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-service-call:hover, .btn-service-call.featured {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 4px 18px rgba(201,168,76,0.30);
}
.btn-service-call.featured:hover { opacity: 0.90; }

/* ---- WHY CHOOSE US ---- */
.why-us-section { background: var(--white); }
.why-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--gold);
  border: 2px solid rgba(201,168,76,0.20);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
}
.why-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ---- COUNTER ---- */
.counter-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.counter-item { padding: 10px; }
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 900;
  color: var(--gold);
  display: inline-block;
  line-height: 1;
}
.counter-plus { display: inline-block; font-size: 28px; font-weight: 700; color: var(--gold); vertical-align: top; margin-top: 10px; }
.counter-label { font-size: 14px; color: rgba(255,255,255,0.70); font-weight: 500; margin-top: 8px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- HOW IT WORKS ---- */
.step-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.step-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(201,168,76,0.30);
  transition: var(--transition);
}
.step-card:hover .step-icon { transform: scale(1.10) rotate(5deg); }
.step-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 14.5px; color: var(--text-gray); line-height: 1.65; margin: 0; }
.step-arrow { font-size: 24px; color: var(--gold); opacity: 0.50; padding: 0 8px; align-items: center; justify-content: center; margin-bottom: 0; }

/* ---- GALLERY ---- */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.70) 0%, rgba(201,168,76,0.40) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-overlay i { font-size: 30px; color: var(--white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- TESTIMONIALS ---- */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.testi-stars { color: #FFB800; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
}
.testi-text::before { content: '"'; font-family: var(--font-display); font-size: 60px; color: var(--gold); opacity: 0.15; position: absolute; top: -20px; left: -6px; line-height: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.testi-author span { font-size: 12.5px; color: var(--text-light); }
.testi-btn {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 6px;
}
.testi-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }

/* ---- FAQ ---- */
.faq-accordion .faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.70;
}

/* ---- CONTACT ---- */
.contact-info-wrap { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}
.contact-info-item h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p {
  font-size: 13.5px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
  transition: var(--transition);
}
.contact-info-item a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.form-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-input {
  border: 1.5px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 14.5px !important;
  color: var(--text-dark) !important;
  background: var(--cream) !important;
  transition: var(--transition) !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
}
.contact-input:focus {
  border-color: var(--gold) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy);overflow-x: hidden; }
.footer-top { padding: 70px 0 50px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand i { color: var(--gold); }
.footer-desc { color: rgba(255,255,255,0.60); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.10);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.60); font-size: 14px; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.65); font-size: 13.5px; line-height: 1.6; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; margin: 0; }

/* ---- FLOATING BUTTONS ---- */
.float-btn {
  position: fixed;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  border-radius: 50px;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  padding: 12px 18px;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.float-whatsapp {
  left: 20px;
  background: #25D366;
}
.float-whatsapp:hover { background: #1EA855; transform: translateY(-4px) scale(1.04); color: var(--white); }
.float-call {
  right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.float-call:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 8px 28px rgba(201,168,76,0.40); color: var(--white); }
.float-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 22px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(201,168,76,0.40);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 9998;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .section-pad { padding: 65px 0; }
  .navbar-collapse { background: var(--white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-md); margin-top: 10px; border: 1px solid var(--border-color); }
  .hero-slide, .carousel-inner, .carousel, .carousel-item { height: 70vh; min-height: 70vh; }
  .about-badge-box { right: 10px; bottom: 14px; }
  .about-features { grid-template-columns: 1fr; }
  .step-arrow { display: none !important; }
  .sticky-top{
	  position:relative!important;
  }
}
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-tx-cntr{
		text-align:center
	}
  .section-pad { padding: 50px 0; overflow-x: hidden;}
  .hero-slide, .carousel-inner, .carousel, .carousel-item { height: 80vh; min-height: 560px; }
  .hero-title { font-size: 30px; }
  .hero-desc { font-size: 15px; }
  .about-main-img { height: 300px; }
  .about-badge-box { display: none; }
  .float-label { display: none; }
  .float-btn { padding: 13px; font-size: 20px; border-radius: 50%; }
  .contact-form-wrap { padding: 24px 18px; }
  .carousel-control-prev, .carousel-control-next { width: 40px; height: 40px; }
  .footer-top { padding: 50px 0 30px; }
}
@media (max-width: 575.98px) {
  .topbar-info { font-size: 11.5px; }
  .topbar-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; max-width: 260px; text-align: center; }
  .section-title { font-size: 26px; }
}
@media(max-width:424px)
{
	.cu-mb-fnt{
		font-size:10px!important;
	}
}
@media(max-width:374px)
{
	.cu-mb-fnt{
		
	}
}
