/* ============================================================
   Devnagari Realty — Premium Real Estate Website
   style.css
   Color System:
     --navy      : #0B3D91  (Primary Royal Blue)
     --gold      : #D4AF37  (Secondary Gold)
     --navy-dark : #071F4A
     --light-blue: #F0F4FB
     --white     : #FFFFFF
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --navy      : #0B3D91;
  --navy-dark : #071F4A;
  --navy-mid  : #0D2F72;
  --gold      : #D4AF37;
  --gold-light: #E8CC6A;
  --gold-dark : #A8860F;
  --white     : #FFFFFF;
  --off-white : #F8F9FC;
  --light-blue: #F0F4FB;
  --text-dark : #1A1A2E;
  --text-mid  : #4A4A6A;
  --text-muted: #8888AA;
  --shadow-sm : 0 2px 12px rgba(11,61,145,.08);
  --shadow-md : 0 8px 32px rgba(11,61,145,.12);
  --shadow-lg : 0 20px 60px rgba(11,61,145,.18);
  --radius    : 16px;
  --radius-sm : 10px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.fw-700 { font-weight: 700; }

/* ── Typography Helpers ── */
.text-gold   { color: var(--gold) !important; }
.bg-navy     { background: var(--navy-dark) !important; }
.bg-light-blue { background: var(--light-blue) !important; }
.text-muted-light { color: rgba(255,255,255,.5); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 24px;
  animation: pulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  animation: loadbar 1.8s ease forwards;
}

@keyframes pulse   { 0%,100%{opacity:1} 50%{opacity:.6} }
@keyframes loadbar { to{width:100%} }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
#mainNavbar.scrolled {
  background: rgba(7,31,74,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0px;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: .95rem;
  color: var(--white);
  line-height: 1.2;
}
.brand-tagline { font-size: .68rem; color: var(--gold); letter-spacing: .5px; }

.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white) !important; }
.nav-link:hover::after { transform: scaleX(1); }

.toggler-icon {
  color: var(--white);
  font-size: 1.25rem;
}
.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark) !important;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,.4);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white) !important;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11,61,145,.35);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7,31,74,.82) 0%,
    rgba(11,61,145,.55) 60%,
    rgba(0,0,0,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 100px;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  letter-spacing: 1.5px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  margin: 0 16px;
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.carousel-indicators [data-bs-target] {
  width: 32px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.5);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active {
  background: var(--gold);
  width: 56px;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-pad { padding: 96px 0; }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.bg-navy .section-title { color: var(--white); }

.section-text {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Glass Cards */
.glass-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.glass-card-dark {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap { position: relative; display: inline-block; width: 100%; }

.img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -20px;
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.badge-txt { font-size: .8rem; color: var(--text-mid); font-weight: 600; margin-top: 4px; }

.about-img-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .4;
}

.about-feat {
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.about-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-checklist { list-style: none; padding: 0; margin: 0; }
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: .97rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.about-checklist li:last-child { border-bottom: none; }
.about-checklist li i { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--navy));
  transition: var(--transition);
  border-radius: 0 0 4px 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-mid); font-size: .92rem; margin-bottom: 20px; }

.service-link {
  color: var(--navy);
  font-weight: 600; font-size: .88rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.service-link:hover { color: var(--gold); letter-spacing: .5px; }

.featured-service { border: 2px solid var(--gold) !important; }
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 1px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-8deg); }

.why-card h6 { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card { position: relative; z-index: 1; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
  margin-left: 2px;
}
.stat-label {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  letter-spacing: .5px;
}

/* ============================================================
   FEATURED AREAS
   ============================================================ */
.area-card {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.area-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.area-card:hover .area-overlay { background: linear-gradient(to top, rgba(11,61,145,.92), rgba(7,31,74,.5)); }

.area-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,31,74,.82) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  transition: var(--transition);
}
.area-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  color: var(--white);
}
.area-content h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 2px;
}
.area-content p { font-size: .78rem; color: var(--gold); margin: 0; font-weight: 600; }

