/* ============================================================
   ADVOCATE SANDEEP KUMAR MAURYA - LEGAL WEBSITE
   CSS Stylesheet
   Color Scheme: Dark Blue (#0a1628), Gold (#c9a84c), White
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3a5c;
  --gold:       #c9a84c;
  --gold-light: #e4c97a;
  --gold-dark:  #a8873a;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --gray:       #6b7280;
  --gray-light: #e5e7eb;
  --text-dark:  #1a1a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Lato', Arial, sans-serif;
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.12);
  --shadow-md:  0 6px 24px rgba(10,22,40,0.18);
  --shadow-lg:  0 12px 48px rgba(10,22,40,0.25);
  --radius:     6px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 160px; height: 3px;
  background: rgba(201,168,76,0.25);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto;
}
.preloader-bar::after {
  content: '';
  display: block; height: 100%; width: 0;
  background: var(--gold);
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }

/* ── NAVBAR ── */
.navbar {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
  z-index: 1050;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(10,22,40,1);
}
.navbar-brand-wrap { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy); flex-shrink: 0;
}
.brand-text { line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white); display: block;
}
.brand-sub {
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(201,168,76,0.5); }
.navbar-toggler-icon { filter: invert(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important;
  border-radius: 4px;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  margin-left: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: inline-block;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}
.btn-gold:hover::before { transform: translateX(120%) skewX(-15deg); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); color: var(--navy); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ── SECTION COMMONS ── */
section { padding: 90px 0; }
.section-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.section-title { color: var(--navy); margin-bottom: 10px; }
.section-title .gold-text { color: var(--gold); }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 18px 0 28px;
}
.section-divider.centered { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(26,58,92,0.6) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.05);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite reverse;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 40px;
  padding: 6px 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInDown 0.9s ease 0.1s both;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero-subtitle .sep { color: var(--gold); margin: 0 6px; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.35s both;
}
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,168,76,0.15);
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-image-col {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: fadeInRight 1.1s ease 0.3s both;
}
.hero-image-frame {
  position: relative;
  width: 380px; max-width: 100%;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  border-radius: var(--radius);
  z-index: 2;
}
.hero-placeholder-img {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: var(--radius);
  height: 460px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.hero-placeholder-img i {
  font-size: 5rem; color: rgba(201,168,76,0.35);
  margin-bottom: 14px;
}
.hero-placeholder-img span {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-badge-float {
  position: absolute;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 8px;
  padding: 10px 16px;
  z-index: 5;
}
.hero-badge-float.top-right {
  top: 20px; right: -20px;
}
.hero-badge-float.bottom-left {
  bottom: 30px; left: -24px;
}
.float-number {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold); display: block;
}
.float-text { font-size: 0.7rem; color: rgba(255,255,255,0.55); white-space: nowrap; }

/* ── FEATURES / HIGHLIGHTS ── */
.highlights {
  background: var(--off-white);
  padding: 70px 0;
}
.highlight-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  border: 1px solid var(--gray-light);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  height: 100%;
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem; color: var(--gold);
  transition: var(--transition);
}
.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.highlight-title {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--navy);
  margin-bottom: 10px;
}
.highlight-text { font-size: 0.9rem; color: var(--gray); }

/* ── ABOUT SECTION (home) ── */
.about-section { background: var(--white); }
.about-intro-text {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--gray);
  margin-bottom: 24px;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
  font-size: 0.93rem; color: var(--text-dark);
}
.about-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  height: 480px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-img-placeholder i { font-size: 5rem; color: rgba(201,168,76,0.3); margin-bottom: 12px; }
.about-img-placeholder p { color: rgba(255,255,255,0.35); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.about-badge {
  position: absolute; bottom: -20px; right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--navy); display: block;
}
.about-badge-text { font-size: 0.7rem; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── SERVICES SECTION ── */
.services-section { background: var(--off-white); }
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 26px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  height: 100%;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.2); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.88rem; color: var(--gray); }

