/*
Theme Name: Wanza Kivindu & Company Advocates
Theme URI: https://wanzakivinduadvocates.com
Author: Wanza Kivindu Advocates Development Team
Author URI: https://wanzakivinduadvocates.com
Description: A bespoke, luxury, and authoritative WordPress theme for Wanza Kivindu & Company Advocates, a premier Kenyan law firm specializing in Conveyancing, Commercial Litigation, Dispute Resolution, Family Law, and Banking & Securities. Features instant WhatsApp chat, click-to-call consultation, interactive practice areas, attorney profiles, and corporate partner showcase.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wanza-advocates
Tags: law-firm, legal, corporate, professional, responsive, gold-luxury, clean-code, custom-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ==========================================================================
   CSS CUSTOM PROPERTIES & DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Brand Colors from Firm Profile */
  --gold-primary: #C88A3B;
  --gold-light: #E5B876;
  --gold-lighter: #F6EBDD;
  --gold-dark: #9E6822;
  --gold-gradient: linear-gradient(135deg, #E5B876 0%, #C88A3B 50%, #A56E25 100%);
  --gold-gradient-hover: linear-gradient(135deg, #F0C98F 0%, #D89846 50%, #B87B2E 100%);

  /* Slate & Charcoal Neutrals */
  --slate-900: #141618;
  --slate-850: #1B1D20;
  --slate-800: #23262A;
  --slate-700: #33373E;
  --slate-600: #4B515D;
  --slate-400: #88909D;
  --slate-200: #E2E4E8;
  --slate-100: #F3F4F6;
  --slate-50:  #F9FAFB;

  /* Surface & Body */
  --bg-body: #FFFFFF;
  --bg-secondary: #FAF8F5;
  --bg-card: #FFFFFF;
  --text-main: #1C1F23;
  --text-muted: #555C66;
  --text-light: #9EA6B2;

  /* Typography */
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif-sub: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-width: 1240px;
  --header-height: 86px;
  --topbar-height: 42px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 22, 24, 0.08);
  --shadow-lg: 0 16px 36px rgba(20, 22, 24, 0.12);
  --shadow-gold: 0 8px 25px rgba(200, 138, 59, 0.28);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.section-tag.light {
  color: var(--gold-light);
}
.section-tag.light::before {
  background: var(--gold-light);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(200, 138, 59, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 138, 59, 0.5);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  color: #FFFFFF;
}

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

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.site-topbar {
  background-color: var(--slate-900);
  color: var(--slate-400);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
}

.site-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-height);
  padding-top: 6px;
  padding-bottom: 6px;
}

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

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C2C8D2;
  transition: color var(--transition-fast);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
}

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

.topbar-badge {
  background: rgba(200, 138, 59, 0.18);
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(200, 138, 59, 0.3);
}

/* Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-branding {
  display: flex;
  align-items: center;
}

.custom-logo-link img, .site-logo-img {
  height: 62px;
  width: auto;
  max-width: 320px;
}

/* Nav Menu */
.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-navigation a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 8px 0;
  position: relative;
}

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

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  color: var(--gold-primary);
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--slate-900);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-color: var(--slate-900);
  color: #FFFFFF;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.1) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 22, 24, 0.95) 0%,
    rgba(20, 22, 24, 0.85) 45%,
    rgba(20, 22, 24, 0.6) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 138, 59, 0.15);
  border: 1px solid rgba(200, 138, 59, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  color: #FFFFFF;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #D1D5DC;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--gold-light);
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.stat-item p {
  font-size: 0.85rem;
  color: #9EA6B2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Quick Consultation Card */
.hero-card {
  background: rgba(32, 35, 39, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 138, 59, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
}

.hero-card-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-card-subtitle {
  color: #9EA6B2;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.quick-form .form-group {
  margin-bottom: 16px;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.quick-form select option {
  background: var(--slate-850);
  color: #FFFFFF;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(200, 138, 59, 0.2);
}

/* ==========================================================================
   ABOUT & CORE VALUES SECTION
   ========================================================================== */
.section-about {
  padding: 100px 0;
  background: #FFFFFF;
}

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

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

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

.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--slate-900);
  color: #FFFFFF;
  padding: 24px 30px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.about-experience-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D1D5DC;
  margin-top: 4px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--slate-850);
  font-size: 0.95rem;
}

.about-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Core Values Section (Slate Background) */
.section-values {
  padding: 90px 0;
  background-color: var(--slate-900);
  color: #FFFFFF;
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--slate-850);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-normal);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 138, 59, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.value-card:hover::before {
  background: var(--gold-gradient);
}

