﻿/* ============================================================
   Opulent Law Firm - Premium Legal Website CSS
   Version: 2.0 | 2026 Modern Gen-Z Corporate Design
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary: #0A2342;
  --primary-light: #0e2f58;
  --accent: #C9A227;
  --accent-light: #e1c44d;
  --accent-dark: #9b7d1e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-bg: #f4f2ee;
  --text-dark: #1a1a2e;
  --text-body: #4a4a6a;
  --text-muted: #8585a8;
  --border: #e5e3de;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.08);
  --shadow-md: 0 8px 32px rgba(26,26,46,0.12);
  --shadow-lg: 0 20px 60px rgba(26,26,46,0.16);
  --shadow-xl: 0 32px 80px rgba(26,26,46,0.20);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
}

/* Contain horizontal overflow below the nav — never on html/body */
body > *:not(nav) {
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(201,162,39,0.2);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--primary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.top-bar-info a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a:hover { color: var(--accent); }
.top-bar-info i { color: var(--accent); font-size: 0.75rem; }
.top-bar .divider { opacity: 0.3; }

.btn-whatsapp-top {
  background: #25D366;
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-whatsapp-top:hover {
  background: #1ebe5e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* ---- Navigation ---- */
#mainNav {
  position: sticky;
  top: 0;
  background: var(--primary);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  transition: var(--transition);
  z-index: 1030;
}

#mainNav.scrolled {
  background: rgba(10,35,66,0.98);
  /* padding: 10px 0; */
  box-shadow: var(--shadow-md);
}

.navbar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 260px;
  animation: dropIn 0.2s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(201,162,39,0.1);
  color: var(--accent);
  transform: translateX(4px);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

/* ---- Section Titles ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title span { color: var(--accent); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Hero Section ---- */
.hero-section {
  /* min-height: 100vh; */
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.08) 0%, transparent 40%),
    linear-gradient(135deg, rgba(10,35,66,0.95) 0%, rgba(14,47,88,0.90) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge i { font-size: 0.7rem; }

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary) !important;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,162,39,0.5);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.btn-hero-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: var(--transition);
}

.btn-hero-whatsapp:hover {
  background: #1ebe5e;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}


.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-image-card {
  position: relative;
  z-index: 2;
}

.hero-advocate-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,0.20);
}


.hero-advocate-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  margin-bottom: 1.5rem;
}

.hero-advocate-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-advocate-info h4 {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}

.hero-advocate-role {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 0.5rem;
}

.hero-advocate-details {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.hero-badge-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

/* ---- About Section ---- */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-image-grid {
  position: sticky;
  top: 120px;
  z-index: 10;
  height: fit-content;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.about-experience-badge span:last-child {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature-item:hover {
  background: var(--light-bg);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.about-feature-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
}

.about-feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Practice Areas ---- */
.practice-section {
  padding: 100px 0;
  background: var(--off-white);
}

/* â”€â”€ Swiper wrapper â”€â”€ */
.pa-swiper-wrap {
  position: relative;
  padding: 0 0 56px;
}

/* â”€â”€ Nav buttons â”€â”€ */
.pa-swiper-prev,
.pa-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,39,0.3);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26,26,46,0.10);
}
.pa-swiper-prev { left: -24px; }
.pa-swiper-next { right: -24px; }
.pa-swiper-prev:hover,
.pa-swiper-next:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}
@media (max-width: 991px) {
  .pa-swiper-prev { left: 0; }
  .pa-swiper-next { right: 0; }
}

/* â”€â”€ Pagination dots â”€â”€ */
.pa-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.pa-swiper-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--border);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
}
.pa-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* â”€â”€ Card link wrapper â”€â”€ */
.practice-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

/* â”€â”€ Card â”€â”€ */
.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease;
  position: relative;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}

.practice-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,162,39,0.35);
}
.practice-card:hover::before { transform: scaleX(1); }

/* â”€â”€ Image thumb â”€â”€ */
.practice-card-thumb {
  position: relative;
  height: 200px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}
.practice-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
  display: block;
  filter: brightness(0.92) saturate(1.05);
}
.practice-card:hover .practice-card-thumb img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

.practice-card-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.08) 0%, rgba(26,26,46,0.52) 100%);
  transition: opacity 0.4s ease;
}
.practice-card:hover .practice-card-thumb-overlay { opacity: 0.6; }

/* â”€â”€ Card body â”€â”€ */
.practice-card-body {
  padding: 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.practice-card-body h5,
.practice-card-heading {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.55rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.practice-card:hover .practice-card-body h5,
.practice-card:hover .practice-card-heading { color: var(--accent-dark); }

.practice-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.practice-card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}
.practice-card:hover .practice-card-link-text { gap: 10px; }

/* â”€â”€ Icon variant (non-image cards) â”€â”€ */
.practice-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.practice-card:hover .practice-card-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  transform: scale(1.1);
}

/* ---- Why Choose Us ---- */
.why-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.why-card {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.why-card h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* ---- Stats Section ---- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(201,162,39,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 50%, rgba(201,162,39,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* â”€â”€ Swiper wrap â”€â”€ */
.testi-swiper-wrap {
  position: relative;
  padding: 0 0 56px;
}

/* â”€â”€ Nav buttons â”€â”€ */
.testi-swiper-prev,
.testi-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,39,0.3);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26,26,46,0.08);
}
.testi-swiper-prev { left: -24px; }
.testi-swiper-next { right: -24px; }
.testi-swiper-prev:hover,
.testi-swiper-next:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}
@media (max-width: 991px) {
  .testi-swiper-prev { left: 0; }
  .testi-swiper-next { right: 0; }
}

