/* =========================================
   ADVOCATE AMIT KUMAR TANWAR – STYLE.CSS
   ========================================= */

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

:root {
  --navy: #0b1a3b;
  --navy-mid: #122149;
  --navy-light: #1a3060;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --gold-dark: #a07828;
  --white: #ffffff;
  --off-white: #f4f1eb;
  --text-light: #8a9bc0;
  --text-body: #334155;
  --card-bg: #ffffff;
  --border: rgba(201,168,76,0.2);

  --ff-heading: 'Playfair Display', serif;
  --ff-display: 'Cinzel', serif;
  --ff-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(11,26,59,0.12);
  --shadow-md: 0 8px 32px rgba(11,26,59,0.18);
  --shadow-lg: 0 20px 60px rgba(11,26,59,0.25);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.35);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section { padding: 100px 0; }

/* ── UTILITY ── */
.gold-text { color: var(--gold); }
.text-muted { color: var(--text-light); }

.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-light {
  background: rgba(255,255,255,0.15);
  color: var(--gold-light);
  border-color: rgba(255,255,255,0.25);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

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

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon { font-size: 2rem; filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}
.nav-link.contact-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy) !important;
  font-weight: 700;
}
.nav-link.contact-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('court_hero_bg.png') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 15, 38, 0.88) 0%,
    rgba(11, 26, 59, 0.82) 50%,
    rgba(18, 33, 73, 0.75) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 40px 24px;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.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.4);
  color: var(--gold-light);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}
.hero-title-line1 {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-title-line2 {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 1.8rem; color: var(--gold-light); font-weight: 700; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounceY 2s ease infinite;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(6px); }
}
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.badge-years {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-years small { font-size: 1.2rem; }
.badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-credentials {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.cred-icon { font-size: 1.5rem; }
.cred-item div { display: flex; flex-direction: column; }
.cred-item strong { font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.cred-item span { font-size: 0.8rem; color: var(--text-light); }

.about-content { padding-left: 20px; }

.about-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 3px;
  margin: 18px 0 24px;
}

.about-text {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}
.h-icon {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--white); }

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

.service-card {
  background: var(--white);
  border: 1px solid #e5e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 12px 40px rgba(11,26,59,0.12), 0 0 0 2px rgba(201,168,76,0.15);
  transform: translateY(-6px);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(11,26,59,0.08) 0%, rgba(201,168,76,0.12) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}
.service-icon { font-size: 1.8rem; }

.service-title {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-desc { font-size: 0.9rem; color: #64748b; line-height: 1.7; margin-bottom: 20px; }
.service-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.service-cta:hover { color: var(--gold); letter-spacing: 1px; }

.service-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card-inner { text-align: center; color: var(--white); }
.cta-card-icon { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.cta-card-inner h3 { font-family: var(--ff-heading); font-size: 1.4rem; margin-bottom: 10px; }
.cta-card-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 22px; }
.service-card-cta:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* =========================================
   OFFICE
   ========================================= */
.office { background: var(--off-white); }

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}

.office-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f2f8;
}
.office-detail-item:last-child { border-bottom: none; }
.office-detail-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(11,26,59,0.06) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.office-detail-content { display: flex; flex-direction: column; gap: 3px; }
.detail-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.detail-value { font-size: 0.95rem; color: var(--navy); font-weight: 600; line-height: 1.4; }
.detail-link { color: var(--gold-dark); transition: color var(--transition); }
.detail-link:hover { color: var(--gold); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(201,168,76,0.2);
}

/* =========================================
   WHY US
   ========================================= */
.why-us {
  position: relative;
  background: url('court_hero_bg.png') center/cover no-repeat fixed;
  padding: 100px 0;
  overflow: hidden;
}
.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,15,38,0.92) 0%, rgba(11,26,59,0.88) 100%);
}
.why-us .container { position: relative; z-index: 2; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  animation-delay: var(--delay, 0s);
}
.why-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
}
.why-icon { font-size: 2.5rem; display: block; margin-bottom: 18px; }
.why-card h3 { font-family: var(--ff-heading); font-size: 1.15rem; color: var(--gold-light); margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid #e5e8f0;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  border: 1.5px solid #e0e5f0;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: #fafbfc;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  margin-top: 16px;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.95rem;
  background: #dcfce7;
  padding: 12px 20px;
  border-radius: var(--radius);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.contact-info-title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 4px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
  color: var(--white);
}
.contact-info-item:hover { background: rgba(255,255,255,0.08); }
.whatsapp-item:hover { background: rgba(37,211,102,0.15) !important; }
.ci-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-content { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.ci-value { font-size: 0.9rem; color: var(--white); font-weight: 500; }

.contact-timing-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-timing-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.timing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  font-size: 0.9rem;
}
.timing-grid span:nth-child(odd) { color: #64748b; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--navy); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.footer-disclaimer { font-size: 0.78rem !important; max-width: 680px; margin: 0 auto !important; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.footer-logo-sub { font-size: 0.7rem; color: var(--gold-light); display: block; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.footer-col-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold-light); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  background: #1dbb5b;
  transform: scale(1.12);
  box-shadow: 0 10px 38px rgba(37,211,102,0.6);
}
.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border: 3px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold-light);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    padding: 20px;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; text-align: center; padding: 14px; }

  .hero-stats { padding: 16px 20px; }
  .stat-item { padding: 0 18px; }
  .stat-num { font-size: 2rem; }

  .about-highlights { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .about-img { height: 360px; }
  .about-img-badge { bottom: -16px; right: -10px; }

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

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 50px; height: 1px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