.value-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(200, 138, 59, 0.12);
  border: 1px solid rgba(200, 138, 59, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--gold-light);
}

.value-card h3 {
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-card p {
  color: #B0B7C3;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   PRACTICE AREAS SECTION
   ========================================================================== */
.section-practice {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

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

.practice-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.practice-card-header {
  padding: 32px 30px 16px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.practice-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-lighter);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.practice-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-primary);
}

.practice-card-header h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--slate-900);
}

.practice-card-body {
  padding: 0 30px 24px;
  flex-grow: 1;
}

.practice-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.practice-card-footer {
  padding: 16px 30px 28px;
  border-top: 1px solid var(--slate-100);
}

.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.practice-link:hover {
  color: var(--gold-dark);
  gap: 12px;
}

/* ==========================================================================
   FEE STRUCTURE & RETAINER BANNER
   ========================================================================== */
.section-fee-structure {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-850) 100%);
  color: #FFFFFF;
  padding: 60px 0;
  border-top: 1px solid rgba(200, 138, 59, 0.25);
  border-bottom: 1px solid rgba(200, 138, 59, 0.25);
}

.fee-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.fee-info h3 {
  color: var(--gold-light);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.fee-info p {
  color: #D1D5DC;
  font-size: 1rem;
  max-width: 680px;
}

/* ==========================================================================
   THE TEAM SECTION
   ========================================================================== */
.section-team {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.team-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.team-photo-container {
  position: relative;
  width: 100%;
  height: 340px;
  background: var(--slate-100);
  overflow: hidden;
}

.team-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-photo-container img {
  transform: scale(1.04);
}

.team-badge-role {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(20, 22, 24, 0.9);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

.team-content {
  padding: 28px;
}

.team-name {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--slate-900);
}

.team-credentials {
  font-size: 0.84rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}

.spec-tag {
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ==========================================================================
   CORPORATE PARTNERS & CLIENTS
   ========================================================================== */
.section-partners {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.partner-card {
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 96px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.partner-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partner-card span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   CONTACT & CONSULTATION SECTION
   ========================================================================== */
.section-contact {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-panel {
  background: var(--slate-900);
  color: #FFFFFF;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 138, 59, 0.3);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info-panel p.intro {
  color: #B0B7C3;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 138, 59, 0.15);
  border: 1px solid rgba(200, 138, 59, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.contact-item-text h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item-text p, .contact-item-text a {
  color: #E2E4E8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item-text a:hover {
  color: var(--gold-light);
}

.contact-form-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #FFFFFF;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  color: var(--slate-900);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(200, 138, 59, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--slate-900);
  color: #B0B7C3;
  padding: 80px 0 0;
  border-top: 3px solid var(--gold-primary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #B0B7C3;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold-light);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #7E8694;
}

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

/* ==========================================================================
   FLOATING WHATSAPP & INSTANT CALL WIDGETS
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.whatsapp-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--slate-900);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Call Bar for Mobile */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--slate-900);
  border-top: 1px solid var(--gold-primary);
  z-index: 998;
  padding: 10px 16px;
}

.mobile-call-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
}

.call-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.call-bar-btn.call {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.call-bar-btn.wa {
  background: #25D366;
  color: #FFFFFF;
}

/* ==========================================================================
   MODAL: CONSULTATION POPUP
   ========================================================================== */
.consult-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 14, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.consult-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consult-modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-light);
}

.consult-modal-overlay.active .consult-modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--slate-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-700);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--slate-900);
  color: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 540px;
  }
  .about-grid, .contact-layout {
    grid-template-columns: 1fr;
  }
  .values-grid, .practice-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-topbar {
    display: none;
  }
  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
    padding: 24px;
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    z-index: 99;
  }
  .primary-navigation.active {
    transform: translateY(0);
  }
  .primary-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .mobile-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .values-grid, .practice-grid, .team-grid, .partners-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .fee-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
}