/* â”€â”€ Pagination â”€â”€ */
.testi-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.testi-swiper-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--border);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
}
.testi-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* â”€â”€ Card â”€â”€ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.testi-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-5px);
}
.testi-card:hover::before { transform: scaleX(1); }

/* Top row: stars + badge */
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 0.78rem;
}

.testi-badge {
  background: rgba(201,162,39,0.1);
  color: var(--accent-dark);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Quote icon */
.testi-quote-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Testimonial text */
.testi-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201,162,39,0.3);
}

.testi-avatar-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testi-author-info h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.testi-author-info small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- Blog Section ---- */
.blog-section {
  padding: 100px 0;
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(201,162,39,0.3);
}

.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.05); }

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-meta i { color: var(--accent); }

.blog-card-title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.blog-card-link:hover { gap: 10px; }

/* ---- CTA Section ---- */
.cta-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-title span { color: var(--accent); }

.cta-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* ---- Page Banners ---- */
.page-banner {
  background: var(--primary);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10,35,66,0.92) 0%, rgba(14,47,88,0.87) 100%);
  z-index: 1;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-banner-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-banner-title span { color: var(--accent); }

.page-banner-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 550px;
}

/* ---- Breadcrumb ---- */
.breadcrumb-nav {
  /* background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.08); */
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin: 0;
  background: none;
  padding: 0;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.breadcrumb-item a:hover { color: var(--accent); }

.breadcrumb-item.active {
  color: var(--accent);
  font-size: 0.82rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* ---- Forms ---- */
.form-modern .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-modern .form-control,
.form-modern .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-modern .form-control:focus,
.form-modern .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.12);
  outline: none;
}

.form-modern .form-control::placeholder { color: var(--text-muted); }

.btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
  transition: var(--transition);
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,162,39,0.45);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ---- Alert Messages ---- */
.alert-custom {
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success-custom {
  background: rgba(16,185,129,0.1);
  color: #065f46;
  border-left: 4px solid var(--success);
}

.alert-danger-custom {
  background: rgba(239,68,68,0.1);
  color: #991b1b;
  border-left: 4px solid var(--danger);
}

/* ---- FAQ Section ---- */
.faq-section {
  padding: 80px 0;
}

.accordion-modern .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-modern .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--white);
  padding: 18px 24px;
  box-shadow: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(201,162,39,0.05);
}

.accordion-modern .accordion-button::after {
  filter: none;
}

.accordion-modern .accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-modern .accordion-body {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* ---- Court Fee Page ---- */
.cf-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

/* Notice banner */
.cf-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.75rem;
  margin-bottom: 2.5rem;
}
.cf-notice-icon {
  color: var(--accent);
  font-size: 1.4rem;
  min-width: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}
.cf-notice-body h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.cf-notice-body p {
  color: var(--text-body);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.7;
}
.cf-notice-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.cf-notice-body a:hover { text-decoration: underline; }

/* Filter tabs */
.cf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.cf-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.83rem;
  cursor: pointer;
  transition: var(--transition);
}
.cf-filter-btn:hover,
.cf-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(201,162,39,0.25);
}

/* Fee group card */
.cf-group {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.cf-group-header {
  background: var(--primary);
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cf-group-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(201,162,39,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}
.cf-group-header h5 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

/* Table */
.cf-table-wrap { overflow-x: auto; }
.cf-table {
  width: 100%;
  border-collapse: collapse;
}
.cf-table thead tr {
  background: rgba(201,162,39,0.06);
  border-bottom: 2px solid rgba(201,162,39,0.15);
}
.cf-table thead th {
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  white-space: nowrap;
}
.cf-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.cf-table tbody tr:last-child { border-bottom: none; }
.cf-table tbody tr:hover { background: rgba(201,162,39,0.04); }
.cf-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-body);
  vertical-align: middle;
}
.cf-amount {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  white-space: nowrap;
}
.cf-notes {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Empty state */
.cf-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}
.cf-empty i { font-size: 4rem; display: block; margin-bottom: 1rem; }
.cf-empty h4 { color: var(--primary); margin-bottom: 1.5rem; }

