/*
Theme Name:        Legal Keys Pro
Theme URI:         https://legalkeys.org
Description:       Professional WordPress theme for Legal Keys - Advocate Shweta Gattewar. White background, 3D animated, fully customizable. No paid plugins required.
Version:           2.0.0
Author:            Legal Keys
Author URI:        https://legalkeys.org
License:           GPL-2.0+
Text Domain:       legal-keys-pro
Requires at least: 6.0
Requires PHP:      7.4
*/

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  --clr-gold:        #C9973A;
  --clr-gold-light:  #E8B96A;
  --clr-gold-pale:   #FDF6E9;
  --clr-navy:        #0D1B2A;
  --clr-navy-mid:    #1E3A5F;
  --clr-white:       #FFFFFF;
  --clr-offwhite:    #F9FAFB;
  --clr-gray-100:    #F3F4F6;
  --clr-gray-200:    #E5E7EB;
  --clr-gray-400:    #9CA3AF;
  --clr-gray-600:    #4B5563;
  --clr-gray-800:    #1F2937;
  --clr-whatsapp:    #25D366;

  --font-heading:    'Playfair Display', Georgia, serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm:       0 2px 8px rgba(13,27,42,.08);
  --shadow-md:       0 4px 20px rgba(13,27,42,.12);
  --shadow-lg:       0 8px 40px rgba(13,27,42,.16);
  --shadow-gold:     0 8px 32px rgba(201,151,58,.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  30px;

  --nav-h: 76px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--clr-gray-800);
  background: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-navy); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--clr-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.section { padding: 80px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 120px 0; }
.bg-white   { background: var(--clr-white); }
.bg-offwhite { background: var(--clr-offwhite); }
.bg-navy    { background: var(--clr-navy); }
.bg-gold-pale { background: var(--clr-gold-pale); }
.text-center { text-align: center; }
.text-white  { color: var(--clr-white) !important; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--clr-gray-600);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 56px; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 0.9375rem; font-weight: 600; line-height: 1;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--clr-gold); color: var(--clr-navy);
  border-color: var(--clr-gold);
}
.btn-primary:hover {
  background: var(--clr-gold-light); border-color: var(--clr-gold-light);
  color: var(--clr-navy); transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent; color: var(--clr-navy);
  border-color: var(--clr-navy);
}
.btn-outline-white {
  background: transparent; color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--clr-white); border-color: var(--clr-white);
}
.btn-whatsapp {
  background: var(--clr-whatsapp); color: #fff; border-color: var(--clr-whatsapp);
}
.btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.0625rem; }

/* Screen reader */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =====================================================
   SKIP LINK
   ===================================================== */
.skip-link {
  position: absolute; left: -999em;
  background: var(--clr-gold); color: var(--clr-navy);
  padding: 12px 24px; font-weight: 700; z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; top: 0; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13,27,42,0.08);
  transition: all var(--transition);
}
.site-header.scrolled {
  padding: 0;
  box-shadow: 0 4px 30px rgba(13,27,42,0.12);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}
.site-logo img { height: 50px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--clr-navy);
  display: flex; align-items: center; gap: 8px;
}
.site-logo .logo-text span { color: var(--clr-gold); }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  padding: 8px 14px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--clr-gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.primary-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--clr-gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.primary-nav a:hover,
.primary-nav a.current-menu-item,
.primary-nav .current-menu-item > a {
  color: var(--clr-gold);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { transform: scaleX(1); }

/* Dropdown */
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition);
  padding: 8px; z-index: 100;
}
.primary-nav .menu-item-has-children:hover .sub-menu,
.primary-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .sub-menu a {
  display: block; padding: 10px 14px;
  font-size: 0.875rem; border-radius: var(--radius-sm);
  white-space: nowrap;
}
.primary-nav .sub-menu a::after { display: none; }
.primary-nav .sub-menu a:hover {
  background: var(--clr-gold-pale); color: var(--clr-navy);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: 0.875rem; font-weight: 600;
  color: var(--clr-navy); display: flex; align-items: center; gap: 6px;
}
.header-phone:hover { color: var(--clr-gold); }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: space-around;
  width: 40px; height: 40px;
  background: none; border: none; padding: 8px; cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--clr-navy); border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(13,27,42,0.95);
  z-index: 999; padding-top: var(--nav-h);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { padding: 32px 24px; }
