/* ==========================================================================
   GUERRA ADVOCACIA - SYSTEM DE DESIGN DE LUXO (PADRÃO AGÊNCIA DE PUBLICIDADE)
   Cores Oficiais: Verde Magistral (#0A221B), Ouro Nobre (#C5A046), Marfim (#F7F8FA)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --color-primary: #0A221B;
  --color-primary-dark: #04100C;
  --color-primary-light: #143A2F;
  
  --color-accent: #C5A046;
  --color-accent-hover: #D8B75B;
  --color-accent-glow: rgba(197, 160, 70, 0.25);
  
  --color-bg-light: #F7F8FA;
  --color-bg-white: #FFFFFF;
  --color-surface-card: #FFFFFF;
  
  --color-text-dark: #0A221B;
  --color-text-body: #2D3748;
  --color-text-muted: #64748B;
  --color-text-light: #F1F5F9;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 12px 35px -10px rgba(10, 34, 27, 0.08);
  --shadow-gold: 0 10px 25px -5px rgba(197, 160, 70, 0.3);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.05);
  
  --radius-lg: 16px;
  --radius-md: 10px;
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 110px 0;
}

/* Tipografia Luxury */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.section-tagline {
  font-family: var(--font-body);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--color-primary);
  margin-bottom: 18px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 720px;
  font-weight: 300;
}

/* TOP BAR INSTITUCIONAL */
.top-bar {
  background: var(--color-primary-dark);
  color: #94A3B8;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info span {
  margin-right: 20px;
}

/* HEADER & NAVBAR MULTI-PÁGINAS */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-primary);
  padding: 16px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(197, 160, 70, 0.18);
  transition: all 0.3s var(--transition-smooth);
}

.site-header.scrolled {
  padding: 11px 0;
  background: rgba(10, 34, 27, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 62px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.site-header.scrolled .brand-logo img {
  height: 48px;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

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

.nav-link {
  text-decoration: none;
  color: #E2E8F0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s var(--transition-smooth);
}

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

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

/* BOTÕES EXECUTIVE WITH SHIMMER */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #A3802F 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(197, 160, 70, 0.45);
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-accent) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: rgba(197, 160, 70, 0.12);
  transform: translateY(-2px);
}

/* MARCA D'ÁGUA DE FUNDO ESTRUTURADA */
.brand-watermark-bg {
  position: relative;
  overflow: hidden;
}

.brand-watermark-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  max-width: 75vw;
  background-image: url('../assets/simbolo_g_oficial.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

/* HERO SECTION - FOTO CONCEITO COMO BACKGROUND COM FADE ESQUERDA */
.hero-section {
  position: relative;
  padding: 130px 0 130px 0;
  background-color: var(--color-primary-dark);
  overflow: hidden;
  color: #FFFFFF;
  min-height: 520px;
}

/* Foto conceito posicionada à direita com fade para a esquerda */
.hero-concept-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-concept-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Máscara de gradiente: 100% opaco na esquerda, transparente na direita */
.hero-concept-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    var(--color-primary-dark) 0%, 
    var(--color-primary-dark) 5%,
    rgba(10, 34, 27, 0.92) 15%, 
    rgba(10, 34, 27, 0.65) 35%, 
    rgba(10, 34, 27, 0.3) 60%, 
    rgba(10, 34, 27, 0.08) 85%, 
    transparent 100%
  );
  pointer-events: none;
}

/* Vinheta escura no topo e na base da imagem */
.hero-concept-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(4, 16, 12, 0.5) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(4, 16, 12, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(197, 160, 70, 0.12);
  border: 1px solid rgba(197, 160, 70, 0.4);
  color: var(--color-accent);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 3.2rem);
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #CBD5E1;
  font-weight: 300;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* SEÇÃO DE AUTORIDADE (EDITORIAL LIGHT) */
.authority-section {
  background: var(--color-bg-white);
  position: relative;
}

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

.authority-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  aspect-ratio: 4 / 5;
  background-color: var(--color-primary-dark);
}

.authority-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.authority-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 34, 27, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 70, 0.3);
  padding: 18px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
}

.floating-badge-title {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.quote-box {
  background: rgba(10, 34, 27, 0.03);
  border-left: 3px solid var(--color-accent);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
  font-style: italic;
}

/* CARDS DE FORMAÇÃO EM 100% DA LARGURA */
.credentials-section-wrapper {
  margin-top: 75px;
  padding-top: 60px;
  border-top: 1px solid rgba(10, 34, 27, 0.08);
}

.credentials-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.credential-card-luxury {
  background: var(--color-bg-white);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 34, 27, 0.06);
  border-top: 4px solid var(--color-accent);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.credential-card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--color-primary);
}

.credential-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 70, 0.12);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 70, 0.25);
}

.credential-card-luxury .credential-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.credential-card-luxury .credential-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

