/* ============================================================
   SAHEJRAO REALTORS — style.css
   Light theme · Gold branding · Professional real estate
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --gold-dark: #6B4A0E;
  --gold-primary: #8B5E1A;
  --gold-mid: #A57228;
  --gold-light: #C8943A;
  --gold-pale: #F2E4C4;
  --gold-ultra: #FBF5E6;

  --navy: #0F172A;
  --navy-mid: #1E293B;
  --navy-light: #334155;

  --cream: #FDFAF4;
  --white: #FFFFFF;
  --off-white: #F8F5EF;
  --light-bg: #F4F0E8;

  --text-dark: #1A1208;
  --text-mid: #3D2E12;
  --text-body: #4A4035;
  --text-muted: #7A6F62;
  --text-light: #9E9080;

  --border: #E0D5C0;
  --border-light: #EDE5D0;

  --shadow-sm: 0 2px 8px rgba(107, 74, 14, 0.08);
  --shadow-md: 0 6px 24px rgba(107, 74, 14, 0.12);
  --shadow-lg: 0 16px 48px rgba(107, 74, 14, 0.16);
  --shadow-xl: 0 24px 64px rgba(107, 74, 14, 0.20);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Global Font Configuration - Change "Poppins" here to update the entire site */
  --font-sans: 'Poppins', sans-serif;
  --font-serif: var(--font-sans);

  --section-gap: 100px;
  --nav-height: 72px;
  --announce-h: 38px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo image ── */
.logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* ── Nav logo: white sheen slides left → right over image ── */
.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 4px;
  max-width: 250px;
}

.nav-logo:hover {
  transform: scale(1.08);
}

/* White sheen sweep — slow continuous left → right scroll */
.nav-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.12) 40%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(255, 255, 255, 0.12) 60%,
      transparent 80%);
  animation: logoShine 2s linear infinite;
  pointer-events: none;
}

@keyframes logoShine {
  0% {
    left: -80%;
  }

  100% {
    left: 130%;
  }
}



/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

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

/* ── Submenu (Desktop) ── */
.has-submenu {
  position: relative;
}

.has-submenu .fa-chevron-down {
  font-size: 0.7em;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 240px;
  padding: 12px 0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
  border: 1px solid var(--border-light);
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-submenu:hover .fa-chevron-down {
  transform: rotate(180deg);
}

.submenu li {
  display: block;
  width: 100%;
}

.submenu .nav-link {
  font-size: 0.95rem;
  padding: 10px 24px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  display: block;
  white-space: nowrap;
}

.submenu .nav-link::after {
  display: none;
}

.submenu .nav-link:hover {
  background: rgba(139, 94, 26, 0.05);
  color: var(--gold-primary);
}

/* Nav WhatsApp button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  color: var(--white);
}

.btn-whatsapp i {
  font-size: 1rem;
}

/* Nav Actions (Mobile wrapper) */
.nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--nav-height));
  min-height: 560px;
  max-height: 880px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-slider {
    height: calc((100vh - var(--nav-height)) * 0.35);
    min-height: 364px;
    max-height: 572px;
  }
}

.hero-experience-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 10;
  background: rgba(139, 94, 26, 0.9);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .hero-experience-badge {
    top: 24px;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.9rem;
    padding: 10px 20px;
    white-space: nowrap;
  }
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1.04);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 7, 2, 0.72) 0%,
      rgba(10, 7, 2, 0.40) 60%,
      rgba(10, 7, 2, 0.18) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 800px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 94, 26, 0.85);
  color: var(--gold-pale);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  display: none !important;
}

.slide-btns {
  display: none !important;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: 2px solid var(--gold-primary);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 74, 14, 0.4);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--gold-primary);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Slider arrows */
.slider-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

/* Dots */
.slider-dots {
  display: none;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.dot.active,
.dot:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  width: 28px;
  border-radius: 6px;
}

