/* ============================================================
   ADVOCATE AZIM - Premium Legal Website
   Dark Luxury Theme | Black + Gold
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #0a0a0a;
  --primary-light: #1a1a2e;
  --primary-dark: #050505;
  --gold: #c9a84c;
  --gold-light: #d4b85a;
  --gold-dark: #b8963a;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --cyan: #00b4d8;
  --cyan-glow: rgba(0, 180, 216, 0.15);
  --white: #ffffff;
  --text-light: #ccd6f6;
  --text-muted: #8892b0;
  --text-dark: #1a1a1a;
  --bg-dark: #020c1b;
  --bg-section: #0d1117;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 16px 48px rgba(201, 168, 76, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container: 1320px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

::selection { background: var(--gold); color: var(--primary); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-icon {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse-text 1.5s ease infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; color: var(--text-light); }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
}

.gold-text { color: var(--gold); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}
.logo-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-size: 1.2rem;
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-heading);
}
.logo-text h3 {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--gold);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--text-light);
  padding: 12px 24px;
  transition: var(--transition-fast);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.88) 40%,
    rgba(5, 5, 5, 0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 120px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 0.75rem; }

.hero h1 {
  margin-bottom: 16px;
}
.hero h1 .typed-text {
  color: var(--gold);
  border-right: 3px solid var(--gold);
  padding-right: 4px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%, 100% { border-color: var(--gold); } 50% { border-color: transparent; } }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 36px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.hero-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  color: var(--primary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* Hero Stats Floating */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -40px;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--primary-light), #16213e);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-glass);
}
.stat-item:hover { background: rgba(201, 168, 76, 0.05); }
.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .counter-suffix {
  color: var(--gold);
}
.stat-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT PREVIEW (Homepage)
   ============================================================ */
.about-preview {
  padding: 100px 0;
  background: var(--primary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-experience-badge .text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--text-muted); }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}
.about-highlight-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
.about-highlight-item i { color: var(--gold); font-size: 1rem; }

/* ============================================================
   PRACTICE AREAS / SERVICES CARDS
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-hover);
  background: rgba(201, 168, 76, 0.03);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  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(--primary);
  transform: scale(1.1);
}
.service-card h4 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition-fast);
}
.service-link:hover { gap: 12px; color: var(--gold-light); }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-section {
  padding: 100px 0;
  background: var(--primary);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
  left: calc(50% + 40px);
}
.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-glass);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:hover .process-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  transform: scale(1.1);
}
.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   TRUST / CREDIBILITY SECTION
   ============================================================ */
.trust-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trust-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.trust-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.trust-image:hover img { transform: scale(1.03); }
.trust-content h2 { margin-bottom: 20px; }
.trust-content > p { color: var(--text-muted); margin-bottom: 28px; }
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.trust-point:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
}
.trust-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.trust-point h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.trust-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.9), rgba(26,26,46,0.85));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: 20px; }
.cta-content p { color: var(--text-muted); margin-bottom: 8px; }
.cta-issues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 36px;
}
.cta-issue {
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--gold);
}

/* ============================================================
   AWARENESS / BLOG SECTION
   ============================================================ */
.awareness-section {
  padding: 100px 0;
  background: var(--primary);
}
.awareness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.awareness-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.awareness-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-hover);
}
.awareness-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.awareness-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.awareness-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-glass);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-about .logo { margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; color: var(--text-muted); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--bg-section);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
  pointer-events: none;
}
.page-hero-img {
  position: absolute;
  inset: 0;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.7rem; }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.about-full {
  padding: 100px 0;
  background: var(--primary);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}
.about-sidebar {
  position: sticky;
  top: 100px;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 24px;
}
.about-photo img { width: 100%; }
.about-info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
}
.about-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem;
}
.about-info-item:last-child { border-bottom: none; }
.about-info-item .label { color: var(--text-muted); }
.about-info-item .value { color: var(--white); font-weight: 500; }

