/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-light: #223060;
  --gold: #c9a84c;
  --gold-light: #e0c06e;
  --gold-dark: #a8892e;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --light-gray: #e8e4d9;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --text-light: #888888;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  line-height: 1.3;
}

/* ===== DISCLAIMER MODAL ===== */
#disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 35, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

#disclaimer-overlay.hidden { display: none; }

.disclaimer-box {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  border-radius: 4px;
  overflow-y: auto;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: slideUp 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.disclaimer-header {
  background: var(--navy);
  padding: 24px 32px;
  text-align: center;
}

.disclaimer-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}

.disclaimer-header h2 {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.disclaimer-body {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
}

.disclaimer-body p {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.7;
  text-align: justify;
}

.disclaimer-body p strong {
  color: var(--navy);
}

.disclaimer-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 18px 0;
}

.disclaimer-footer {
  padding: 0 32px 28px;
  text-align: center;
}

.btn-agree {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 48px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-agree:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a:hover { color: var(--gold); }

.topbar-right .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.topbar-right .social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-brand-text .brand-name {
  font-size: 1rem;
  font-weight: bold;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-brand-text .brand-sub {
  font-size: 0.6rem;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: normal;
  max-width: 300px;
  line-height: 1.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 6px 11px;
  font-size: 0.78rem;
  font-family: 'Georgia', serif;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.nav-consult {
  background: var(--navy);
  color: var(--gold) !important;
  border-radius: 2px;
  padding: 7px 14px !important;
  border: none !important;
  margin-left: 6px;
  white-space: nowrap;
}

.nav-consult:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-legal.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-content h1 span {
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-style: italic;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: bold;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 13px 36px;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy);
  padding: 28px 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== SECTION GENERIC ===== */
section { padding: 80px 0; }

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

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 24px;
}

.section-divider.centered { margin: 0 auto 24px; }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 560px;
  line-height: 1.8;
}

.section-subtitle.centered {
  text-align: center;
  margin: 0 auto;
}

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

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

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

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-gray);
  margin-bottom: 18px;
  line-height: 1.9;
  text-align: justify;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.highlight-text span {
  font-size: 0.82rem;
  color: var(--text-gray);
}

.btn-navy {
  background: var(--navy);
  color: var(--gold);
  padding: 13px 34px;
  font-size: 0.88rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: var(--transition);
}

.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== PRACTICE AREAS ===== */
.practice-areas { background: var(--white); }

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

.practice-card {
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  padding: 32px 28px;
  transition: var(--transition);
  background: var(--white);
  cursor: default;
}

.practice-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-top-color: var(--navy);
}

.practice-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.practice-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.practice-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.6);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-style: italic;
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--navy); padding: 60px 0; }

.testimonial-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-inner .section-tag { color: var(--gold-light); }

.quote-icon {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

blockquote {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview { background: var(--white); }

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

.blog-card {
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.blog-card-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.8;
}

.blog-meta {
  display: flex;
  gap: 12px;
  padding: 16px 20px 0;
}

.blog-tag {
  font-size: 0.72rem;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.blog-card-body { padding: 12px 20px 20px; }

.blog-card-body h3 {
  font-size: 0.97rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.read-more {
  font-size: 0.82rem;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  display: inline-block;
}

.read-more:hover { border-bottom-color: var(--gold-dark); }

.view-all-wrap { text-align: center; margin-top: 40px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-light));
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-style: italic;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 40px;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: bold;
  display: inline-block;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 13px 40px;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: var(--transition);
}

.btn-white-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: #0f1726;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: invert(1) sepia(1) saturate(1.5) hue-rotate(5deg) opacity(0.9);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col ul li a::before {
  content: '› ';
  color: var(--gold);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

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

.footer-bottom p, .footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

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

.about-full-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.about-sidebar { position: sticky; top: 100px; }

.advocate-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  overflow: hidden;
}

.advocate-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}

.advocate-info { padding: 24px; }

.advocate-info h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.advocate-info .designation {
  color: var(--gold-dark);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.advocate-detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.advocate-detail .label {
  color: var(--navy);
  font-weight: bold;
  min-width: 80px;
  font-size: 0.82rem;
}

.about-content h2 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
}

.about-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
}

.court-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.court-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.court-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.court-photo:hover img { transform: scale(1.05); }

.court-photo-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,39,68,0.85));
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 20px 12px 10px;
  font-style: italic;
}

/* ===== PRACTICE PAGE ===== */
.practice-full { background: var(--white); }

.practice-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.practice-full-card {
  border: 1px solid var(--light-gray);
  padding: 36px 32px;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.practice-full-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.practice-full-card .practice-icon { font-size: 2.4rem; margin-bottom: 16px; }
.practice-full-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
.practice-full-card p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 16px; }
.practice-full-card ul li {
  font-size: 0.85rem;
  color: var(--text-gray);
  padding: 4px 0 4px 16px;
  position: relative;
}
.practice-full-card ul li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 6px;
}

/* ===== BLOG PAGE ===== */
.blog-full { background: var(--white); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  margin-top: 48px;
}

.blog-posts {}

.blog-post-card {
  border: 1px solid var(--light-gray);
  margin-bottom: 32px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-post-card:hover {
  box-shadow: var(--shadow);
}

.blog-post-img {
  height: 200px;
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.blog-post-body { padding: 28px 32px; }

.blog-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.blog-post-body h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-post-body p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* FAQ Section */
.faq-section { background: var(--off-white); padding: 64px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--gold);
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 12px;
}

.faq-question h4 {
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* Blog Sidebar */
.blog-sidebar {}

.sidebar-widget {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 24px;
  margin-bottom: 28px;
}

.sidebar-widget h3 {
  font-size: 0.88rem;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-categories li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
  color: var(--text-gray);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.sidebar-categories li:hover { color: var(--gold-dark); }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories .count {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 10px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {}

.contact-info p {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
  text-align: justify;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  padding: 36px 32px;
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form .form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.disclaimer-note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: #fff8e6;
  border-left: 3px solid var(--gold);
}

.map-section { background: var(--off-white); padding: 0; }

.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  z-index: 9000;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: 'Georgia', serif;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; border-top: 1px solid var(--light-gray); padding: 12px 0; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; border-bottom: 1px solid var(--light-gray); text-align: left; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { display: none; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .practice-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .court-photos { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .practice-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .disclaimer-body, .disclaimer-footer { padding-left: 16px; padding-right: 16px; }
  .disclaimer-header { padding: 16px 20px; }
  .disclaimer-header img { width: 40px; height: 40px; margin-bottom: 8px; }
  .disclaimer-header h2 { font-size: 1.1rem; }
  .disclaimer-body p { font-size: 0.82rem; margin-bottom: 10px; }
  .btn-agree { padding: 12px 36px; font-size: 0.88rem; }
  .disclaimer-footer { padding-bottom: 20px; }
}