/* FAIXA PARALLAX CONCEITUAL */
.parallax-section {
  position: relative;
  padding: 120px 0;
  background-image: url('../assets/hero_agro_background.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  color: #FFFFFF;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 16, 12, 0.88) 0%, rgba(10, 34, 27, 0.92) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.parallax-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, 2.1rem);
  line-height: 1.35;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 20px;
}

.parallax-tagline {
  font-size: 0.95rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

/* ÁREAS DE ATUAÇÃO - 4 CARDS EM 1 LINHA (DESKTOP) */
.practices-section {
  background: var(--color-bg-light);
  position: relative;
}

.practices-header {
  text-align: center;
  margin-bottom: 55px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.practice-card-3d {
  background: var(--color-bg-white);
  border: 1px solid rgba(10, 34, 27, 0.08);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.practice-card-3d:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 34, 27, 0.12);
  border-top-color: var(--color-primary);
}

.practice-title {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10, 34, 27, 0.08);
}

.practice-list {
  list-style: none;
  margin-bottom: 22px;
  flex-grow: 1;
}

.practice-list li {
  color: var(--color-text-body);
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 14px;
}

.practice-list li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.card-cta-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.card-cta-link:hover {
  color: var(--color-primary);
}

/* HISTÓRIA E VALORES */
.history-section {
  background: var(--color-bg-white);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.pillar-card {
  background: var(--color-bg-light);
  padding: 35px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  border-top: 3px solid var(--color-primary);
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--color-accent);
}

.pillar-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

/* CONTATO & MAPA (LIGHT BACKGROUND) */
.contact-section {
  background: var(--color-bg-white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 35px;
}

.contact-text-wrap h4 {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-text-wrap p {
  color: var(--color-text-body);
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10, 34, 27, 0.15);
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER PROFISSIONAL MULTI-COLUNA */
.site-footer {
  background: var(--color-primary-dark);
  color: #94A3B8;
  font-size: 0.88rem;
  border-top: 1px solid rgba(197, 160, 70, 0.12);
}

.footer-main {
  padding: 60px 0 40px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  margin-bottom: 14px;
}

.footer-contact-item strong {
  color: #CBD5E1;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 0.85rem;
}

.footer-contact-item span {
  color: #94A3B8;
  font-size: 0.88rem;
}

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

.footer-bottom p {
  color: #475569;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .footer-brand img { height: 42px; }
  .footer-bottom { justify-content: center; text-align: center; padding: 24px 0; }
  .section-padding { padding: 60px 0; }
}

@media (max-width: 650px) {
  .btn-gold, .btn-outline-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s var(--transition-smooth);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CUSTOM HEROS */
.custom-hero-advogado,
.custom-hero-atuacao {
  min-height: 40vh;
  padding-top: 90px;
  padding-bottom: 60px;
}


/* ==========================================
   MOBILE MENU & RESPONSIVITY
   ========================================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 12px;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 34, 27, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.mobile-only-cta {
  display: none;
}

/* RESPONSIVITY */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-concept-bg { width: 70%; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .hero-concept-bg { width: 80%; }
  .authority-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .history-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .desktop-only-btn,
  .site-header > .container > .nav-wrapper > .btn-gold { 
      display: none !important; 
  }
  
  .mobile-menu-toggle { display: block; }
  
  .site-header .brand-logo img,
  .site-header.scrolled .brand-logo img { height: 44px; }
  
  .nav-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #0A221B;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 90px 25px 40px;
    display: flex;
    flex-direction: column;
  }
  
  .nav-menu-container.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    display: flex !important;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu .nav-link {
    font-size: 1.15rem;
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #F7F8FA;
  }
  
  .nav-menu .nav-link::after {
    display: none;
  }
  
  .mobile-only-cta {
    display: block;
    margin-top: 2rem;
    width: 100%;
  }
  
  .mobile-only-cta .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
    display: flex !important;
  }
}

@media (max-width: 650px) {
  html, body {
    overflow-x: hidden;
  }
  
  .practice-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.85rem, 6vw, 2.2rem); }
  .hero-subtitle { font-size: 0.98rem; }
  .hero-concept-bg { width: 100%; opacity: 0.25; }
  .hero-content-wrapper { max-width: 100%; }
  .hero-section { padding: 90px 0 90px 0; min-height: auto; }
  .credentials-list { grid-template-columns: 1fr; }
  .section-padding { padding: 50px 0; }
  .top-bar { display: none; }
  
  .section-heading { font-size: 1.6rem !important; word-break: break-word; }
  
  .parallax-quote { font-size: 1.5rem !important; }
  
  .quote-box {
    font-size: 1.05rem;
    padding: 18px 20px;
    margin: 20px 0;
  }
  
  .map-container {
    min-height: 300px !important;
  }
  
  .btn-gold, .btn-outline-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .authority-floating-badge {
    padding: 12px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  
  .floating-badge-title {
    font-size: 0.9rem;
  }
  
  .authority-floating-badge p {
    font-size: 0.75rem !important;
  }
}
