/* ==========================================================================
   Fouad Legal Consultancy - Modern Luxury Legal Theme (Pure Laravel)
   ========================================================================== */

:root {
  --primary-navy: #0b1528;
  --navy-dark: #070d19;
  --navy-light: #152238;
  --navy-card: #111d33;
  --gold-primary: #c5a880;
  --gold-light: #dfc9a8;
  --gold-dark: #a88b63;
  --gold-glow: rgba(197, 168, 128, 0.25);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(11, 21, 40, 0.08);
  --shadow-lg: 0 10px 30px rgba(11, 21, 40, 0.12);
  --shadow-gold: 0 8px 25px rgba(197, 168, 128, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
  color: #334155;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.4);
  color: #ffffff;
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--primary-navy);
  color: #ffffff;
}

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

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Topbar (Light Elegant) */
.topbar {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-info span, .topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #334155;
  font-weight: 500;
}

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

.topbar-info i {
  color: var(--gold-dark);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-social a {
  color: #64748b;
  font-size: 0.95rem;
}

.topbar-social a:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

/* Header & Navbar (Light Pristine White) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.site-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #0f172a;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 60%, #172642 100%);
  color: #ffffff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 85% 30%, rgba(197, 168, 128, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--gold-primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(11, 21, 40, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  padding: 1rem 1.4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.floating-badge i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.floating-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.floating-badge span {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* Stats Counter Bar */
.stats-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.6rem;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Practice Areas Grid */
.practice-section {
  padding: 5.5rem 0;
  background: var(--bg-light);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.practice-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
  border-radius: 12px 12px 0 0;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.4);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-icon {
  width: 60px;
  height: 60px;
  background: rgba(197, 168, 128, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.practice-icon img {
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.practice-card:hover .practice-icon {
  background: var(--gold-primary);
  transform: scale(1.05);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.4);
}

.case-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.case-card:hover .case-card-img img {
  transform: scale(1.05);
}

.case-card-body {
  padding: 1.5rem;
}

.case-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}

.case-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.testimonial-section {
  padding: 5rem 0;
  background: var(--navy-dark);
  color: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.testimonial-card p {
  color: #cbd5e1;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: #94a3b8;
}

.practice-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--navy-dark);
}

.practice-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.practice-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.practice-link:hover {
  color: var(--navy-dark);
  gap: 0.7rem;
}

/* About / Philosophy Section */
.about-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

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

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

.about-img-main {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-experience-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience-card strong {
  font-size: 2.2rem;
  color: var(--gold-primary);
  font-family: var(--font-serif);
  display: block;
}

.about-experience-card span {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.feature-list {
  list-style: none;
  margin: 1.75rem 0 2.25rem;
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-item i {
  color: var(--gold-dark);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.feature-item div strong {
  display: block;
  color: var(--navy-dark);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.feature-item div p {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
}

/* Consultation Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Page Header (Inner Pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  padding: 4.5rem 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.page-hero h1 {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* FAQs Accordion */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--gold-dark);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  padding: 0.5rem 1.5rem 1.5rem;
  max-height: 400px;
}

.faq-answer p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-card {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.contact-card h3 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item i {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.contact-info-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-info-item span, .contact-info-item a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--gold-primary);
}

/* Form Styles */
.form-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: var(--transition);
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

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

.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Footer (Light Luxury Aesthetic) */
.site-footer {
  background: #f8fafc;
  color: #475569;
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--navy-dark);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-dark);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  font-size: 0.92rem;
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  color: #475569;
}

.footer-contact a {
  color: #334155;
  font-weight: 500;
}

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

.footer-contact i {
  color: var(--gold-dark);
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* Mobile Navigation Drawer & Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 21, 40, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.nav-menu-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.nav-close-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-close-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
}

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}

.nav-menu-footer {
  display: none;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

/* Mobile Sticky Bottom Quick Action Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1030;
  justify-content: space-around;
  align-items: center;
  padding: 0.25rem 0.5rem;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.4rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-action-btn i {
  font-size: 1.15rem;
}

.mobile-action-btn.mobile-call i {
  color: var(--navy-dark);
}

.mobile-action-btn.mobile-whatsapp i {
  color: #25D366;
}

.mobile-action-btn.mobile-consult i {
  color: var(--gold-dark);
}

.mobile-action-btn:hover, .mobile-action-btn:active {
  background: #f1f5f9;
  color: var(--gold-dark);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-image-card img {
    height: 340px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* clearance for sticky action bar */
  }

  .mobile-action-bar {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--navy-dark);
  }

  .nav-cta .btn-gold, .nav-cta .btn-whatsapp {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu-header {
    display: flex;
  }

  .nav-links-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-links-list li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #1e293b;
    background: transparent;
  }

  .nav-link i {
    width: 20px;
    color: var(--gold-dark);
    font-size: 1.05rem;
  }

  .nav-link.active, .nav-link:hover {
    background: #f8fafc;
    color: var(--gold-dark);
  }

  .nav-link::after {
    display: none;
  }

  .nav-menu-footer {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-badge {
    position: static;
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }

  .about-experience-card {
    position: static;
    margin-top: 1rem;
  }

  .about-img-main img {
    height: 300px;
  }

  .contact-card, .form-box {
    padding: 1.75rem;
  }

  .form-control {
    font-size: 16px; /* prevent iOS zoom */
    min-height: 46px;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
}
