/* ========================================
   SERVICES PAGE - COMPLETE STYLES
   Extends main site architecture with service-specific components
   Mobile-First · Responsive · Professional
   ======================================== */

/* ----- CSS VARIABLES (Consistent with main site) ----- */
:root {
  --navy: #0B1F3A;
  --navy-dark: #071529;
  --navy-light: #132a4a;
  --gold: #C9992B;
  --gold-dark: #B8860B;
  --gold-light: #E8B84B;
  --gold-pale: #FDF5E4;
  --gold-soft: #FFF8ED;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --text-dark: #0B1F3A;
  --text-mid: #3D5068;
  --text-muted: #6B7C93;
  --text-light: #95A5B9;
  --border: rgba(201, 153, 43, 0.2);
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 12px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.15);
  --shadow-xl: 0 30px 80px rgba(11, 31, 58, 0.2);
  --shadow-gold: 0 8px 24px rgba(201, 153, 43, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
  background: var(--gold-pale);
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ----- UTILITIES ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 153, 43, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* ----- WHATSAPP & CALL FLOATS ----- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-btn i {
  font-size: 28px;
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.call-float {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 153, 43, 0.4);
  transition: var(--transition);
}

.call-float i {
  font-size: 20px;
  color: white;
}

.call-float:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ----- STICKY CTA ----- */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  display: flex;
  gap: 0.75rem;
}

/* ----- BACK TO TOP ----- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
  opacity: 0;
}

.back-to-top.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateX(-50%) translateY(-3px);
}

.back-to-top i {
  font-size: 20px;
  color: white;
}

/* ----- NOTIFICATION ----- */
.notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  font-size: 0.88rem;
  color: var(--text-dark);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: #22C55E;
}

.notification.error {
  border-left-color: #EF4444;
}

/* ----- CONTACT BAR ----- */
.contact-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201, 153, 43, 0.15);
  padding: 0.5rem 0;
}

.contact-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-info-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info-item i {
  font-size: 12px;
  color: var(--gold);
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.6);
}

.contact-info-item a:hover {
  color: var(--gold-light);
}

.contact-bar-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.contact-social {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}

.contact-social:hover {
  background: var(--gold);
  color: white;
}

/* ----- NAVBAR ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7, 21, 41, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: 0.6rem 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.2;
}

.logo-text .firm-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.logo-text .since {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.1rem;
  flex-wrap: nowrap;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold-light);
  background: rgba(201, 153, 43, 0.12);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text-dark);
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--gold-pale);
  color: var(--gold);
  transform: translateX(4px);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.83rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- HERO SECTION ----- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.05;
  animation: float 20s infinite ease-in-out;
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -50px;
  opacity: 0.03;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(15px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 153, 43, 0.12);
  border: 1px solid rgba(201, 153, 43, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge span {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.7s ease 0.1s both;
  line-height: 1.2;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(201, 153, 43, 0.25);
  z-index: -1;
  border-radius: 3px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
  display: block;
}

.hero-right {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-lawyer-profile {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 153, 43, 0.25);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
}

.lawyer-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.lawyer-photo-fallback {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 153, 43, 0.12), 0 16px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 4rem;
  color: var(--gold);
}

.lawyer-verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  background: #25D366;
  border-radius: 50%;
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.lawyer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.lawyer-title {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lawyer-since {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.lawyer-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.lawyer-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lqs-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(201, 153, 43, 0.12);
}

.lqs-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.lqs-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
  display: block;
}

.lawyer-cta-btns {
  display: flex;
  gap: 0.6rem;
}

.lawyer-cta-btns .btn {
  flex: 1;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  justify-content: center;
}

/* ----- TRUST BADGES ----- */
.trust-badge-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201, 153, 43, 0.2);
  border-bottom: 1px solid rgba(201, 153, 43, 0.2);
}

.trust-badge-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}

.trust-badge-item {
  flex: 1;
  min-width: 130px;
  padding: 0.75rem;
}

.trust-badge-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.trust-badge-item h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.trust-badge-item p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

/* ----- TICKER BAR ----- */
.ticker-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-dark);
  padding: 0 1rem;
}

.ticker-sep {
  color: var(--navy-dark);
  opacity: 0.4;
  font-size: 0.9rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- SERVICES OVERVIEW SECTION ----- */
.services-overview {
  padding: 5rem 0;
  background: var(--white);
}

.services-grid-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card-large {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-slow);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 0;
}

.service-card-large:hover::before {
  opacity: 1;
}

.service-card-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-pale);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card-icon i {
  font-size: 40px;
  color: var(--gold);
}

.service-card-large:hover .service-card-icon {
  background: var(--gold);
}

.service-card-large:hover .service-card-icon i {
  color: white;
}

.service-card-content {
  position: relative;
  z-index: 1;
}