/* ── Section Shared ── */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(107, 74, 14, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.section-title.left {
  text-align: left;
  display: block;
}

.section-title.left::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Services Section ── */
.services-section {
  background: var(--cream);
}

.services-section .section-header {
  margin-bottom: 24px;
}

.transaction-types {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tx-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.tx-chip i {
  font-size: 0.8rem;
  color: var(--gold-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service card image */
.service-card-img {
  margin: -32px -28px 24px -28px;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}



.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(107, 74, 14, 0.18) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Card Slider */
.card-slider-wrapper {
  position: relative;
}

.card-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.card-slider-track::-webkit-scrollbar {
  display: none;
}

.card-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.card-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 5;
}

.card-slider-arrow:hover {
  background: var(--white);
}

.service-card:hover .card-slider-arrow {
  opacity: 1;
}

.card-slider-arrow.prev {
  left: 8px;
}

.card-slider-arrow.next {
  right: 8px;
}



.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  overflow: hidden;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(107, 74, 14, 0.18), 0 4px 16px rgba(107, 74, 14, 0.1);
  border-color: var(--gold-pale);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  transform: scaleX(1);
  animation: gradientFlow 3s ease infinite;
}


.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.service-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) 0.1s;
}

.service-card:hover .service-title::after {
  transform: scaleX(1);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--gold-ultra);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--gold-pale);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-tags span {
  background: var(--gold-pale);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  position: relative;
}

.service-link i {
  transition: transform 0.35s cubic-bezier(0.34, 1.8, 0.64, 1), opacity 0.3s ease;
}

.service-link:hover {
  color: var(--gold-dark);
}

.service-link:hover i {
  transform: translateX(6px);
  opacity: 1;
}

/* ── Clients Section ── */
.clients-section {
  background: var(--off-white);
}

.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px 0;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.clients-marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.marquee-track.left-slide {
  animation: marquee-left 40s linear infinite;
}

.marquee-track.right-slide {
  animation: marquee-right 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

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

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  min-width: 180px;
  height: 100px;
  transition: all var(--transition);
  cursor: default;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.client-logo-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  white-space: nowrap;
}

/* ── Reviews Section ── */
.reviews-section {
  background: var(--cream);
}

/* Overall rating header */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  color: #F4B400;
  font-size: 1.1rem;
}

.rating-score {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.rating-label,
.rating-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Reviews Carousel ── */
.gr-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.gr-viewport {
  flex: 1;
  overflow: hidden;
}

.gr-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review Card */
.gr-card {
  flex: 0 0 auto;
  /* width set by JS via setWidths() */
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.gr-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.gr-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.gr-avatar-text {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.gr-meta {
  flex: 1;
  min-width: 0;
}

.gr-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1px;
}

.gr-google-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.gr-stars {
  display: flex;
  gap: 2px;
}

.gr-stars i {
  color: #F4B400;
  font-size: 0.85rem;
}

.gr-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.gr-readmore {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  text-decoration: underline;
}

.gr-readmore:hover {
  color: var(--gold-dark);
}

/* Carousel Arrows */
.gr-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--gold-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.gr-arrow:hover:not(:disabled) {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
  transform: scale(1.05);
}

.gr-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Dots */
.gr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

/* reviews CTA */
.reviews-cta {
  text-align: center;
}

/* Responsive: card widths are handled by JS setWidths() */
@media (max-width: 639px) {
  .gr-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}



/* ── REDESIGNED ABOUT SECTION ── */
.about-section {
  background: var(--off-white);
  padding: 80px 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-hero-content {
  padding-right: 20px;
}

.about-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item i {
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.feature-item span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

.about-hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Redesigned Light Stats Bar */
.about-stats-bar {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 80px;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gold-pale);
  margin: 0 auto;
}

/* Deep Navy Stats Bar (After Hero) */
.stats-bar {
  background: var(--navy);
  padding: 60px 0;
  border-top: 3px solid var(--gold);
}

.stats-bar .stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-bar .stat-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stats-bar .stat-num,
.stats-bar .stat-prefix,
.stats-bar .stat-suffix {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stats-bar .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats-bar .stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(242, 228, 196, 0.3);
  /* Pale gold */
}

/* Meet Our Team Layout */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.team-header {
  padding-right: 20px;
}

.team-btn {
  margin-top: 20px;
}

.team-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


.team-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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


.tc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


.tc-name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 8px;
}

.tc-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.tc-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 16px;
  display: block;
}

.tc-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tc-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.tc-links a i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

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

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Core Principles Strip */
.principles-strip {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.principle-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: transform var(--transition);
}

.principle-item:hover {
  transform: translateY(-4px);
}

.principle-item i {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-top: 2px;
}

.principle-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.principle-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Contact Section ── */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

/* Contact info */
.contact-info-panel,
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-panel-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-pale);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-ultra);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid var(--gold-pale);
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--gold-primary);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1.5px solid currentColor;
  background: var(--white);
  text-decoration: none;
}