.mobile-menu a {
  display: block; color: var(--clr-white);
  font-size: 1.25rem; font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--clr-gold); }
.mobile-menu .sub-menu { padding-left: 16px; }
.mobile-menu .sub-menu a { font-size: 1rem; font-weight: 400; }
.mobile-menu-cta { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider {
  position: relative;
  height: 100vh; min-height: 600px; max-height: 900px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease;
  background: var(--clr-navy);
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.55) 60%, rgba(13,27,42,0.3) 100%);
}
.hero-slide__content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  width: 100%;
}
.hero-slide__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.4);
  color: var(--clr-gold-light);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.1s both;
}
.hero-slide__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800; color: var(--clr-white);
  line-height: 1.1; max-width: 800px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.2s both;
}
.hero-slide__title span { color: var(--clr-gold); }
.hero-slide__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7; max-width: 580px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s 0.3s both;
}
.hero-slide__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeInUp 0.6s 0.4s both;
}
.hero-slide__stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.6s 0.5s both;
}
.hero-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; color: var(--clr-gold);
}
.hero-stat__label {
  font-size: 0.8125rem; color: rgba(255,255,255,0.7);
}

/* Slider controls */
.hero-controls {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--clr-gold); width: 28px; border-radius: 5px;
}
.hero-arrows {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  display: flex; justify-content: space-between;
  width: 100%; padding: 0 24px; pointer-events: none;
}
.hero-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--clr-white); font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all;
  transition: all var(--transition);
}
.hero-arrow:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: var(--clr-navy); }
.hero-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--clr-gold);
  transition: width 0.1s linear;
}

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

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-gray-200);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar__list {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px 40px;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; color: var(--clr-navy);
}
.trust-bar__item .icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--clr-gold-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--clr-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--clr-gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--clr-gold); transform: scale(1.05);
}
.service-card__title {
  font-size: 1.125rem; font-weight: 700;
  color: var(--clr-navy); margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.9rem; color: var(--clr-gray-600);
  line-height: 1.65; margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.875rem; font-weight: 700;
  color: var(--clr-gold); display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* =====================================================
   ABOUT SECTION (3D floating boxes layout)
   ===================================================== */
.about-section { overflow: hidden; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-photo {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover; height: 580px;
}
/* Floating credential boxes */
.about-float {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  animation: floatBox 3s ease-in-out infinite;
  z-index: 5;
}
.about-float--1 { bottom: 40px; left: -40px; animation-delay: 0s; }
.about-float--2 { top: 60px; right: -40px; animation-delay: 1.5s; }
.about-float--3 { top: 50%; right: -30px; animation-delay: 0.8s; transform: translateY(-50%); }
@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.about-float--3 {
  animation: floatBox3 3s ease-in-out infinite;
}
@keyframes floatBox3 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 10px)); }
}
.about-float__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--clr-gold-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.about-float__title {
  font-size: 0.875rem; font-weight: 700; color: var(--clr-navy); line-height: 1.3;
}
.about-float__subtitle { font-size: 0.75rem; color: var(--clr-gray-600); }

.about-content .section-title { margin-bottom: 20px; }
.about-content .section-subtitle { margin-bottom: 32px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin: 32px 0;
}
.about-stat {
  text-align: center; padding: 20px 12px;
  background: var(--clr-gold-pale);
  border-radius: var(--radius-md);
}
.about-stat__number {
  display: block; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; color: var(--clr-gold);
}
.about-stat__label { font-size: 0.8125rem; color: var(--clr-navy); font-weight: 600; }
.about-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-card {
  padding: 36px 28px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition); text-align: center;
}
.why-card:hover {
  background: rgba(201,151,58,0.12);
  border-color: rgba(201,151,58,0.3);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,151,58,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 20px;
}
.why-card__title {
  font-size: 1.0625rem; font-weight: 700;
  color: var(--clr-white); margin-bottom: 10px;
}
.why-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { color: var(--clr-gold); font-size: 1.125rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.9375rem; color: var(--clr-gray-800);
  line-height: 1.7; font-style: italic; margin-bottom: 24px;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clr-gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--clr-gold); font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--clr-navy); }