.service-card-content h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-features span {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.service-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.service-stats .stat {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.service-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}

.service-card-large:hover .service-link {
  transform: translateX(5px);
}

/* ----- ADDITIONAL SERVICES SECTION ----- */
.additional-services {
  padding: 5rem 0;
  background: var(--cream);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.additional-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.additional-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.additional-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.additional-icon i {
  font-size: 24px;
  color: var(--gold);
}

.additional-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.additional-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- SERVICE STATS SECTION ----- */
.service-stats-section {
  padding: 3rem 0;
  background: var(--white);
}

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ----- WHY SECTION ----- */
.why-section {
  background: var(--navy);
  padding: 5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.why-point:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 153, 43, 0.2);
}

.why-point-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 153, 43, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point-icon i {
  font-size: 20px;
  color: var(--gold);
}

.why-point h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.why-point p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.why-stats-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 153, 43, 0.2);
  border-radius: 24px;
  padding: 2rem;
}

.why-lawyer-photo-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.why-lawyer-fallback {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 153, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 3.5rem;
  color: var(--gold);
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}

.why-stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(201, 153, 43, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(201, 153, 43, 0.15);
}

.why-stat-item .num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}

.why-stat-item .label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
  display: block;
}

.quote-block {
  padding: 1.1rem;
  background: rgba(201, 153, 43, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(201, 153, 43, 0.18);
  border-left: 3px solid var(--gold);
  margin-top: 1.25rem;
}

.quote-block p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  line-height: 1.7;
}

.quote-block cite {
  font-size: 0.76rem;
  color: var(--gold);
  margin-top: 0.4rem;
  display: block;
  font-weight: 500;
  font-style: normal;
}

.why-cta-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.why-cta-btns .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
}

/* ----- PROCESS SECTION ----- */
.process-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--white);
}

.timeline-step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.timeline-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- INDUSTRIES SECTION ----- */
.industries-section {
  padding: 5rem 0;
  background: var(--cream);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.industry-item:hover {
  background: var(--gold-pale);
  border-color: var(--border);
  transform: translateY(-3px);
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.industry-item h4 {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}

/* ----- FAQ SECTION ----- */
.faq-section {
  background: var(--white);
  padding: 5rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 0.75rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ----- CTA SECTION ----- */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.cta-section h2 {
  color: var(--white);
  position: relative;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ----- CONTACT SECTION ----- */
.contact-section {
  background: var(--white);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 153, 43, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  font-size: 20px;
  color: var(--gold);
}

.contact-item h4 {
  font-size: 0.9rem;
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--gold-light);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--off-white);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 153, 43, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ----- NEWSLETTER SECTION ----- */
.newsletter-section {
  background: var(--gold-pale);
  padding: 3rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  color: var(--navy);
  font-size: 1.3rem;
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.8rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  min-width: 250px;
  background: var(--white);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 153, 43, 0.1);
}

/* ----- FOOTER ----- */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201, 153, 43, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}

.social-btn:hover {
  background: var(--gold);
  color: white;
}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 153, 43, 0.2);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
  display: block;
  padding: 0.15rem 0;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  width: 14px;
  font-size: 14px;
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom-links a,
.footer-bottom-links span {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ----- ANIMATIONS ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ----- RESPONSIVE DESIGN ----- */

/* Tablet - 1200px */
@media (max-width: 1200px) {
  .additional-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
}

/* Tablet - 900px */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-right {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .service-card-large {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card-icon {
    margin: 0 auto;
  }

  .service-features {
    justify-content: center;
  }

  .service-stats {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 5.5rem 0 3rem;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat .num {
    font-size: 1.7rem;
  }

  .additional-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-highlight {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 1.25rem;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form input {
    min-width: unset;
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .contact-bar {
    display: none;
  }

  .sticky-cta {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .hero {
    padding: 5rem 0 2.5rem;
  }

  .hero-badge span {
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
  }
  .hero-stat .num {
    font-size: 1.4rem;
  }

  .trust-badge-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .additional-grid {
    grid-template-columns: 1fr;
  }

  .stats-highlight {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }
  .whatsapp-btn {
    width: 48px;
    height: 48px;
  }
  .call-float {
    width: 40px;
    height: 40px;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .faq-question {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .logo-text .since {
    display: none;
  }

  .service-card-large {
    padding: 1.5rem;
  }

  .service-features span {
    font-size: 0.7rem;
  }
}

/* Very Small - 360px */
@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }
  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-float,
  .sticky-cta,
  .ticker-bar,
  .footer,
  .cta-section,
  .back-to-top,
  .contact-bar {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    z-index: 1001;
    padding: 5.5rem 1.5rem 2rem;
    overflow-y: auto;
    gap: 0;
  }
  .nav-menu.open > li > a {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
  }
  .nav-menu.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.5rem;
    margin: 0.25rem 0;
  }
  .nav-menu.open .dropdown a {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
  }
}