.social-btn.whatsapp {
  color: #25D366;
}

.social-btn.whatsapp:hover {
  background: #25D366;
  color: var(--white);
}

.social-btn.linkedin {
  color: #0A66C2;
}

.social-btn.linkedin:hover {
  background: #0A66C2;
  color: var(--white);
}

.social-btn.youtube {
  color: #FF0000;
}

.social-btn.youtube:hover {
  background: #FF0000;
  color: var(--white);
}

.social-btn.instagram {
  color: #C13584;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border-color: transparent;
}

.social-btn.facebook {
  color: #1877F2;
}

.social-btn.facebook:hover {
  background: #1877F2;
  color: var(--white);
}

/* Icon-only square social buttons */
.social-icon-btn {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  background: transparent;
}

.social-icon-btn.whatsapp {
  color: #25D366;
}

.social-icon-btn.linkedin {
  color: #0A66C2;
}

.social-icon-btn.youtube {
  color: #FF0000;
}

.social-icon-btn.instagram {
  color: #C13584;
}

.social-icon-btn.facebook {
  color: #1877F2;
}

.social-icon-btn.whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.social-icon-btn.linkedin:hover {
  background: #0A66C2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35);
}

.social-icon-btn.youtube:hover {
  background: #FF0000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(193, 53, 132, 0.35);
}

.social-icon-btn.facebook:hover {
  background: #1877F2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}


/* Contact Form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(139, 94, 26, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B5E1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-success i {
  color: #22C55E;
  font-size: 1rem;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: inline-block;
  width: fit-content;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
  display: block;
}

.footer-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: logoShine 4s infinite linear;
}

.footer-logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.12em;
}

.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-pale);
  margin-bottom: 10px;
  font-style: italic;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  line-height: 1.5;
}

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

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-address i {
  color: var(--gold-light);
  margin-top: 2px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-address a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-rera {
  margin-top: 4px;
}

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

.footer-bottom a:hover {
  opacity: 0.85;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gold-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

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

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

.zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s cubic-bezier(0.34, 1.4, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 900px) {
  :root {
    --section-gap: 72px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .slide-content {
    padding: 0 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Fix announcement bar wrapping */
  .announcement-bar {
    height: auto;
    min-height: var(--announce-h);
    padding: 8px 12px;
  }


  .nav-menu {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    border: none;
    border-right: 1px solid var(--border-light);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    padding: 32px 0;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
    transition: left 0.6s ease-in-out;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
  }

  /* Mobile Submenu overrides */
  .has-submenu .submenu,
  .has-submenu:hover .submenu,
  .has-submenu.open .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 24px;
    min-width: auto;
    background: transparent;
  }

  .has-submenu .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .has-submenu .fa-chevron-down {
    display: inline-block;
    float: right;
    margin-top: 4px;
    transition: transform 0.3s ease;
  }

  .has-submenu.open .fa-chevron-down {
    transform: rotate(180deg);
  }

  .submenu .nav-link {
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .nav-actions {
    display: flex;
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    position: sticky;
  }

  .btn-whatsapp span {
    display: none;
  }

  .btn-whatsapp {
    padding: 8px 12px;
  }

  .slide-content {
    padding: 0 45px;
  }

  .slide-title {
    font-size: 1.9rem;
  }

  .slide-desc {
    font-size: 0.9rem;
  }

  .slide-btns {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .stats-grid {
    flex-direction: column;
    gap: 0;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: rgba(242, 228, 196, 0.2);
  }

  .stat-item {
    padding: 16px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }
}

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

  .slide-title {
    font-size: 2.5rem;
  }

  /* Fix announcement bar wrapping */
  .announcement-bar {
    font-size: 0.72rem;
    height: auto;
    min-height: var(--announce-h);
    padding: 8px 12px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 24px 20px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 84px;
    right: 20px;
  }
}