/* Bottom CTA */
.cf-cta {
  margin-top: 3rem;
}
.cf-cta-inner {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cf-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cf-cta-inner h4 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.cf-cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.cf-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Keep old class for any references */
.fee-amount { font-weight: 700; color: var(--primary); }
.fee-category-badge {
  background: rgba(201,162,39,0.1);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---- Documents Section ---- */
.documents-section {
  padding: 80px 0;
}

.document-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.document-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.document-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.document-icon.pdf { background: rgba(239,68,68,0.1); color: #ef4444; }
.document-icon.doc { background: rgba(59,130,246,0.1); color: #3b82f6; }
.document-icon.docx { background: rgba(59,130,246,0.1); color: #3b82f6; }

.document-info h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
}

.document-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.document-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-download {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,162,39,0.3);
  color: var(--primary);
}

/* ---- Contact Section ---- */
.contact-section {
  padding: 80px 0;
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,162,39,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.contact-info-text h6 {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text p {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
}

.contact-info-text a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ---- Consultation Section ---- */
.consultation-section {
  padding: 80px 0;
  background: var(--off-white);
}

.consultation-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ---- About Page ---- */
.advocate-profile-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.advocate-profile-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.advocate-profile-info {
  padding: 2rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.achievement-item:hover {
  background: var(--light-bg);
}

.achievement-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

/* ---- Practice Area Detail ---- */
.pa-detail-section {
  padding: 80px 0;
}

.pa-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.pa-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.pa-sidebar-card {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.pa-sidebar-card h5 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.pa-service-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pa-service-list li:last-child { border-bottom: none; }
.pa-service-list li i { color: var(--accent); font-size: 0.7rem; }

/* ---- Blog Detail ---- */
.blog-detail-section {
  padding: 80px 0;
}

.blog-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-detail-content {
  padding: 2.5rem;
}

.blog-detail-content h2 { font-size: 1.4rem; margin: 2rem 0 1rem; }
.blog-detail-content h3 { font-size: 1.2rem; margin: 1.75rem 0 0.75rem; }
.blog-detail-content p { margin-bottom: 1rem; line-height: 1.8; }
.blog-detail-content ul, .blog-detail-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.blog-detail-content li { margin-bottom: 0.5rem; }

/* ---- Pagination ---- */
.pagination-modern .page-link {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--primary);
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.pagination-modern .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.pagination-modern .page-link:hover {
  background: rgba(201,162,39,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Footer ---- */
.footer {
  background: #0d0d1a;
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.footer-logo img {
  max-height: 48px;
  width: auto;
}

.footer-logo span { color: var(--accent); }

.footer-tagline {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-about {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.footer-contact-quick a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-contact-quick a:hover { color: var(--accent); }
.footer-contact-quick i { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  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.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '>';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact-item a:hover { color: var(--accent); }

.btn-footer-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,162,39,0.35);
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ---- Floating Buttons ---- */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
  color: white;
}

.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip { opacity: 1; }

.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-call:hover {
  transform: scale(1.1);
  color: var(--primary);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ---- Admin Panel Styles ---- */
.admin-body {
  background: #f0f2f5;
  font-family: var(--font-body);
}

.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--primary);
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;
  overflow-y: auto;
  transition: var(--transition);
}

.admin-sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-brand h4 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.admin-sidebar-brand span { color: var(--accent); }

.admin-sidebar-brand small {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  display: block;
  margin-top: 2px;
}

.admin-nav {
  padding: 16px 12px;
}

.admin-nav-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 8px 8px 4px;
  margin-top: 8px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 2px;
  text-decoration: none;
}

.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.admin-nav-link.active { color: var(--accent); }

.admin-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: var(--white);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.admin-topbar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.admin-content {
  flex: 1;
  padding: 24px;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.admin-card-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.admin-card-header h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.admin-card-body { padding: 24px; }

.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.admin-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.admin-stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.admin-stat-number {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.admin-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.admin-table {
  font-size: 0.875rem;
}

.admin-table th {
  background: var(--off-white);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border: none;
}

.admin-table td {
  padding: 14px 16px;
  vertical-align: middle;
  border-color: var(--border);
  color: var(--text-body);
}

.admin-table tbody tr:hover { background: rgba(201,162,39,0.03); }

.badge-status-pending { background: rgba(245,158,11,0.1); color: #b45309; }
.badge-status-active { background: rgba(16,185,129,0.1); color: #065f46; }
.badge-status-inactive { background: rgba(107,114,128,0.1); color: #374151; }
.badge-status-new { background: rgba(59,130,246,0.1); color: #1d4ed8; }

.badge-status-pending, .badge-status-active, 
.badge-status-inactive, .badge-status-new {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.btn-admin-add {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-admin-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,162,39,0.35);
  color: var(--primary);
}

.btn-admin-edit {
  background: rgba(59,130,246,0.1);
  color: #1d4ed8;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-admin-delete {
  background: rgba(239,68,68,0.1);
  color: #b91c1c;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-admin-edit:hover { background: #3b82f6; color: white; }
.btn-admin-delete:hover { background: #ef4444; color: white; }

/* Admin Login */
.admin-login-page {
  min-height: 100vh;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.admin-login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.08) 0%, transparent 50%);
}

.admin-login-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.admin-login-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-login-logo h3 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.admin-login-logo span { color: var(--accent); }

.admin-login-logo p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.admin-login-card .form-label { color: rgba(255,255,255,0.7); }

.admin-login-card .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
}

.admin-login-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.12);
  background: rgba(255,255,255,0.08);
}

.admin-login-card .form-control::placeholder { color: rgba(255,255,255,0.3); }

/* ---- Utility Classes ---- */
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-accent { background: var(--accent) !important; }

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-content { padding: 60px; }
  .hero-image-card { margin-top: 3rem; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.show { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .about-img-float, .about-experience-badge { display: none; }
  .about-image-grid { position: static !important; }
}

@media (min-width: 992px) {
  .about-image-grid {
    position: sticky !important;
    top: 120px !important;
    z-index: 10 !important;
    height: fit-content !important;
  }
}

@media (max-width: 767px) {
  .hero-section { padding: 60px 0; }
  .hero-content { padding: 40px 1.25rem; }
  .hero-title { font-size: 2rem; max-width: 100%; }
  .hero-subtitle { max-width: 100%; font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 12px; justify-content: center; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline,
  .hero-actions .btn-hero-whatsapp { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.72rem; padding: 8px 16px; }
  .hero-bg-pattern { background-size: 40px 40px; }
  .section-title { font-size: 1.8rem; }
  .stats-section .stat-number { font-size: 2rem; }
  .footer-top { padding: 60px 0 40px; }
  .admin-content { padding: 16px; }
  .admin-login-card { padding: 2rem; margin: 1rem; }
  .floating-whatsapp { bottom: 80px; }
}

@media (max-width: 576px) {
  .hero-section { padding: 50px 0; }
  .hero-content { padding: 35px 1rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .page-banner { padding: 80px 0 50px; }
  .page-banner-title { font-size: 1.75rem; }
  .contact-form-card, .consultation-card { padding: 1.5rem; }
  .contact-info-card { padding: 1.5rem; }
}

/* Mobile Sidebar Navigation */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(14,47,88,0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 100px 1.5rem 40px;
  }

  .navbar-collapse.show { transform: translateX(0); }

  .navbar-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav-item { width: 100%; }

  .nav-link {
    padding: 14px 18px !important;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    color: rgba(255,255,255,0.85) !important;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(201,162,39,0.2) !important;
    color: var(--accent) !important;
    padding-left: 24px !important;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    margin-top: 8px;
    padding: 8px 0;
    display: none;
  }

  .dropdown-menu.show { display: block; }

  .dropdown-item {
    color: rgba(255,255,255,0.7) !important;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .dropdown-item:hover {
    background: rgba(201,162,39,0.15) !important;
    color: var(--accent) !important;
    transform: translateX(6px);
  }

  .nav-link.dropdown-toggle::after { display: none; }

  .btn-primary-custom {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.15);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M 4 7 L 26 7 M 4 15 L 26 15 M 4 23 L 26 23'/%3e%3c/svg%3e");
  }
}

/* ============================================================
   PRACTICE AREA DETAIL PAGE â€” Full-width section layout
   ============================================================ */

/* â”€â”€ Banner thumbnail image â”€â”€ */
.pad-banner-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(201,162,39,0.25);
  position: relative;
}
.pad-banner-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.pad-banner-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Extra bottom padding on practice area banner to allow image overlap */
.pad-banner-overlap {
  padding-bottom: 100px !important;
  overflow: visible !important;
}

/* Ensure the thumbnail sits fully inside the banner â€” no clipping */
.pad-banner-overlap .page-banner-content {
  overflow: visible;
}
.pad-banner-overlap .pad-banner-thumb {
  margin-top: -20px; /* pull up slightly so it aligns better vertically */
}

/* Practice area banner with card image â€” needs more vertical space and no clipping */
.pad-banner-with-img {
  overflow: visible !important;
  padding: 120px 0 80px !important;
}
.pad-banner-with-img::before {
  /* keep the overlay contained even with overflow visible */
  border-radius: 0;
}
.pad-banner-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 3px solid rgba(201,162,39,0.3);
}
.pad-banner-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* â”€â”€ 2. Overview â”€â”€ */
.pad-overview {
  padding: 60px 0 90px;
  background: var(--white);
}

/* Full-width image with border radius, pulls up slightly */
.pad-overview-main-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-xl);
  /* margin-top: -60px; overlaps the banner bottom */
}
.pad-overview-main-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pad-overview-main-img:hover img { transform: scale(1.02); }

.pad-overview-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(26,26,46,0.85);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}


/* Rich content typography */
.pad-rich-content h1, .pad-rich-content h2,
.pad-rich-content h3, .pad-rich-content h4 {
  font-family: var(--font-primary);
  color: var(--primary);
  margin: 1.5rem 0 0.65rem;
  line-height: 1.3;
}
.pad-rich-content h2 { font-size: 1.45rem; }
.pad-rich-content h3 { font-size: 1.15rem; }
.pad-rich-content p {
  margin-bottom: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  font-size: 0.95rem;
}
.pad-rich-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}
.pad-rich-content ul li {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}
.pad-rich-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(201,162,39,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-body);
}

/* â”€â”€ 3. Benefits â€” dark section â”€â”€ */
.pad-benefits {
  padding: 90px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.pad-benefits::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,162,39,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 30%, rgba(201,162,39,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.pad-benefit-card {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pad-benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pad-benefit-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-4px);
}
.pad-benefit-card:hover::before { transform: scaleX(1); }
.pad-benefit-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.pad-benefit-card h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.pad-benefit-card p {
  color: rgba(255,255,255,0.52);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* â”€â”€ 4. Process â”€â”€ */
.pad-process {
  padding: 90px 0;
  background: var(--off-white);
}
.pad-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}
.pad-process-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(201,162,39,0.15));
  z-index: 0;
}
@media (max-width: 767px) {
  .pad-process-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .pad-process-line { display: none; }
}
@media (max-width: 480px) {
  .pad-process-track { grid-template-columns: 1fr; }
}
.pad-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.pad-process-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pad-process-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.pad-process-step:hover .pad-process-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}
.pad-process-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pad-process-step h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pad-process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* â”€â”€ 5. Other Practice Areas â”€â”€ */
.pad-others {
  padding: 90px 0;
  background: var(--white);
}

/* â”€â”€ 6. Bottom CTA â”€â”€ */
.pad-cta {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.pad-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.pad-cta-title {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.pad-cta-title span { color: var(--accent); }
.pad-cta-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}



/* ================================================================
   Disclaimer / Popup Overlay
   ================================================================ */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: overlayFadeIn 0.35s ease forwards;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.disclaimer-popup {
  background: #fff;
  border-radius: var(--radius-xl, 32px);
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2.5rem 2.25rem 2rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(26, 26, 46, 0.28);
  animation: popupSlideUp 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  scrollbar-width: thin;
  scrollbar-color: var(--accent, #c9a227) #f4f2ee;
}

.disclaimer-popup::-webkit-scrollbar { width: 5px; }
.disclaimer-popup::-webkit-scrollbar-track { background: #f4f2ee; border-radius: 10px; }
.disclaimer-popup::-webkit-scrollbar-thumb { background: var(--accent, #c9a227); border-radius: 10px; }

@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.disclaimer-title {
  font-family: var(--font-primary, 'Playfair Display', Georgia, serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary, #0A2342);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0ede6;
  position: relative;
}

.disclaimer-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent, #C9A227);
  border-radius: 2px;
}

.disclaimer-body {
  font-size: 0.93rem;
  color: var(--text-body, #4a4a6a);
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1.75rem;
  white-space: pre-wrap;
}

.disclaimer-body p {
  margin-bottom: 0.9rem;
}

.disclaimer-body p:last-child { margin-bottom: 0; }

.disclaimer-footer {
  text-align: center;
}

.disclaimer-btn {
  background: linear-gradient(135deg, var(--primary, #0A2342), var(--primary-light, #0e2f58));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 48px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.25);
  display: inline-block;
}

.disclaimer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(26, 26, 46, 0.35);
  background: linear-gradient(135deg, #16213e, #0d1b2a);
}

.disclaimer-btn:active {
  transform: translateY(0);
}

/* Shake on outside click */
@keyframes disclaimerShake {
  0%,100% { transform: translateX(0); }
  15%      { transform: translateX(-8px); }
  30%      { transform: translateX(8px); }
  45%      { transform: translateX(-6px); }
  60%      { transform: translateX(6px); }
  75%      { transform: translateX(-3px); }
  90%      { transform: translateX(3px); }
}

.disclaimer-btn-shake {
  animation: disclaimerShake 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
  outline: 2px solid var(--accent, #c9a227);
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .disclaimer-popup {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 20px;
  }
  .disclaimer-title { font-size: 1.25rem; }
  .disclaimer-body  { font-size: 0.875rem; }
  .disclaimer-btn   { padding: 12px 36px; font-size: 0.875rem; }
}


/* ================================================================
   Practice Area Detail — Sections Layout
   (replaces the old single-description pad-overview approach)
   ================================================================ */

/* ── Banner tag pill ── */
.pad-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── Banner CTA actions ── */
.pad-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.75rem;
}

/* ══════════════════════════════════════════════
   ALTERNATING SECTIONS  (light / dark stripes)
══════════════════════════════════════════════ */

/* ── Each stripe ── */
.pad-sec {
  padding: 80px 0;
}

.pad-sec-light {
  background: var(--white);
}

.pad-sec-dark {
  background: var(--off-white);  /* deep navy */
}

/* ── Inner row ── */
.pad-sec-row {
  display: flex;
  align-items: center;
}

/* ── Image column ── */
.pad-sec-img-col {
  padding: 0;
  overflow: hidden;
}

.pad-sec-img {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.pad-sec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.pad-sec-img:hover img {
  transform: scale(1.04);
}

/* ── Text column ── */
.pad-sec-text-col {
  padding: 0;
}

.pad-sec-body {
  padding: 0 56px;
}




/* ── Headings ── */
.pad-sec-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.pad-sec-light .pad-sec-heading {
  color: var(--primary);
}
/* 
.pad-sec-dark .pad-sec-heading {
  color: var(--white);
} */

/* ── Rich content — light variant ── */
.pad-sec-light .pad-rich-content p {
  color: var(--text-body);
}

.pad-sec-light .pad-rich-content ul li {
  color: var(--text-body);
}

/* ── Rich content — dark variant ── */
/* .pad-sec-dark .pad-rich-content p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.9rem;
} */


.pad-sec-dark .pad-rich-content ul li {
  /* color: rgba(255,255,255,0.78); */
  background: none;
}

.pad-sec-dark .pad-rich-content ol li {
  /* color: rgba(255,255,255,0.78); */
  background: none;
}

.pad-sec-dark .pad-rich-content blockquote {
  background: rgba(201,162,39,0.08);
  /* color: rgba(255,255,255,0.85); */
}

.pad-sec-dark .pad-rich-content strong {
  color: var(--accent);
}

/* ── Text-only (no image) full-width variant ── */
.pad-sec-body-solo {
  /* max-width: 840px; */
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Empty state (no sections yet) ── */
.pad-section-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.pad-section-empty i {
  font-size: 3.5rem;
  color: rgba(201,162,39,0.3);
  display: block;
  margin-bottom: 1.25rem;
}

.pad-section-empty h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pad-section-empty p {
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── Rich content shared typography ── */
.pad-rich-content h1,
.pad-rich-content h2,
.pad-rich-content h3,
.pad-rich-content h4 {
  font-family: var(--font-primary);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}

.pad-rich-content h2 { font-size: 1.35rem; }
.pad-rich-content h3 { font-size: 1.1rem; }

.pad-rich-content p {
  margin-bottom: 0.9rem;
  color: var(--text-body);
  line-height: 1.85;
  font-size: 0.95rem;
}

.pad-rich-content ul,
.pad-rich-content ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.1rem;
}

.pad-rich-content ul {
  padding-left: 1.25rem;
  list-style: disc;
}

.pad-rich-content ul li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: list-item;
}

.pad-rich-content ul li::before {
  content: none;
}

.pad-rich-content ol {
  padding-left: 1.25rem;
  list-style: decimal;
  counter-reset: unset;
}

.pad-rich-content ol li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: list-item;
  counter-increment: unset;
}

.pad-rich-content ol li::before {
  content: none;
}

.pad-rich-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.4rem;
  margin: 1.25rem 0;
  background: rgba(201,162,39,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pad-rich-content strong { color: var(--primary); font-weight: 700; }
.pad-rich-content a { color: var(--accent); text-decoration: underline; font-weight: 500; }
.pad-rich-content a:hover { color: var(--accent-dark); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pad-sec { padding: 56px 0; }
  .pad-sec-img { height: 280px; border-radius: var(--radius-lg); }
  .pad-sec-body,
  .pad-sec-light .pad-sec-body,
  .pad-sec-dark .pad-sec-body,
  .pad-sec-dark .pad-sec-row.flex-lg-row-reverse .pad-sec-body { padding: 40px 0 0; }
  .pad-banner-actions { flex-direction: column; gap: 10px; }
  .pad-banner-actions .btn-hero-primary,
  .pad-banner-actions .btn-hero-outline { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
  .pad-sec { padding: 48px 0; }
  .pad-sec-img { height: 220px; }
  .pad-sec-heading { font-size: 1.3rem; }
  .pad-sec-body-solo { padding: 0 8px; }
}


/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   Breakpoints: 991px | 767px | 576px | 400px
   ============================================================ */

/* ── 991px — Tablet ── */
@media (max-width: 991px) {

  /* Top bar */
  .top-bar { padding: 8px 0; }
  .top-bar-info { font-size: 0.78rem; gap: 0.6rem; }

  /* Brand logo */
  .brand-logo img { max-height: 60px; }

  /* Hero */
  .hero-content { padding: 70px 0 50px; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }

  /* About */
  .about-section { padding: 80px 0; }
  .about-img-main { height: 320px; }

  /* Stats */
  .stats-section { padding: 70px 0; }

  /* Sections padding */
  .why-section,
  .testimonials-section,
  .blog-section,
  .cta-section { padding: 80px 0; }

  /* Practice area detail */
  .pad-others { padding: 80px 0; }
  .pad-cta    { padding: 80px 0; }

  /* Footer */
  .footer-top { padding: 70px 0 50px; }

  /* Page banner */
  .page-banner { padding: 90px 0 70px; }
  .page-banner-title { font-size: clamp(1.8rem, 4vw, 3rem); }
}

/* ── 767px — Mobile ── */
@media (max-width: 767px) {

  /* ── General ── */
  .section-title    { font-size: 1.85rem; }
  .section-subtitle { font-size: 0.95rem; }
  .section-label    { margin-bottom: 0.75rem; }

  /* ── Top Bar ── */
  .top-bar { display: none !important; }

  /* ── Navbar ── */
  .brand-logo img { max-height: 52px; }
  .brand-name { font-size: 1.1rem; }
  .brand-sub  { font-size: 0.58rem; letter-spacing: 2px; }

  /* ── Hero ── */
  .hero-section  { min-height: unset; padding: 0; }
  .hero-content  { padding: 36px 0 40px; }
  .hero-title    { font-size: 2rem; line-height: 1.2; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-actions  { flex-direction: column; gap: 12px; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline,
  .hero-actions .btn-hero-whatsapp { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.7rem; padding: 7px 14px; margin-bottom: 1.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero-stat-number { font-size: 1.6rem; }

  /* ── Page Banner ── */
  .page-banner { padding: 80px 0 60px; }
  .page-banner-title    { font-size: 1.8rem; line-height: 1.25; }
  .page-banner-subtitle { font-size: 0.92rem; margin-top: 0.6rem; }

  /* ── About ── */
  .about-section { padding: 72px 0; }
  .about-img-main { height: 260px; border-radius: var(--radius-lg); }
  .about-features { gap: 1rem; margin-top: 1.5rem; }
  .about-feature-item { padding: 14px; gap: 14px; }
  .about-feature-icon  { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }

  /* ── Practice Area Cards ── */
  .practice-card-body h5,
  .practice-card-heading { font-size: 0.95rem; }
  .pa-card-thumb  { height: 190px; }
  .pa-card-body   { padding: 1.25rem 1.5rem 1.5rem; }
  .pa-card-body h5 { font-size: 0.95rem; }

  /* ── Why Section ── */
  .why-section { padding: 72px 0; }
  .why-card { padding: 1.75rem; }

  /* ── Stats ── */
  .stats-section { padding: 64px 0; }
  .stat-number  { font-size: 2.4rem; }
  .stat-label   { font-size: 0.82rem; }

  /* ── Testimonials ── */
  .testimonials-section { padding: 72px 0; }
  .testi-card { padding: 1.5rem; }
  .testi-text { font-size: 0.85rem; }

  /* ── Blog ── */
  .blog-section { padding: 72px 0; }
  .blog-card-img  { height: 200px; }
  .blog-card-body { padding: 1.25rem; }
  .blog-card-title { font-size: 0.95rem; }

  /* ── CTA ── */
  .cta-section { padding: 72px 0; }
  .cta-title   { font-size: 1.9rem; }
  .cta-text    { font-size: 0.92rem; }
  .cta-section .d-flex,
  .pad-cta .d-flex { flex-direction: column; gap: 12px; }
  .cta-section .btn-hero-primary,
  .cta-section .btn-hero-outline,
  .pad-cta .btn-hero-primary,
  .pad-cta .btn-hero-outline { width: 100%; justify-content: center; }

  /* ── Practice Area Detail ── */
  .pad-sec-heading { font-size: 1.3rem; }
  .pad-cta-title   { font-size: 1.7rem; }
  .pad-cta-sub     { font-size: 0.92rem; }
  .pad-others { padding: 72px 0; }

  /* ── FAQ ── */
  .faq-section { padding: 72px 0; }
  .accordion-button { font-size: 0.92rem; padding: 1.1rem 1.25rem; }
  .accordion-body   { font-size: 0.88rem; padding: 1rem 1.25rem; }

  /* ── Court Fee ── */
  .cf-section   { padding: 72px 0; }
  .cf-filters   { flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
  .cf-filter-btn { font-size: 0.8rem; padding: 7px 16px; }
  .cf-table th,
  .cf-table td  { font-size: 0.83rem; padding: 11px 14px; }

  /* ── Documents ── */
  .documents-section { padding: 72px 0; }
  .document-card { flex-wrap: wrap; gap: 1rem; padding: 1.25rem; }
  .document-icon { width: 46px; height: 46px; font-size: 1.2rem; }

  /* ── Blog Detail ── */
  .blog-article-content h2 { font-size: 1.2rem; }
  .blog-article-content h3 { font-size: 1.05rem; }
  .blog-article-hero-img   { border-radius: var(--radius-lg); margin-bottom: 2rem; }

  /* ── Footer ── */
  .footer-top { padding: 60px 0 40px; }
  .footer-brand { margin-bottom: 0.5rem; }
  .footer-heading { font-size: 0.9rem; margin-top: 1.5rem; margin-bottom: 1rem; }
  .footer-links li a { font-size: 0.85rem; }
  .footer-links li { margin-bottom: 4px; }
  .footer-contact-item { font-size: 0.84rem; gap: 10px; margin-bottom: 10px; }
  .footer-bottom p { font-size: 0.8rem; }
  .footer-social { gap: 10px; margin-top: 1.25rem; }
  .footer-social a { width: 38px; height: 38px; font-size: 1rem; }

  /* ── Floating buttons ── */
  .floating-whatsapp { bottom: 74px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top       { bottom: 72px; right: 16px; width: 42px; height: 42px; font-size: 1rem; }

  /* ── Breadcrumb ── */
  .breadcrumb { font-size: 0.78rem; flex-wrap: wrap; }
}

/* ── 576px — Mobile Portrait ── */
@media (max-width: 576px) {

  /* ── General ── */
  .section-title { font-size: 1.65rem; }
  .section-label { font-size: 0.68rem; letter-spacing: 2px; }

  /* ── Brand ── */
  .brand-logo img { max-height: 46px; }
  .brand-name     { font-size: 1rem; }
  .brand-sub      { display: none; }

  /* ── Hero ── */
  .hero-content  { padding: 28px 0 36px; }
  .hero-title    { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .hero-badge    { font-size: 0.65rem; padding: 6px 12px; margin-bottom: 1rem; }
  .hero-badge-pill { font-size: 0.7rem; padding: 4px 10px; }

  /* ── Page Banner ── */
  .page-banner { padding: 70px 0 50px; }
  .page-banner-title    { font-size: 1.6rem; }
  .page-banner-subtitle { font-size: 0.87rem; }

  /* ── About ── */
  .about-img-main { height: 230px; }
  .about-section  { padding: 64px 0; }

  /* ── Practice Areas grid ── */
  .pa-card-thumb  { height: 170px; }
  .pa-card-body   { padding: 1.1rem 1.25rem 1.4rem; }

  /* ── Why cards ── */
  .why-section    { padding: 64px 0; }
  .why-card       { padding: 1.5rem; }
  .why-card-icon  { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 1rem; }
  .why-card h5    { font-size: 0.95rem; }
  .why-card p     { font-size: 0.83rem; }

  /* ── Stats ── */
  .stat-number   { font-size: 2.1rem; }
  .stats-section { padding: 56px 0; }

  /* ── Testimonials ── */
  .testimonials-section { padding: 64px 0; }
  .testi-card  { padding: 1.25rem; border-radius: var(--radius-lg); }
  .testi-text  { font-size: 0.83rem; }
  .testi-avatar,
  .testi-avatar-initial { width: 38px; height: 38px; font-size: 0.85rem; }
  .testi-author-info h6 { font-size: 0.83rem; }

  /* ── Blog ── */
  .blog-section  { padding: 64px 0; }
  .blog-card-img { height: 180px; }
  .blog-card-body { padding: 1.1rem; }
  .blog-card-title a { font-size: 0.92rem; }
  .blog-card-excerpt { font-size: 0.81rem; -webkit-line-clamp: 2; }
  .blog-filter-bar  { gap: 6px; margin-bottom: 1.5rem; }
  .blog-filter-pill { font-size: 0.76rem; padding: 6px 13px; }

  /* ── CTA ── */
  .cta-section { padding: 64px 0; }
  .cta-title   { font-size: 1.6rem; }
  .cta-text    { font-size: 0.87rem; }

  /* ── Practice Area Detail ── */
  .pad-sec-heading { font-size: 1.2rem; }
  .pad-cta-title   { font-size: 1.5rem; }
  .pad-banner-actions { gap: 10px; }
  .pad-banner-tag  { font-size: 0.72rem; }

  /* ── Forms ── */
  .form-control,
  .form-select { font-size: 0.9rem; padding: 11px 14px; }
  .btn-submit  { padding: 14px 24px; font-size: 0.92rem; }

  /* ── Court fee ── */
  .cf-section   { padding: 64px 0; }
  .cf-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cf-table { min-width: 480px; }
  .cf-group { padding: 1.5rem; border-radius: var(--radius-md); margin-bottom: 1.5rem; }
  .cf-group-header h5 { font-size: 0.95rem; }
  .cf-notice { padding: 1.1rem 1.25rem; gap: 10px; margin-bottom: 2rem; }
  .cf-notice-body h6 { font-size: 0.87rem; }
  .cf-notice-body p  { font-size: 0.81rem; }

  /* ── Documents ── */
  .documents-section { padding: 64px 0; }
  .document-card { padding: 1rem; }
  .document-info h6 { font-size: 0.88rem; }
  .document-info p  { font-size: 0.8rem; }

  /* ── FAQ ── */
  .faq-section  { padding: 64px 0; }
  .accordion-button { font-size: 0.88rem; padding: 1rem; }
  .accordion-body   { font-size: 0.85rem; padding: 1rem; }

  /* ── Blog Detail ── */
  .blog-article-content h2 { font-size: 1.15rem; }
  .blog-article-content p  { font-size: 0.9rem; line-height: 1.8; }
  .blog-article-hero-img img { max-height: 240px; }

  /* ── Footer ── */
  .footer-top     { padding: 48px 0 32px; }
  .footer-tagline { font-size: 0.95rem; }
  .footer-about   { font-size: 0.83rem; line-height: 1.7; }
  .footer-bottom  { padding: 18px 0; }
  .footer-bottom .row { flex-direction: column; text-align: center; gap: 6px; }

  /* ── Swiper arrows ── */
  .pa-swiper-prev, .pa-swiper-next,
  .testi-swiper-prev, .testi-swiper-next { display: none; }

  /* ── Back to top ── */
  .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 72px; right: 14px; }
}

/* ── 400px — Very small phones ── */
@media (max-width: 400px) {
  .hero-title        { font-size: 1.55rem; }
  .page-banner-title { font-size: 1.35rem; }
  .section-title     { font-size: 1.45rem; }
  .cta-title         { font-size: 1.35rem; }
  .brand-logo img    { max-height: 42px; }
  .pa-card-body h5   { font-size: 0.88rem; }
  .stat-number       { font-size: 1.85rem; }
}

/* ============================================================
   MOBILE BOTTOM ACTION BAR
   Replaces floating WhatsApp + Call buttons on mobile
   ============================================================ */

.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  height: 60px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.mobile-action-btn:active {
  filter: brightness(0.9);
}

.mobile-action-btn i {
  font-size: 1.15rem;
}

.mobile-action-call {
  background: var(--accent);
  color: var(--primary);
}

.mobile-action-whatsapp {
  background: #25D366;
  color: #fff;
}

/* Push page content up so it doesn't hide behind the bar */
@media (max-width: 767px) {
  body { padding-bottom: 60px; }

  /* Back-to-top sits above the action bar */
  .back-to-top { bottom: 70px; right: 14px; }

  /* Hide old floating buttons entirely on mobile */
  .floating-whatsapp,
  .floating-call { display: none !important; }
}

/* ============================================================
   HERO SECTION — MOBILE WOW FACTOR
   ============================================================ */

/* ── Mobile stat pills ── */
.hero-mobile-stats {
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 12px 0;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.hero-mobile-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-mobile-stat-num {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-mobile-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}

.hero-mobile-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Mobile advocate strip ── */
.hero-mobile-advocate {
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  margin-top: 1.25rem;
  backdrop-filter: blur(10px);
}

.hero-mobile-advocate-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-mobile-advocate-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-mobile-advocate-name {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-mobile-advocate-role {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Mobile hero overall layout ── */
@media (max-width: 991px) {
  .hero-section {
    min-height: unset;
    display: flex;
    align-items: center;
  }
  .hero-content { padding: 60px 0 40px; }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: unset;
    padding: 0;
  }
  .hero-content {
    padding: 28px 0 32px;
    text-align: center;
  }

  /* Badge centered */
  .hero-badge {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    font-size: 0.68rem;
    padding: 6px 14px;
  }

  /* Title */
  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: 0.85rem;
  }
  .hero-title br { display: none; }

  .hero-title .highlight::after {
    height: 3px;
    bottom: -2px;
  }

  /* Subtitle */
  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Stats */
  .hero-mobile-stats {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
  }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  /* Advocate strip */
  .hero-mobile-advocate {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 20px 0 28px;
  }
  .hero-title { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .hero-subtitle { font-size: 0.88rem; }
  .hero-mobile-stat-num { font-size: 1.25rem; }
  .hero-mobile-stat-label { font-size: 0.6rem; }
  .hero-mobile-advocate-name { font-size: 0.85rem; }
  .hero-mobile-advocate-role { font-size: 0.65rem; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline { padding: 12px 18px; font-size: 0.9rem; }
}

/* ============================================================
   MOBILE HORIZONTAL PADDING FIX
   ============================================================ */

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 28px;
    padding-right: 28px;
  }

  .row {
    --bs-gutter-x: 1.25rem;
  }
}

@media (max-width: 576px) {
  .container,
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .row {
    --bs-gutter-x: 1rem;
  }
}

@media (max-width: 400px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .row {
    --bs-gutter-x: 0.875rem;
  }
}