.testimonial-case { font-size: 0.8125rem; color: var(--clr-gray-600); }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-item {
  border-bottom: 1px solid var(--clr-gray-200);
}
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--clr-navy); cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--clr-gold); }
.faq-question[aria-expanded="true"] { color: var(--clr-gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--clr-gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--clr-gold); border-color: var(--clr-gold);
  color: var(--clr-navy); transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer__inner {
  padding-bottom: 20px;
  font-size: 0.9375rem; color: var(--clr-gray-600); line-height: 1.7;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9973A' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: clamp(1.75rem,3.5vw,2.75rem);
  color: var(--clr-white); margin-bottom: 16px;
}
.cta-banner__subtitle { color: rgba(255,255,255,0.78); font-size: 1.0625rem; margin-bottom: 36px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-banner__note { color: rgba(255,255,255,0.45); font-size: 0.8125rem; margin-top: 16px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--clr-navy);
  padding-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo img { height: 44px; margin-bottom: 16px; }
.footer-logo .logo-text {
  font-family: var(--font-heading); font-size: 1.375rem;
  font-weight: 700; color: var(--clr-white); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.footer-logo .logo-text span { color: var(--clr-gold); }
.footer-tagline {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  line-height: 1.65; margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.875rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--clr-gold); color: var(--clr-navy); }

.footer-col__title {
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.7);
  font-size: 0.9rem; padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--clr-gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  padding: 6px 0;
}
.footer-contact-item .ico { color: var(--clr-gold); flex-shrink: 0; margin-top: 2px; }
.footer-map {
  border-radius: var(--radius-sm); overflow: hidden;
  margin-top: 16px; height: 160px;
}
.footer-map iframe { width: 100%; height: 100%; border: none; }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.4); font-size: 0.8125rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--clr-gold); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  min-height: 340px; display: flex; align-items: flex-end;
  padding-bottom: 56px;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  margin-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.85) 50%, rgba(13,27,42,0.5) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--clr-gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 { color: var(--clr-white); font-size: clamp(1.75rem,4vw,3rem); }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.0625rem; margin-top: 8px; }

/* =====================================================
   BLOG CARD
   ===================================================== */
.blog-card {
  background: var(--clr-white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-gray-200);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card__thumb {
  height: 200px; overflow: hidden;
  background: var(--clr-gray-100);
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  display: inline-block; background: var(--clr-gold-pale);
  color: var(--clr-gold); font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-card__title {
  font-size: 1.0625rem; font-weight: 700; color: var(--clr-navy);
  line-height: 1.4; margin-bottom: 10px;
  flex: 1;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--clr-gold); }
.blog-card__meta {
  display: flex; gap: 16px; font-size: 0.8125rem;
  color: var(--clr-gray-400); margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--clr-gray-100);
}

/* =====================================================
   SINGLE SERVICE PAGE - BANNER
   ===================================================== */
.service-banner {
  min-height: 380px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  margin-top: var(--nav-h); position: relative; overflow: hidden;
}
.service-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.9) 40%, rgba(13,27,42,0.5));
}
.service-banner__content { position: relative; z-index: 1; padding: 64px 0; }
.service-banner h1 {
  font-size: clamp(1.75rem,4vw,3rem); color: var(--clr-white); margin-bottom: 16px;
}
.service-banner__desc { color: rgba(255,255,255,0.78); font-size: 1.0625rem; max-width: 560px; margin-bottom: 32px; }
.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,151,58,0.15); border: 1px solid rgba(201,151,58,0.3);
  color: var(--clr-gold-light); font-size: 0.8125rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 20px;
}

/* =====================================================
   ANIMATIONS & 3D EFFECTS
   ===================================================== */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1; transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Counter animation */
.count-up { font-variant-numeric: tabular-nums; }

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--clr-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1); color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  animation: none;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* =====================================================
   CUSTOMIZER CONTROLS (theme_mod classes)
   ===================================================== */
