@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800&family=Almarai:wght@300;400;700;800&display=swap');

:root {
  /* Warm Graphite / Charcoal - No Blue */
  --primary-dark: #141311; 
  --primary-color: #1e1d1a; 
  --primary-light: #292723; 
  --primary-lighter: #36332e;
  --secondary-color: #c5a059; 
  --secondary-light: #dfc285;
  --secondary-dark: #9e7b3c;
  --text-main: #f0f2f5;
  --text-muted: #b0b0a8;
  --border-subtle: rgba(197, 160, 89, 0.25);
  --gold-glow: rgba(197, 160, 89, 0.18);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Alexandria', sans-serif;
  --font-body: 'Almarai', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; direction: rtl; background-color: var(--primary-dark); }

body {
  font-family: var(--font-body);
  background-color: var(--primary-color);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: #ffffff; letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

/* Utilities */
.text-gold { color: var(--secondary-color); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.8rem; margin-bottom: 15px; position: relative; display: inline-block; text-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.section-title p { color: var(--text-muted); font-size: 1.15rem; max-width: 650px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 35px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  cursor: pointer; border: none; transition: var(--transition);
  position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 50%, var(--secondary-dark) 100%);
  color: #121418;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.1);
  text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4), inset 0 2px 0 rgba(255,255,255,0.6), inset 0 -2px 0 rgba(0,0,0,0.1);
  color: #000;
}

.btn-outline {
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-light);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: #121418;
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

/* Header */
header {
  background: rgba(20, 19, 17, 0.4);
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  position: fixed; width: 100%; top: 0; z-index: 1000; transition: var(--transition);
}

header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.3), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
header.scrolled::after { opacity: 1; }

header .container { display: flex; justify-content: space-between; align-items: center; height: 90px; transition: height 0.4s ease; }
header.scrolled { background: rgba(20, 19, 17, 0.95); box-shadow: 0 10px 30px rgba(0,0,0,0.8); border-bottom: none; }
header.scrolled .container { height: 70px; }

/* 3D Metallic Gold Logo Effect */
.logo img, .footer-about .logo img { 
  height: 70px; width: auto; object-fit: contain; 
  /* Crisp, polished gold filter instead of blown-out saturation */
  filter: brightness(0) invert(70%) sepia(40%) saturate(300%) hue-rotate(5deg) brightness(1.05) contrast(1.1) drop-shadow(0px 2px 4px rgba(0,0,0,0.6));
  transition: height 0.4s; 
}
header.scrolled .logo img { height: 55px; }

nav ul { display: flex; gap: 40px; align-items: center; }
nav ul li a { 
  color: var(--text-muted); 
  font-weight: 500; 
  font-size: 1.05rem; 
  position: relative; 
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 5px 0;
}
nav ul li a:hover { color: var(--text-main); }

/* Elegant animated gold underline */
nav ul li a::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--secondary-color);
  transition: width 0.3s ease; border-radius: 2px;
}
nav ul li a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 25px; }
.phone-link { 
  color: var(--text-muted); font-weight: 500; font-size: 1.05rem; 
  letter-spacing: 1px; display: flex; align-items: center; gap: 8px; 
  transition: color 0.3s; 
}
.phone-link i { color: var(--secondary-color); font-size: 1rem; }
.phone-link:hover { color: var(--secondary-light); }

/* Sleek pill button for header */
.header-cta .btn {
  padding: 8px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 30px;
  color: var(--secondary-light);
  box-shadow: none;
}
.header-cta .btn:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.15);
}

/* Hero Section */
.hero {
  background: 
    radial-gradient(circle at 50% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  padding-top: 130px; padding-bottom: 60px; position: relative;
}

.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("../../brain/2297b8be-d459-48ae-ba8b-c5422779592d/luxury_law_bg_1776734026484.png");
  background-size: cover; background-position: center;
  opacity: 0.08; mix-blend-mode: color-dodge; z-index: 0; pointer-events: none;
}

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px;
  background: linear-gradient(to top, var(--primary-color), transparent); z-index: 1;
}

.hero-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 45px;
}

.hero-copy {
  flex: 1.2;
  text-align: right; /* RTL */
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 30px;
  color: var(--secondary-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: 3.4rem; line-height: 1.25; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-copy p {
  font-size: 1.15rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; margin-bottom: 15px;
}

.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Massive centerpiece matching text block height */
.hero-main-logo {
  max-height: 340px; 
  width: auto;
  filter: brightness(0) saturate(100%) invert(75%) sepia(35%) saturate(836%) hue-rotate(1deg) brightness(95%) contrast(90%) drop-shadow(0px -2px 2px rgba(255,255,255,0.5)) drop-shadow(0px 10px 15px rgba(0,0,0,0.9));
  animation: float 6s ease-in-out infinite;
  position: relative; z-index: 2;
}

.hero-visual::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.15) 0%, transparent 60%);
  z-index: 1; filter: blur(20px);
}