.about-content-area h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}
.about-content-area h3:first-child { margin-top: 0; }
.about-content-area p { color: var(--text-muted); }
.about-content-area ul {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-content-area ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.about-content-area ul li i { color: var(--gold); font-size: 0.8rem; min-width: 16px; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.value-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.value-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.value-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Pan India Badges */
.state-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.state-badge {
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}
.state-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   PRACTICE AREAS PAGE - DETAILED
   ============================================================ */
.practice-detail {
  padding: 80px 0;
  background: var(--primary);
}
.practice-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-glass);
}
.practice-item:last-child { border-bottom: none; }
.practice-item-number {
  width: 80px;
  height: 80px;
  background: var(--bg-glass);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.practice-item h3 { margin-bottom: 14px; }
.practice-item p { color: var(--text-muted); font-size: 0.95rem; }
.practice-item ul {
  margin: 16px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.practice-item ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.practice-item ul li i { color: var(--gold); font-size: 0.75rem; }

/* ============================================================
   SERVICE PAGES (Dedicated)
   ============================================================ */
.service-detail {
  padding: 80px 0;
  background: var(--primary);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}
.service-main h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}
.service-main h3:first-child { margin-top: 0; }
.service-main p { color: var(--text-muted); }
.service-main ul {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-main ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.service-main ul li i { color: var(--gold); min-width: 16px; font-size: 0.8rem; }

/* FAQ Accordion */
.faq-section { margin-top: 48px; }
.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: rgba(201, 168, 76, 0.3); }
.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-glass);
  transition: var(--transition-fast);
  font-weight: 500;
  color: var(--white);
}
.faq-question:hover { background: rgba(201, 168, 76, 0.05); }
.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 1.05rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}
.sidebar-links a:hover, .sidebar-links a.active {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}
.sidebar-links a i { color: var(--gold); min-width: 16px; font-size: 0.8rem; }

.sidebar-cta {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.sidebar-cta h4 { margin-bottom: 10px; border: none; padding: 0; }
.sidebar-cta p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; }

/* Step Process (Service pages) */
.step-process {
  margin: 28px 0;
}
.step-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 56px;
  bottom: -4px;
  width: 2px;
  background: rgba(201, 168, 76, 0.2);
}
.step-marker {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
}
.step-item h4 { margin-bottom: 6px; font-size: 1rem; }
.step-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   FORMS (Appointment + Contact)
   ============================================================ */
.form-section {
  padding: 80px 0;
  background: var(--primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Multi-step form */
.form-progress {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}
.form-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 2;
}
.form-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: var(--border-glass);
  z-index: 1;
}
.form-progress-step.active:not(:last-child)::after,
.form-progress-step.completed:not(:last-child)::after {
  background: var(--gold);
}
.progress-circle {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  margin-bottom: 8px;
}
.form-progress-step.active .progress-circle {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}
.form-progress-step.completed .progress-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}
.progress-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.form-progress-step.active .progress-label { color: var(--gold); }
.form-progress-step.completed .progress-label { color: var(--gold); }

.form-step {
  display: none;
}
.form-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group label .required { color: var(--gold); }

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
select.form-control option { background: var(--primary-light); color: var(--white); }

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

.form-file {
  position: relative;
  border: 2px dashed var(--border-glass);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.form-file:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.03); }
.form-file input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.form-file i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.form-file p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.form-file .file-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

.form-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.contact-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.contact-card a { color: var(--gold); }

/* Working Hours */
.hours-table {
  width: 100%;
  margin-top: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-light); }