body.lk-white-bg { background: var(--clr-white); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-float--2 { right: 0; top: 20px; }
  .about-float--3 { display: none; }
  .about-photo { height: 420px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .primary-nav, .header-phone, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-slider { height: 85vh; }
  .hero-slide__stats { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-float--1 { left: 0; bottom: 20px; }
  .about-float--2 { display: none; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .trust-bar__list { gap: 12px 20px; }
}

@media (max-width: 480px) {
  .hero-slide__actions { flex-direction: column; }
  .hero-slide__actions .btn { text-align: center; justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   NAV FIX — WordPress wp_nav_menu() generated markup
   ===================================================== */

/* Override: nav container */
.primary-nav {
  display: flex !important;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* The <ul> WordPress outputs — target ALL possible class names */
.primary-nav ul,
.primary-nav .menu,
.primary-nav .primary-nav__list {
  display: flex !important;
  align-items: center;
  gap: 0;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap;
  background: none !important;
}

/* Each top-level <li> */
.primary-nav ul > li,
.primary-nav .menu > li {
  position: relative;
  list-style: none;
}

/* Top-level links */
.primary-nav ul > li > a,
.primary-nav .menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1F2937;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.primary-nav ul > li > a::after,
.primary-nav .menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: #C9973A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.primary-nav ul > li > a:hover,
.primary-nav .menu > li.current-menu-item > a,
.primary-nav .menu > li.current_page_item > a {
  color: #C9973A !important;
}
.primary-nav ul > li > a:hover::after,
.primary-nav .menu > li.current-menu-item > a::after { transform: scaleX(1); }

/* DROPDOWN — sub-menu */
.primary-nav .sub-menu,
.primary-nav ul ul {
  display: flex !important;
  flex-direction: column !important;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(13,27,42,0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.primary-nav ul > li:hover > .sub-menu,
.primary-nav ul > li:focus-within > .sub-menu,
.primary-nav .menu > li:hover > ul,
.primary-nav .menu > li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu a,
.primary-nav ul ul a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: #374151;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
}
.primary-nav .sub-menu a:hover,
.primary-nav ul ul a:hover {
  background: #FDF6E9;
  color: #0D1B2A;
}

/* MOBILE MENU nav links */
.mobile-menu ul,
.mobile-menu .menu {
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-menu ul > li > a,
.mobile-menu .menu > li > a {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: color 0.25s;
}
.mobile-menu ul > li > a:hover,
.mobile-menu .menu > li > a:hover { color: #C9973A; }
.mobile-menu .sub-menu { padding-left: 16px; }
.mobile-menu .sub-menu a {
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 0;
}

/* =====================================================
   DROPDOWN CRITICAL FIX
   ===================================================== */
/* Force dropdown BELOW the nav item, not behind hero */
.primary-nav li { position: relative; }
.primary-nav li .sub-menu,
.primary-nav li ul.sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 99999 !important;
  min-width: 220px;
  background: #fff !important;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(13,27,42,0.18) !important;
  border: 1px solid #E5E7EB;
  padding: 8px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  display: block !important;
  flex-direction: column !important;
  pointer-events: none;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto;
}
.primary-nav li .sub-menu li { list-style: none; }
.primary-nav li .sub-menu li a {
  display: block !important;
  padding: 9px 14px !important;
  font-size: 0.875rem !important;
  color: #374151 !important;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.primary-nav li .sub-menu li a:hover {
  background: #FDF6E9 !important;
  color: #C9973A !important;
}

/* =====================================================
   SERVICE PAGE PREMIUM REDESIGN
   ===================================================== */
/* Service Banner — Full premium look */
.service-banner {
  min-height: 420px !important;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 60%, #0D1B2A 100%);
}
.service-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9973A' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.service-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.92) 45%, rgba(13,27,42,0.5) 100%);
}
.service-banner__content {
  position: relative; z-index: 2;
  padding: 72px 0;
  max-width: 680px;
}
.service-banner .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.service-banner .breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.service-banner .breadcrumb a:hover { color: #C9973A; }
.service-banner h1 {
  font-size: clamp(1.875rem, 4vw, 3rem) !important;
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 16px;
}
.service-banner__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}
.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.35);
  color: #E8B96A;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 20px;
}

/* Service Content Area */
.service-content-wrap {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
@media(max-width:900px){ .service-content-wrap { grid-template-columns: 1fr; } }

/* Main content styling */
.service-main-content h2 {
  font-size: 1.625rem;
  color: #0D1B2A;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F5E8CC;
}
.service-main-content h2:first-child { margin-top: 0; }
.service-main-content p {
  font-size: 1.0625rem;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-main-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-main-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}
.service-main-content ul li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  background: #C9973A;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-main-content strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0D1B2A;
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #C9973A;
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(13,27,42,0.08);
}
.sidebar-card--cta {
  background: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 100%);
  border: none;
  text-align: center;
}
.sidebar-card--cta h3 {
  color: #fff !important;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.sidebar-card--cta p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.sidebar-card--cta .btn { width: 100%; text-align: center; justify-content: center; margin-bottom: 10px; }
.sidebar-card__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 16px;
}
.sidebar-why li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; color: #374151;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
}
.sidebar-why li:last-child { border: none; }
.sidebar-why .ico { color: #C9973A; font-size: 1rem; }
.sidebar-related a {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9375rem; color: #374151;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-related a:last-child { border: none; }
.sidebar-related a:hover { color: #C9973A; }
.sidebar-related .arr { color: #C9973A; font-size: 0.75rem; }

/* Process steps */
.service-process {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 36px;
  margin: 40px 0;
}
.service-process h3 {
  font-size: 1.375rem;
  color: #0D1B2A;
  margin-bottom: 28px;
  text-align: center;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
}
.process-step {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.process-step__num {
  width: 52px; height: 52px;
  background: #C9973A;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 14px;
}
.process-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 6px;
}
.process-step__desc { font-size: 0.85rem; color: #6B7280; line-height: 1.6; }

/* Related services grid on service page */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

/* =====================================================
   FINAL DROPDOWN FIX — overrides everything
   ===================================================== */
.site-header { z-index: 9999 !important; }

.primary-nav { position: relative; z-index: 9999; }
.primary-nav > ul > li,
.primary-nav > .menu > li { position: relative !important; }

/* Hide dropdown by default */
.primary-nav > ul > li > ul,
.primary-nav > .menu > li > ul,
.primary-nav .sub-menu {
  display: block !important;
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 99999 !important;
  min-width: 230px;
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 48px rgba(13,27,42,0.18), 0 4px 12px rgba(13,27,42,0.1) !important;
  border: 1px solid #E5E7EB;
  padding: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s !important;
  pointer-events: none !important;
  list-style: none;
}

/* Show on hover */
.primary-nav > ul > li:hover > ul,
.primary-nav > .menu > li:hover > ul,
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* Dropdown items */
.primary-nav .sub-menu li,
.primary-nav > ul > li > ul > li {
  list-style: none !important;
}
.primary-nav .sub-menu li a,
.primary-nav > ul > li > ul > li > a {
  display: block !important;
  padding: 10px 16px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: background 0.18s, color 0.18s !important;
  white-space: nowrap;
}
.primary-nav .sub-menu li a:hover,
.primary-nav > ul > li > ul > li > a:hover {
  background: #FDF6E9 !important;
  color: #C9973A !important;
}
/* Remove underline effect from dropdown links */
.primary-nav .sub-menu li a::after,
.primary-nav > ul > li > ul > li > a::after {
  display: none !important;
}

/* Hero must be BELOW header */
.hero-slider { z-index: 1 !important; }
.page-hero, .service-banner { z-index: 1 !important; }

/* =====================================================
   SERVICE CONTENT WRAP — responsive
   ===================================================== */
.service-content-wrap {
  display: grid !important;
  grid-template-columns: 1fr 340px !important;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .service-content-wrap {
    grid-template-columns: 1fr !important;
  }
  .service-sidebar { position: static !important; }
}
@media (max-width: 768px) {
  .service-banner__content { padding: 48px 0 !important; }
  .service-banner h1 { font-size: 1.75rem !important; }
}

/* =====================================================
   PREMIUM UPGRADE — GLOBAL TYPOGRAPHY (V2)
   ===================================================== */
:root {
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Inter', sans-serif;
}
body {
    font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-slide__title,
.cta-banner__title,
.service-banner h1 {
    font-family: var(--font-head);
}

/* Increase border-radius across cards to 18px */
.service-card,
.why-card,
.blog-card,
.testimonial-card,
.sidebar-card,
.about-float {
    border-radius: 18px !important;
}

/* Global card shadow standard */
.service-card,
.why-card,
.blog-card,
.testimonial-card {
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* Hover lift — all cards */
.service-card:hover,
.why-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    transition: all .3s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,.14) !important;
}