/* Hero Action & Social Proof Bar (Seamless Integration) */
.hero-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 35px;
  border-top: 1px solid rgba(197, 160, 89, 0.15); /* Elegant subtle divider */
  flex-wrap: wrap;
  gap: 25px;
}

.hero-buttons { display: flex; align-items: center; }

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 25px;
}

.metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric .stars { color: #f39c12; font-size: 0.95rem; margin-bottom: 5px; }
.metric-text { font-size: 0.95rem; color: var(--text-muted); }
.metric-number { 
  font-size: 1.4rem; font-weight: 700; color: var(--secondary-light); 
  font-family: var(--font-heading); line-height: 1.1; margin-bottom: 2px;
  direction: ltr; display: inline-block;
}

.metric-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,0.1);
}

/* Elegant Section Separator */
.elegant-separator {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.2), transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.elegant-separator span {
  width: 12px; height: 12px;
  background: var(--primary-dark);
  border: 1px solid rgba(197, 160, 89, 0.4);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

/* Features Section */
.features {
  margin-top: 20px; 
  padding: 40px 0 80px 0;
  position: relative; z-index: 10;
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.feature-card {
  background: rgba(37, 40, 48, 0.4);
  backdrop-filter: blur(10px);
  padding: 50px 35px; border-radius: 16px; text-align: center;
  border: 1px solid rgba(255,255,255,0.03);
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-12px);
  background: rgba(37, 40, 48, 0.7);
  border-top: 1px solid var(--secondary-light);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(197,160,89,0.08);
}

.feature-icon {
  width: 70px; height: 70px; margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.05)); 
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--secondary-light);
  border: 1px solid var(--border-subtle); transition: var(--transition);
  box-shadow: inset 0 2px 10px rgba(197, 160, 89, 0.1);
}

.feature-card:hover .feature-icon { 
  background: var(--secondary-color); color: #121418; 
  box-shadow: 0 0 25px rgba(197,160,89,0.5); 
  transform: scale(1.1);
}
.feature-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #fff; }
.feature-card p { color: var(--text-muted); font-size: 1.1rem; }

/* Services */
.services {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 19, 17, 0.5) 20%, rgba(20, 19, 17, 0.5) 80%, transparent 100%);
  position: relative;
}

.services::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5L22.5 16 25 13.5V0h2v13.5L29.5 16l2.5-2.5V18h8v2h-8v2.5L29.5 25 27 27.5V40h-2V27.5L22.5 25 20 27.5z' fill='%23c5a059' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 35px; }

.service-card {
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px; padding: 45px 40px;
  transition: var(--transition); position: relative; overflow: hidden;
}

.service-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(197,160,89,0.15), transparent 60%);
  opacity: 0; transition: var(--transition); pointer-events: none;
}

.service-card:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-subtle);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.service-card:hover::after { opacity: 1; }

.service-icon { font-size: 2.5rem; color: var(--secondary-light); margin-bottom: 25px; display: inline-block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); margin-bottom: 25px; font-size: 1.05rem; }

.service-link { position: static; display: inline-flex; align-items: center; gap: 8px; color: var(--secondary-light); font-weight: 600; font-size: 1.1rem; }
.service-link::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.service-link i { transition: transform 0.3s; }
.service-link:hover i { transform: translateX(-8px); color: var(--secondary-color); }

/* Expertise Section */
.expertise {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 31, 38, 0.3) 20%, rgba(30, 31, 38, 0.3) 80%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.01);
}

.expertise .container { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }

.expertise-image { position: relative; }
.expertise-image img {
    width: 100%; 
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(197,160,89,0.3);
}
.expertise-image::before {
  content: ''; position: absolute; top: -25px; right: -25px; bottom: 25px; left: 25px;
  border: 2px solid var(--secondary-color); border-radius: 16px; z-index: -1;
  opacity: 0.2;
}

.office-logo-plate {
  position: absolute; top: 40px; right: -30px;
  background: rgba(26, 28, 35, 0.95); backdrop-filter: blur(15px);
  padding: 20px 30px; border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-left: 5px solid var(--secondary-color);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}

.office-logo-plate img {
  height: 65px !important; width: auto;
  filter: brightness(0) invert(70%) sepia(40%) saturate(300%) hue-rotate(5deg) brightness(1.05) contrast(1.1) drop-shadow(0px 2px 4px rgba(0,0,0,0.6));
}