.hours-row .time { color: var(--gold); font-weight: 500; }
.hours-row .closed { color: #e74c3c; }

/* Consultation Modes */
.consult-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.consult-mode {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.consult-mode:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.consult-mode i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.consult-mode h4 { font-size: 0.95rem; margin-bottom: 6px; }
.consult-mode p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.3s ease;
  min-width: 300px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast-success { background: #059669; color: #fff; }
.toast-error { background: #dc2626; color: #fff; }
.toast-close { margin-left: auto; cursor: pointer; opacity: 0.7; }
.toast-close:hover { opacity: 1; }

/* ============================================================
   UTILITIES
   ============================================================ */
.section-padding { padding: 100px 0; }
.bg-dark { background: var(--primary); }
.bg-section { background: var(--bg-section); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

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

  .about-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .form-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .stats-bar { margin-top: -20px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

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

  .hero-content { padding: 100px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 24px; }

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

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

  .practice-item { grid-template-columns: 1fr; }
  .practice-item ul { grid-template-columns: 1fr; }
  .practice-item-number { margin: 0 auto; }
  .practice-item { text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .consult-modes { grid-template-columns: 1fr; }
  .service-sidebar { grid-template-columns: 1fr; }

  .page-hero { padding: 120px 0 60px; }

  .cta-issues { flex-direction: column; align-items: center; }

  .section-padding { padding: 60px 0; }
  .about-preview,
  .services-section,
  .process-section,
  .trust-section,
  .cta-section,
  .awareness-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { padding: 24px 16px; border-bottom: 1px solid var(--border-glass); }
  .stat-item:last-child { border-bottom: none; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .form-progress-step { flex: unset; }
  .form-progress { flex-wrap: wrap; gap: 16px; }
  .form-progress-step:not(:last-child)::after { display: none; }
  .form-btns { flex-direction: column; }
}

/* ============================================================
   ANIMATIONS (AOS overrides + custom)
   ============================================================ */
[data-aos] { transition-property: transform, opacity; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Gold shimmer effect for headings */
.shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ============================================================
   LOGO IMAGE ICON
   ============================================================ */
.logo-icon-img {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  max-width: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-main-img {
  height: 46px !important;
  width: auto !important;
  max-height: 46px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-main-img { height: 36px !important; }
}

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-section { padding: 80px 0; background: var(--primary); }

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-featured-img {
  height: 100%;
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.6s ease;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-content {
  padding: 40px;
}
.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.blog-featured-content h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
.blog-featured-content h2 a { color: var(--white); transition: var(--transition-fast); }
.blog-featured-content h2 a:hover { color: var(--gold); }
.blog-featured-content p { color: var(--text-muted); margin-bottom: 20px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-meta i { color: var(--gold); font-size: 0.78rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-hover);
}
.blog-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-xl);
}
.blog-card-body { padding: 24px; }
.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body h3 a { color: var(--white); transition: var(--transition-fast); }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition-fast);
}
.blog-read-more:hover { gap: 12px; color: var(--gold-light); }

/* ============================================================
   BLOG POST / ARTICLE PAGE
   ============================================================ */
.article-section { padding: 80px 0; background: var(--primary); }
.article-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.article-header { margin-bottom: 32px; }
.article-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 16px;
}
.article-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
}
.article-cover img { width: 100%; height: auto; }

.article-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-glass);
  color: var(--white);
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--gold);
}
.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  margin: 16px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li, .article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.article-body ul li i { color: var(--gold); min-width: 16px; margin-top: 5px; font-size: 0.8rem; }
.article-body ol { counter-reset: article-counter; padding-left: 0; }
.article-body ol li { counter-increment: article-counter; }
.article-body ol li::before {
  content: counter(article-counter) ".";
  color: var(--gold);
  font-weight: 700;
  min-width: 24px;
  font-family: var(--font-heading);
}

.article-callout {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.article-callout strong { color: var(--gold); }

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}
.article-tag {
  padding: 5px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.article-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Share + Author */
.article-author {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-top: 36px;
}
.article-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.article-author-info h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.article-author-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.share-row span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}
.share-btn:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }

/* Related Posts */
.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass);
}
.related-posts h3 { margin-bottom: 28px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Article sidebar TOC */
.toc-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.toc-card h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
  font-family: var(--font-body);
  font-weight: 600;
}
.toc-links { display: flex; flex-direction: column; gap: 6px; }
.toc-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-left: 2px solid transparent;
}
.toc-links a:hover { color: var(--gold); background: rgba(201, 168, 76, 0.05); border-left-color: var(--gold); }

/* Blog Responsive */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-grid .service-sidebar { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img img { min-height: 300px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 24px; }
  .blog-featured-content h2 { font-size: 1.4rem; }
  .article-body h2 { font-size: 1.3rem; }
}
