/* ============================================================
   ADV. RAHUL SINGH — style.css
   Color: #BD9443 (Gold), #1a1a1a (Dark), #fff (White)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500;600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --gold: #BD9443;
  --gold-light: #d4a855;
  --gold-pale: #f5e9cc;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --off-white: #f9f6f0;
  --border: rgba(189, 148, 67, .25);
  --shadow: 0 8px 40px rgba(0, 0, 0, .10);
  --shadow-gold: 0 4px 24px rgba(189, 148, 67, .18);
  --radius: 6px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

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

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

ul {
  list-style: none;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

/* ── Utility ───────────────────────────────────────────── */
.gold {
  color: var(--gold);
}

.gold-bg {
  background: var(--gold);
}

.dark-bg {
  background: var(--dark-2);
  color: var(--white);
}

.off-white-bg {
  background: var(--off-white);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.75;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0 28px;
}

.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── TOP BAR ───────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .75);
  font-size: .80rem;
  padding: 8px 0;
  letter-spacing: .03em;
}

.topbar a {
  color: #cdcdcd;
  transition: var(--transition);
}

.topbar a:hover {
  color: var(--white);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-right {
  justify-content: flex-end;
}

.topbar i {
  color: var(--gold);
  margin-right: 5px;
}

/* ── HEADER ────────────────────────────────────────────── */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .14);
}