/* ============================================================
   ANIMATIONS — Sahejrao Realtors
   ============================================================ */

/* ── Keyframes ── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Logo entrance ── */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Ghostwrite: wide bright white band, ping-pong left ↔ right ── */
@keyframes fx-shimmer {
  0% {
    background-position: -300% 0;
  }

  100% {
    background-position: 300% 0;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes borderSweep {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes slideProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }

  70% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }

  50% {
    text-shadow: 0 0 20px rgba(200, 148, 58, 0.5);
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(-10deg) scale(0.8);
    opacity: 0;
  }

  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* ── Scroll Progress Bar ── */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: gradientFlow 3s ease infinite;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Announcement Bar entrance ── */
.announcement-bar {
  animation: fadeInDown 0.6s ease both;
}

/* ── Navbar entrance ── */
.navbar {
  animation: fadeInDown 0.7s 0.1s ease both;
}

/* ── Logo continuous shimmer ── */
.logo-main {
  background: linear-gradient(90deg,
      var(--gold-dark) 0%,
      var(--gold-dark) 35%,
      var(--gold-light) 50%,
      var(--gold-dark) 65%,
      var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ── Hero slide content entrance ── */
.slide.active .slide-tag {
  animation: fadeInLeft 0.7s 0.3s ease both;
}

.slide.active .slide-title {
  animation: fadeInLeft 0.8s 0.45s ease both;
}

.slide.active .slide-desc {
  animation: fadeInLeft 0.8s 0.6s ease both;
}

.slide.active .slide-btns {
  animation: fadeInLeft 0.8s 0.75s ease both;
}

/* Reset on inactive slides */
.slide:not(.active) .slide-tag,
.slide:not(.active) .slide-title,
.slide:not(.active) .slide-desc,
.slide:not(.active) .slide-btns {
  animation: none;
  opacity: 0;
}

/* ── Section badge bounce ── */
.section-badge {
  animation: bounceIn 0.7s ease both;
  display: inline-block;
}

.fade-up.visible .section-badge {
  animation: bounceIn 0.6s 0.1s ease both;
}

/* ── Section title shimmer on scroll-in ── */
.fade-up.visible .section-title {
  animation: fadeInUp 0.7s ease both;
}

/* ── Stats bar number glow ── */
.stats-bar .stat-num {
  animation: glowPulse 3s ease infinite;
}

/* ── Service card — staggered entrance ── */
.services-grid .service-card:nth-child(1) {
  animation-delay: 0.05s;
}

.services-grid .service-card:nth-child(2) {
  animation-delay: 0.12s;
}

.services-grid .service-card:nth-child(3) {
  animation-delay: 0.19s;
}

.services-grid .service-card:nth-child(4) {
  animation-delay: 0.26s;
}

.services-grid .service-card:nth-child(5) {
  animation-delay: 0.33s;
}

.services-grid .service-card:nth-child(6) {
  animation-delay: 0.40s;
}

.services-grid .service-card:nth-child(7) {
  animation-delay: 0.47s;
}

.services-grid .service-card:nth-child(8) {
  animation-delay: 0.54s;
}

.services-grid .service-card:nth-child(9) {
  animation-delay: 0.61s;
}

.service-card.fade-up.visible {
  animation: fadeInUp 0.65s ease both;
}

/* ── Service card icon rotate on hover ── */
.service-card:hover .service-icon i {
  animation: rotateIn 0.4s ease;
}

/* ── Review card stagger ── */
.gr-card.fade-up.visible {
  animation: scaleIn 0.55s ease both;
}

/* ── Founder card entrance ── */
.founder-card.fade-up.visible {
  animation: fadeInRight 0.7s 0.1s ease both;
}

.about-content.fade-up.visible {
  animation: fadeInLeft 0.7s 0.1s ease both;
}

.team-card.fade-up.visible {
  animation: fadeInRight 0.6s 0.25s ease both;
}

/* ── Contact panels entrance ── */
.contact-info-panel.fade-up.visible {
  animation: fadeInLeft 0.65s 0.1s ease both;
}

.contact-form-panel.fade-up.visible {
  animation: fadeInRight 0.65s 0.2s ease both;
}

/* ── WhatsApp float pulse ring ── */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulseRing 2.2s ease infinite;
  z-index: -1;
}

.whatsapp-float {
  animation: float 3s ease-in-out infinite;
}

/* ── Back-to-top float ── */
.back-to-top.visible {
  animation: float 2.8s 0.5s ease-in-out infinite;
}

/* ── Button ripple effect ── */
.btn-primary,
.btn-outline,
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  width: 10px;
  height: 10px;
  transform: scale(0);
  animation: ripple 0.55s linear;
  pointer-events: none;
}

/* ── Transaction type chips pulse border on hover ── */
.tx-chip {
  position: relative;
  overflow: hidden;
}

.tx-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.tx-chip:hover::after {
  opacity: 1;
}

.tx-chip:hover {
  color: var(--gold-dark);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── Client logo cards float-in on hover ── */
.client-logo-card:hover {
  animation: float 1.2s ease-in-out infinite;
}

/* ── Gradient animated section badge ── */
.section-badge {
  background: linear-gradient(90deg,
      var(--gold-pale) 0%,
      var(--gold-ultra) 50%,
      var(--gold-pale) 100%);
  background-size: 200% auto;
  animation: gradientFlow 4s ease infinite;
}

/* ── Nav link hover underline animation override ── */
.nav-link {
  transition: color 0.25s ease;
}

.nav-link::after {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Input focus animation ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  animation: scaleIn 0.2s ease;
}

/* ── Footer social icons spin on hover ── */
.footer-social a:hover i,
.about-social a:hover i {
  animation: rotateIn 0.35s ease;
}

/* ── Respect reduced-motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Redesigned About Section Responsive Overrides */
@media (max-width: 900px) {

  .about-hero-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-image {
    min-height: 350px;
  }

  .about-stats-bar,
  .principles-strip {
    grid-template-columns: 1fr 1fr;
  }

  .team-cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .about-features {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-item span {
    font-size: 0.7rem;
  }

  .about-stats-bar,
  .principles-strip {
    grid-template-columns: 1fr;
  }

  .team-card-horizontal {
    flex-direction: column;
  }

  .tc-img-wrap {
    width: auto;
    height: 280px;
    margin: 16px 16px 0 16px;
    border-radius: 150px 150px 0 0;
  }
}

/* Desktop Team Card Layout */
.tc-top {
  display: flex;
  flex-direction: column;
}

.tc-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.tc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.tc-text {
  padding: 24px;
  padding-bottom: 16px;
}

.tc-bottom {
  padding: 0 24px 24px 24px;
  margin-top: auto;
}

.tc-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
}

.tc-name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  /* padding removed for underline */
}

/* Let's adjust the gold underline to match mobile screenshot exactly */
/* Actually the mobile screenshot shows NO underline under the name. */
/* Wait, looking closely at mobile screenshot: "Anand Sahejrao" has NO underline! */

.tc-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 12px;
  display: block;
}

.tc-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Mobile overrides */
@media (max-width: 768px) {
  .team-card {
    background: var(--white);
    margin-bottom: 20px;
  }

  .tc-top {
    flex-direction: row;
    padding: 16px;
    gap: 16px;
  }

  .tc-img-wrap {
    width: 120px;
    height: 150px;
    border-radius: 8px;
  }

  .tc-text {
    padding: 0;
    flex: 1;
  }

  .tc-name {
    font-size: 1.15rem;
    margin-bottom: 2px;
  }

  .tc-name::after {
    display: none;
    /* Hide underline on mobile */
  }

  .tc-title {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .tc-bio {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .tc-bottom {
    padding: 0 16px 16px 16px;
  }

  .tc-links {
    align-items: center;
    border-top: 1px dotted var(--border-light);
  }

  .tc-links a {
    justify-content: center;
  }
}