/* Tribunal list */
.tribunal-section { background: var(--navy); padding: 70px 0; }
.tribunal-title {
  font-family: var(--font-display);
  color: var(--white); font-size: 1.8rem;
  margin-bottom: 8px;
}
.tribunal-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: var(--transition);
}
.tribunal-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
  transform: translateX(5px);
}
.tribunal-item i { color: var(--gold); flex-shrink: 0; }
.tribunal-item span { color: rgba(255,255,255,0.85); font-size: 0.93rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 32px 28px;
  border-left: 4px solid var(--gold);
  position: relative; height: 100%;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--gray);
  font-style: italic; margin-bottom: 18px;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3rem; color: var(--gold);
  line-height: 0; vertical-align: -0.6em;
  margin-right: 4px; font-family: var(--font-display);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { font-size: 0.77rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 4px; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-title { font-family: var(--font-display); color: var(--white); margin-bottom: 14px; }
.cta-text { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1.05rem; }

/* ── ABOUT PAGE ── */
.page-hero {
  background: var(--navy);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-title { color: var(--white); margin-bottom: 10px; }
.page-hero-sub { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold); }
.breadcrumb-item a { color: rgba(255,255,255,0.55); }
.breadcrumb-item.active { color: var(--gold); }

/* Timeline */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -37px; top: 6px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}
.timeline-year {
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 4px;
}
.timeline-item h4 { font-family: var(--font-display); color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--gray); }

/* Values */
.value-item {
  display: flex; gap: 18px; margin-bottom: 28px;
}
.value-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); flex-shrink: 0;
}
.value-item h5 { font-family: var(--font-display); color: var(--navy); margin-bottom: 4px; }
.value-item p { font-size: 0.88rem; color: var(--gray); }

/* ── CONTACT PAGE ── */
.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 26px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-info-value { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.contact-info-value a { color: var(--navy); }
.contact-info-value a:hover { color: var(--gold); }

.form-label { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.8px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}
textarea.form-control { resize: vertical; min-height: 130px; }

.map-container {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.map-container iframe { display: block; }

.wa-sidebar-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 700; font-size: 0.93rem;
  transition: var(--transition);
  text-decoration: none;
}
.wa-sidebar-btn:hover { background: #1ebe5d; color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.wa-sidebar-btn i { font-size: 1.4rem; }

/* Alert styles */
.alert-success-custom {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  color: #166534;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
}
.alert-error-custom {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  color: #991b1b;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
}

/* ── FLOATING ELEMENTS ── */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 6px 28px rgba(37,211,102,0.6); animation: none; }
.whatsapp-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: white;
  padding: 5px 12px; border-radius: 4px;
  font-size: 0.78rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--navy);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: #070f1e;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-main { padding: 64px 0 36px; }
.footer-brand i { color: var(--gold); font-size: 1.3rem; }
.footer-brand-name {
  font-family: var(--font-display);
  color: var(--white); font-size: 1.1rem; font-weight: 700;
}
.footer-brand-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 14px; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-display);
  color: var(--white); font-size: 1rem; margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; color: rgba(255,255,255,0.5); font-size: 0.86rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-bottom-text { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom-text a { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.from-left { transform: translateX(-36px); }
.animate-on-scroll.from-right { transform: translateX(36px); }
.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── KEYFRAMES ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── COUNTER ── */
.counter-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800; color: var(--gold);
}
.stats-section {
  background: var(--navy); padding: 70px 0;
}
.stat-box { text-align: center; }
.stat-box h3 { color: rgba(255,255,255,0.6); font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; font-weight: 700; }

/* ── UTILITY ── */
.text-gold { color: var(--gold) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-off-white { background: var(--off-white) !important; }

/* ── MEDIA QUERIES ── */
@media (max-width: 991px) {
  .hero { padding: 120px 0 70px; min-height: auto; }
  .hero-image-col { margin-top: 50px; }
  .hero-badge-float.top-right { right: 0; }
  .hero-badge-float.bottom-left { left: 0; }
  .hero-image-frame { width: 300px; }
  .hero-placeholder-img { height: 340px; }
  section { padding: 70px 0; }
}
@media (max-width: 767px) {
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-gold, .hero-actions .btn-outline-gold { text-align: center; }
  .contact-card { padding: 28px 20px; }
  .about-badge { right: 0; bottom: -16px; }
}