.trust-badge {
  position: absolute; bottom: 40px; left: -40px;
  background: rgba(26, 28, 35, 0.95); backdrop-filter: blur(15px);
  padding: 25px 35px; border-radius: 12px; border: 1px solid rgba(197,160,89,0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
  display: flex; align-items: center; gap: 20px; border-right: 5px solid var(--secondary-color);
}
.trust-badge i { font-size: 2.8rem; color: var(--secondary-light); }
.trust-badge strong { font-size: 1.3rem; color: #fff; display: block; margin-bottom: 3px; }
.trust-badge span { color: var(--text-muted); font-size: 1rem; }

.expertise-content h2 { font-size: 3rem; margin-bottom: 30px; }
.expertise-list li { display: flex; align-items: flex-start; gap: 25px; margin-bottom: 30px; }
.expertise-list i { color: var(--secondary-color); font-size: 2rem; margin-top: 5px; }
.expertise-list strong { font-size: 1.3rem; color: #fff; display: block; margin-bottom: 8px; }
.expertise-list p { color: var(--text-muted); font-size: 1.1rem; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; }
.stat-item {
  background: rgba(255,255,255,0.02); padding: 30px; border-radius: 12px;
  border-right: 4px solid var(--secondary-color);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
.stat-number { font-size: 3.5rem; font-weight: 800; color: var(--secondary-light); font-family: var(--font-heading); direction: ltr; display: block; line-height: 1; margin-bottom: 12px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.stat-label { color: var(--text-main); font-size: 1.15rem; font-weight: 500; }

/* Reviews Section - Modern Split Layout */
.reviews {
  padding: 90px 0; 
  background: linear-gradient(180deg, transparent 0%, rgba(197,160,89,0.02) 20%, rgba(197,160,89,0.02) 80%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
  z-index: 1; filter: blur(30px);
}

.reviews-split-layout {
  display: flex; gap: 60px; align-items: flex-start;
  position: relative; z-index: 2;
}

.reviews-intro {
  flex: 0.8;
  position: relative;
}

.sticky-wrapper {
  position: sticky; top: 150px;
}

.reviews-intro h2 { font-size: 3.2rem; line-height: 1.3; margin-bottom: 25px; }
.reviews-intro p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }

.overall-rating {
  display: flex; align-items: center; gap: 20px;
  padding: 25px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle); border-radius: 16px;
  border-right: 4px solid var(--secondary-color);
}
.rating-number { font-size: 3.5rem; font-weight: 800; color: var(--secondary-light); line-height: 1; font-family: var(--font-heading); direction: ltr; }
.rating-details .stars { color: #f39c12; font-size: 1.1rem; margin-bottom: 5px; display: flex; gap: 4px; }
.rating-details span { color: var(--text-muted); font-size: 0.95rem; }

.reviews-staggered-grid {
  flex: 1.2;
  display: flex; gap: 30px;
}

.reviews-col {
  display: flex; flex-direction: column; gap: 30px; flex: 1;
}

.reviews-col.col-2 {
  margin-top: 60px; /* The masonry stagger effect */
}

/* Review Cards Premium Look */
.review-card {
  background: rgba(30, 31, 38, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 20px; padding: 45px 35px;
  transition: var(--transition); position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.review-card::after {
  content: '\f10e'; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; bottom: -10px; left: 10px;
  font-size: 8rem; color: rgba(197, 160, 89, 0.03);
  line-height: 1; z-index: 0; pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--secondary-color);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(197,160,89,0.05);
}

.review-header, .review-text, .review-author { position: relative; z-index: 2; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.review-stars { color: #f39c12; font-size: 1rem; display: flex; gap: 4px; }

.review-text {
  font-size: 1.15rem; color: var(--text-main); line-height: 1.8; margin-bottom: 30px; font-style: italic;
}

.review-author strong { display: block; color: var(--secondary-light); font-size: 1.15rem; font-weight: 700; margin-bottom: 5px; }
.review-author span { color: var(--text-muted); font-size: 0.95rem; }

/* CTA Section */
.cta-section {
  padding: 80px 0 90px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(197, 160, 89, 0.05) 100%);
  position: relative; text-align: center;
}

.cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box {
  background: rgba(30, 31, 38, 0.8); backdrop-filter: blur(20px);
  max-width: 950px; margin: 0 auto; padding: 60px 50px;
  border-radius: 20px; position: relative;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 2px 20px rgba(255,255,255,0.03);
}

.cta-box::before {
  content: ''; position: absolute; top: -1px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.cta-box h2 { font-size: 2.8rem; margin-bottom: 20px; }
.cta-box p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 30px; }

.cta-actions-wrapper { margin-top: 20px; }

.cta-primary-action { margin-bottom: 30px; }

.btn-massive {
  display: inline-flex; align-items: center; justify-content: center; gap: 15px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 50%, var(--secondary-dark) 100%);
  color: #121418;
  padding: 18px 45px; border-radius: 50px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3), inset 0 2px 0 rgba(255,255,255,0.4);
  transition: var(--transition); border: none; cursor: pointer; text-decoration: none;
}

.btn-massive:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4), inset 0 2px 0 rgba(255,255,255,0.6);
}

.pulse-icon {
  display: flex; align-items: center; justify-content: center;
  width: 45px; height: 45px; background: rgba(0,0,0,0.15); border-radius: 50%;
  font-size: 1.8rem;
}

.cta-hint { color: var(--text-muted); font-size: 1.05rem; margin-top: 10px; display: block; }

.cta-secondary-actions {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 25px; max-width: 650px; margin: 0 auto;
}

.cta-inline-links {
  display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap;
}

.inline-contact {
  color: var(--text-main); font-size: 1.15rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px; transition: var(--transition);
}

.inline-contact i { color: var(--secondary-color); font-size: 1.2rem; }
.inline-contact:hover { color: var(--secondary-light); transform: translateY(-2px); }

.inline-separator { width: 1px; height: 25px; background: rgba(255,255,255,0.1); }

/* Footer */
footer {
  background-color: #0b0c10; padding: 90px 0 30px; border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1.2fr 1.5fr; margin-bottom: 70px; }

.footer-grid > div {
  padding-left: 45px; padding-right: 45px;
  border-left: 1px solid rgba(255,255,255,0.05); /* RTL right side separator */
}
.footer-grid > div:first-child { padding-right: 0; }
.footer-grid > div:last-child { border-left: none; padding-left: 0; }

.footer-about .logo img { height: 90px; margin-bottom: 25px; }
.footer-about p { color: var(--text-muted); font-size: 1.05rem; }

.footer-title { font-size: 1.4rem; color: #fff; margin-bottom: 35px; position: relative; padding-bottom: 15px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; right: 0; width: 45px; height: 2px; background-color: var(--secondary-color); }

.footer-links li { margin-bottom: 18px; }
.footer-links a { color: var(--text-muted); transition: var(--transition); font-size: 1.05rem; }
.footer-links a:hover { color: var(--secondary-light); padding-right: 10px; }

.footer-contact li { display: flex; gap: 18px; margin-bottom: 25px; color: var(--text-muted); align-items: center; font-size: 1.05rem; }
.footer-contact i { color: var(--secondary-color); font-size: 1.4rem; }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: #666; font-size: 1rem; }

/* Animations */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Responsive */
@media (max-width: 992px) {
  .hero-main-content { flex-direction: column-reverse; text-align: center; gap: 30px; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin: 0 auto; }
  .hero-action-bar { flex-direction: column; text-align: center; }
  .hero-trust-metrics { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .metric-divider { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .expertise .container { grid-template-columns: 1fr; }
  .office-logo-plate { right: 20px; top: 20px; border-left: none; border-bottom: 5px solid var(--secondary-color); }
  .trust-badge { left: 20px; bottom: -20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  
  .reviews-split-layout { flex-direction: column; gap: 40px; }
  .sticky-wrapper { position: static; }
  .reviews-col.col-2 { margin-top: 30px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div { padding: 0 !important; border: none !important; }
}

@media (max-width: 768px) {
  header .container { height: 75px; padding: 0 15px; }
  .logo img { height: 45px !important; }
  nav ul, .header-cta .btn { display: none; }
  .phone-link span { display: none; } /* Hide phone text, keep icon */
  .phone-link i { font-size: 1.5rem; }

  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-copy p { font-size: 1rem; }
  .hero-main-logo { max-height: 180px; }
  
  .btn { width: 100%; }
  .btn-massive { font-size: 1.1rem; padding: 15px 25px; width: 100%; flex-direction: column; gap: 10px; text-align: center; }
  
  .features-grid, .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 30px 20px; }
  .section-title h2 { font-size: 2rem; }
  
  /* Expertise Fixes */
  .expertise-content h2 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 30px; }
  .stat-number { font-size: 2.5rem; }
  .office-logo-plate { display: none; } /* Hide floating plate to prevent covering lawyer face */
  .trust-badge { position: relative; left: 0; bottom: 0; margin-top: 20px; width: 100%; justify-content: center; padding: 20px; flex-direction: column; text-align: center; gap: 10px; }
  .expertise-image { display: flex; flex-direction: column; padding: 0 15px; }
  
  /* Reviews Fixes */
  .reviews-staggered-grid { flex-direction: column; }
  .reviews-col.col-2 { margin-top: 0; }
  .reviews-intro h2 { font-size: 2rem; }
  .overall-rating { flex-direction: column; text-align: center; gap: 15px; }
  
  /* CTA Box Fixes */
  .cta-box { padding: 30px 20px; border-radius: 12px; }
  .cta-box h2 { font-size: 1.8rem; }
  .cta-box p { font-size: 1.05rem; }
  
  /* Footer Fixes */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-title::after { left: 50%; right: auto; transform: translateX(-50%); }
  .footer-contact li { justify-content: center; flex-direction: column; gap: 10px; }
}