.navbar {
  padding: 14px 10px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-wrap span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.brand-text-top {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.1;
}

.brand-text-sub {
  font-size: .70rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.navbar-nav .nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-toggler {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23BD9443' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-menu {
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  min-width: 230px;
}

.dropdown-item {
  font-size: .84rem;
  font-weight: 500;
  padding: 9px 18px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: var(--off-white);
  border-left-color: var(--gold);
  color: var(--gold);
}

/* ── HERO CAROUSEL ─────────────────────────────────────── */
.hero-carousel {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slide img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.158) 40%, rgba(85, 85, 85, 0.027) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(189, 148, 67, .15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(189, 148, 67, .9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-carousel .carousel-control-prev {
  left: 24px;
}

.hero-carousel .carousel-control-next {
  right: 24px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.hero-carousel .carousel-indicators button {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .4);
}

.hero-carousel .carousel-indicators button.active {
  background: var(--gold);
  width: 50px;
}

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 26s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
}

.marquee-item i {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT STRIP ───────────────────────────────────────── */
.about-strip {
  background: var(--off-white);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--gold);
}

.exp-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.exp-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.exp-badge .txt {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
}

.about-feat i {
  color: var(--gold);
  font-size: 1rem;
}

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 52px 0;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-card .lbl {
  font-size: .80rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── SECTION ─────────────────────────────────────── */
.services-section {
  background: var(--white);
  padding: 80px 0 90px;
}

/* ── HEADER ──────────────────────────────────────── */

.logos {
  width: 100%;
  height: 70px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  border: 1px solid var(--gold-border);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.divider-gold {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 18px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── TABS ────────────────────────────────────────── */
.service-tabs .nav-pills {
  gap: 10px;
}

.service-tabs .nav-link {
  background: var(--off-white);
  color: var(--text);
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: var(--radius);
  padding: 10px 22px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-tabs .nav-link:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.service-tabs .nav-link.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(189, 148, 67, .3);
}

/* ── CARDS ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 20%);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .045);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 36px rgba(189, 148, 67, .2);
  transform: translateY(-5px);
}

/* Image / illustration area */
.card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card-img-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* Body */
.card-body-inner {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.card-title-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}

.card-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.card-cta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .03em;
}

.card-cta i {
  font-size: 10px;
  transition: transform .22s ease;
}

.service-card:hover .card-cta i {
  transform: translateX(4px);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 576px) {
  .services-section {
    padding: 60px 0 70px;
  }

  .service-tabs .nav-link {
    font-size: 12px;
    padding: 9px 16px;
  }
}

/* ── PROCESS STEPS ─────────────────────────────────────── */
.process-section {
  background: var(--dark-2);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, .55);
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.step-card:last-child::after {
  display: none;
}

.step-num {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover .step-num {
  background: var(--gold);
  color: var(--white);
}

.step-card h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-card p {
  color: rgba(255, 255, 255, .5);
  font-size: .87rem;
  line-height: 1.7;
}

/* ── WHY CHOOSE US ─────────────────────────────────────── */
.why-section {
  background: var(--off-white);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  border-top: 4px solid transparent;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: .86rem;
  color: var(--text-light);
  margin: 0;
}

/* ── MISSION & VISION ──────────────────────────────────── */
.mv-section {
  background: var(--white);
}

.mv-card {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.mv-card-head {
  background: var(--gold);
  color: var(--white);
  padding: 28px 30px 22px;
}

.mv-card-head i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.mv-card-head h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
}

.mv-card-body {
  background: var(--off-white);
  padding: 26px 30px;
  font-size: .90rem;
  color: var(--text);
  line-height: 1.8;
}

.mv-card-body ul {
  padding: 0;
  margin: 0;
}

.mv-card-body li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card-body li::before {
  content: '›';
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

/* ── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 60%, #1f1710 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(189, 148, 67, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner h2 span {
  color: var(--gold);
}

.cta-banner p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 28px;
}

.cta-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonial-section {
  background: var(--off-white);
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .06);
  position: relative;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  height: 100%;
}

.testi-card:hover {
  border-bottom-color: var(--gold);
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-pale);
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: 18px;
  right: 22px;
  font-weight: 700;
}

.testi-card .stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: .90rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-name {
  font-weight: 700;
  font-size: .90rem;
  color: var(--dark);
}

.testi-loc {
  font-size: .78rem;
  color: var(--text-light);
}

/* ── GALLERY ───────────────────────────────────────────── */
.gallery-section {
  background: var(--dark-2);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-subtitle {
  color: rgba(255, 255, 255, .5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(189, 148, 67, .0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--white);
  opacity: 0;
  transform: scale(.6);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, .45);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ── CONTACT ───────────────────────────────────────────── */
.contact-section {
  background: var(--off-white);
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  height: 100%;
}

.contact-info-card h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.c-icon {
  width: 44px;
  height: 44px;
  background: rgba(189, 148, 67, .15);
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}

.c-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.c-value {
  font-size: .92rem;
  color: var(--white);
  font-weight: 500;
}

.c-value a {
  color: var(--gold);
  transition: var(--transition);
}

.c-value a:hover {
  color: var(--white);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-form-card h4 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-control,
.form-select {
  border: 1px solid #e0d8cc;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .90rem;
  font-family: 'Raleway', sans-serif;
  transition: var(--transition);
  background: var(--off-white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 148, 67, .12);
  background: var(--white);
  outline: none;
}

.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

/* ── MAP ───────────────────────────────────────────────── */
.map-section {
  background: var(--white);
  padding: 0;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── FOOTER ────────────────────────────────────────────── */
.main-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .65);
  padding-top: 70px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: .80rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
  margin: 16px 0 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
  color: var(--white);
  font-size: .85rem;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .84rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  font-size: .80rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: var(--gold);
}

/* ── FLOATING BUTTONS ──────────────────────────────────── */
.floating-btns {
  position: fixed;
  right: 0;
  bottom: 150px;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.floating-btns1 {
  position: fixed;
  right: 0;
  bottom: 70px;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  width: 44px;
  border-radius: var(--radius) 0  0 var(--radius);
  margin-bottom: 2px;
}

.float-btn:hover {
  width: 160px;
  color: var(--white);
}

.float-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-label {
  padding: 0 10px 0 0;
}

.float-call {
  background: var(--gold);
}

.float-wa {
  background: #25d366;
}

.float-mail {
  background: #ea4335;
}

/* ── SCROLL TO TOP ─────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

#scrollTop:hover {
  background: var(--dark);
}

#scrollTop.show {
  display: flex;
}

/* ── CONSULTATION BADGE ────────────────────────────────── */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(189, 148, 67, .12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

/* ── AWARD ROW ─────────────────────────────────────────── */
.award-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.award-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 40px;
}

.award-pill i {
  color: var(--gold);
}

/* ── ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-slide {
    height: 70vh;
  }

  .hero-stats {
    gap: 20px;
  }

  .step-card::after {
    display: none;
  }

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

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
	.cu-jf-cntr{
		justify-content:center!important;
	}
	.cu-ds-n{
		display:none!important;
	}
  .section-pad {
    padding: 52px 0;
  }

  .topbar {
    /* display: none; */
  }

  .hero-slide {
    height: 88vh;
  }

  .hero-desc {
    font-size: .95rem;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stat .num {
    font-size: 1.5rem;
  }

  .about-img-wrap img {
    height: 400px;
  }

  .exp-badge {
    bottom: -10px;
    right: -8px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .floating-btns {
    top: auto;
    bottom: 150px;
    transform: none;
  }

  .mv-card-head,
  .mv-card-body {
    padding: 22px 20px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px;
  }
}

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

  .hero-badge {
    font-size: .68rem;
  }

  .brand-text-top {
    font-size: .98rem;
  }

  .cta-phone {
    font-size: 1.25rem;
  }
}