.area-cta-card {
  border: 2px dashed rgba(11,61,145,.25);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 32px 20px;
  height: 220px;
  transition: var(--transition);
}
.area-cta-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.05);
}
.area-cta-card h5 { font-weight: 700; color: var(--text-dark); }
.area-cta-card p { color: var(--text-mid); }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 48px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step:nth-child(even) .process-body { text-align: right; }

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-num::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  z-index: -1;
}

.process-body {
  flex: 1;
  padding: 24px 28px;
}
.process-icon {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
  transition: var(--transition);
}
.process-body:hover .process-icon { color: var(--gold); }
.process-body h6 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.process-body p  { font-size: .88rem; color: var(--text-mid); margin: 0; }

/* ============================================================
   CHANNEL PARTNERS
   ============================================================ */
.partner-logo {
  background: var(--white);
  border: 2px solid rgba(11,61,145,.1);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--navy);
  line-height: 1.3;
  transition: var(--transition);
  height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.partner-logo:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  padding: 48px 52px;
  text-align: center;
  border-radius: var(--radius);
  margin: 0 auto;
}

.stars { font-size: 1.15rem; letter-spacing: 3px; }

.testimonial-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
}
.testimonial-text::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: -30px; left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem;
  color: var(--navy-dark);
}
.author-name  { font-weight: 700; color: var(--white); font-size: 1rem; }
.author-title { font-size: .82rem; color: rgba(255,255,255,.55); }

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   SOCIAL MEDIA
   ============================================================ */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white) !important;
  font-size: .88rem;
  transition: var(--transition);
  text-decoration: none;
  min-height: 180px;
}
.social-card i { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.social-card h6 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--white); }
.social-card p { color: rgba(255,255,255,.75); font-size: .82rem; margin: 0; }
.social-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.facebook  { background: #1877F2; }
.youtube   { background: #FF0000; }
.google    { background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11,61,145,.08);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h6 { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-item p  { color: var(--text-mid); font-size: .92rem; margin: 0; }
.contact-item a  { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-item a:hover { color: var(--gold); }

.map-embed iframe { display: block; }

/* Contact Form */
.custom-input {
  border: 2px solid rgba(11,61,145,.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .93rem;
  color: var(--text-dark);
  background: rgba(255,255,255,.8);
  transition: var(--transition);
}
.custom-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11,61,145,.1);
  background: var(--white);
  outline: none;
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text-dark); margin-bottom: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { color: rgba(255,255,255,.75); }

.footer-brand-icon {
  width: 50px; height: 50px;
  font-size: 1.1rem;
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-list li i { flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  color: var(--white);
  animation: none;
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.1); }
}

.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad { padding: 72px 0; }

  /* Process timeline — stack vertically on mobile */
  .process-timeline::before { left: 28px; transform: none; }
  .process-step, .process-step:nth-child(even) {
    flex-direction: row !important;
    gap: 20px;
  }
  .process-step:nth-child(even) .process-body { text-align: left !important; }
  .process-num { min-width: 56px; }

  .navbar-collapse {
    background: rgba(7,31,74,.96);
    backdrop-filter: blur(14px);
    padding: 16px;
    border-radius: 0 0 16px 16px;
    margin-top: 8px;
  }
  .nav-link::after { display: none; }
}

@media (max-width: 767.98px) {
  .hero-title  { font-size: 2.2rem; }
  .section-pad { padding: 60px 0; }
  .testimonial-card { padding: 36px 24px; }
  .about-badge { right: 0; bottom: -20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 220px; }
  .stat-num { font-size: 2.6rem; }
  .process-timeline::before { display: none; }
  .process-step, .process-step:nth-child(even) { flex-direction: column !important; gap: 12px; }
  .process-num::before { display: none; }
  .process-num { text-align: left; font-size: 1.4rem; min-width: auto; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
