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

:root {
  --navy: #141B38;
  --navy-light: #1e2650;
  --navy-dark: #0d1228;
  --red: #ED4944;
  --red-hover: #CC3F3A;
  --red-light: #ff6b67;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f0f1f5;
  --gray-200: #e1e3ea;
  --gray-300: #c4c7d4;
  --gray-400: #8b90a5;
  --gray-500: #6b7089;
  --gray-600: #434960;
  --text: #1a1a2e;
  --text-light: #6b7089;
  --shadow-sm: 0 2px 8px rgba(20, 27, 56, 0.06);
  --shadow-md: 0 4px 20px rgba(20, 27, 56, 0.1);
  --shadow-lg: 0 8px 40px rgba(20, 27, 56, 0.14);
  --shadow-xl: 0 16px 60px rgba(20, 27, 56, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --gradient-cta: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  --gradient-hero: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}

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

body {
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-lg {
  padding: 7rem 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 73, 68, 0.35);
}

.btn-gradient {
  background: var(--gradient-cta);
  color: var(--white);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20, 27, 56, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 27, 56, 0.06);
  transition: all 0.4s var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  display: block;
}

/* ===== MEGA MENU ===== */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s ease;
  cursor: pointer;
}

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

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--transition);
  z-index: 100;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mega-menu-item:hover {
  background: var(--off-white);
}

.mega-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon {
  background: var(--red);
  color: var(--white);
}

.mega-menu-icon svg {
  width: 20px;
  height: 20px;
}

.mega-menu-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.mega-menu-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transition: right 0.4s var(--transition);
  box-shadow: var(--shadow-xl);
}

.nav-mobile.open {
  right: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 27, 56, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
}

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

.mobile-subnav {
  padding-right: 1rem;
}

.mobile-subnav a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
}

.mobile-nav-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 27, 56, 0.88) 0%, rgba(20, 27, 56, 0.7) 50%, rgba(20, 27, 56, 0.85) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.3) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(237, 73, 68, 0.15);
  border: 1px solid rgba(237, 73, 68, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-light);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--red);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.4s var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.hero-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(237, 73, 68, 0.4);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(237, 73, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.hero-card:hover .hero-card-icon {
  background: var(--red);
}

.hero-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red-light);
  transition: color 0.3s ease;
}

.hero-card:hover .hero-card-icon svg {
  color: var(--white);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hero-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-hero .hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.3) 1px, transparent 0);
  background-size: 40px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .section-tag {
  color: var(--red-light);
}

.page-hero .section-tag::before {
  background: var(--red-light);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--red-light);
  font-weight: 600;
}

/* ===== 3 STEPS SECTION ===== */
.steps-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -1.2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  color: var(--red);
}

.step-card h3 {
  margin-bottom: 0.8rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.steps-connector {
  display: none;
}

/* ===== STATISTICS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(237, 73, 68, 0.1) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .plus {
  color: var(--red);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== PRACTICE AREA CARDS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

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

.area-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.area-card:hover .area-card-icon {
  background: rgba(237, 73, 68, 0.1);
}

.area-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
  transition: all 0.3s ease;
}

.area-card:hover .area-card-icon svg {
  color: var(--red);
  transform: scale(1.1);
}

/* Animated SVG icons */
.area-card-icon .icon-static {
  transition: opacity 0.3s ease;
}

.area-card-icon .icon-animated {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card:hover .icon-static {
  opacity: 0;
}

.area-card:hover .icon-animated {
  opacity: 1;
}

.area-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===== AREA DETAIL (areas.html) ===== */
.area-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.area-detail:last-child {
  border-bottom: none;
}

.area-detail-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.area-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(237, 73, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-detail-icon svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.area-detail h2 {
  margin-bottom: 0;
}

.area-detail-subtitle {
  color: var(--text-light);
  font-size: 1rem;
}

.area-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.area-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.area-service-item svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.area-closing {
  font-style: italic;
  color: var(--gray-600);
  border-right: 3px solid var(--red);
  padding-right: 1.5rem;
  margin-top: 2rem;
}

/* ===== REVIEW CARDS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  fill: #f59e0b;
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-light);
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.google-rating-badge img {
  width: 24px;
  height: 24px;
}

.google-rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.google-rating-details {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card-photo {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

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

.team-card-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.team-card-info {
  padding: 1.5rem 2rem 2rem;
}

.team-card-info h3 {
  margin-bottom: 0.3rem;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.team-card-motto {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gray-600);
  border-right: 3px solid var(--red);
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.team-card-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Team detail (team.html) */
.team-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.team-detail:last-child {
  border-bottom: none;
}

.team-detail-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.team-detail-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.team-detail-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.team-detail-content h2 {
  margin-bottom: 0.3rem;
}

.team-detail-role {
  color: var(--red);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.team-detail-motto {
  font-style: italic;
  color: var(--gray-600);
  font-size: 1.1rem;
  border-right: 4px solid var(--red);
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.team-detail-bio {
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.team-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.team-fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.team-fact svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== WINS TIMELINE ===== */
.wins-timeline {
  position: relative;
  margin-top: 3rem;
}

.wins-timeline::before {
  content: '';
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-200);
  transform: translateX(50%);
}

.win-year {
  text-align: center;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
}

.win-year-badge {
  display: inline-block;
  background: var(--gradient-cta);
  color: var(--white);
  padding: 0.4rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1.1rem;
}

.win-card {
  position: relative;
  width: calc(50% - 2rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--transition);
}

.win-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.win-card:nth-child(odd) {
  margin-right: calc(50% + 2rem);
}

.win-card:nth-child(even) {
  margin-left: auto;
}

.win-card::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gray-200);
}

.win-card:nth-child(odd)::before {
  left: -2.4rem;
}

.win-card:nth-child(even)::before {
  right: -2.4rem;
}

.win-category {
  display: inline-block;
  background: rgba(237, 73, 68, 0.08);
  color: var(--red);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.win-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.win-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ===== ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.article-card-tag {
  display: inline-block;
  background: rgba(237, 73, 68, 0.08);
  color: var(--red);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.article-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.article-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.article-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.article-card:hover .article-read-more svg {
  transform: translateX(-4px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.1rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--transition);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.advantage-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.advantage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.3s ease;
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--transition);
}

.contact-info-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-info-value a {
  color: var(--red);
  font-weight: 600;
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--gray-200);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-right: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient-cta);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(237, 73, 68, 0.15) 0%, transparent 50%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quick CTA (sub-pages) */
.quick-cta {
  background: var(--navy);
  padding: 3rem 0;
}

.quick-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.quick-cta h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.quick-cta p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.quick-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cards {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-detail-inner {
    grid-template-columns: 1fr;
  }

  .team-detail-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  .wins-timeline::before {
    right: 1rem;
    transform: none;
  }

  .win-card {
    width: calc(100% - 3rem);
    margin-right: 3rem !important;
    margin-left: 0 !important;
  }

  .win-card::before {
    right: -2.4rem !important;
    left: auto !important;
  }

  .win-year {
    text-align: right;
    padding-right: 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .quick-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .team-detail-facts {
    grid-template-columns: 1fr;
  }

  .area-services {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .section-padding-lg {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 1.2rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
  }
}
