/* ===== ROOT & DESIGN TOKENS ===== */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2563a8;
  --accent: #c8860a;
  --accent-light: #f5a623;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f4f9;
  --gray-200: #e2e8f2;
  --gray-400: #9aaabf;
  --gray-600: #5a6a80;
  --gray-800: #2d3a4a;
  --text: #1e2a38;
  --text-light: #4a5568;
  --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Heebo', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.highlight {
  color: var(--primary-light);
}

.highlight-light {
  color: var(--accent-light);
}

.gradient-text {
  background: linear-gradient(135deg, #f5a623, #ffcf5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 134, 10, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 58, 92, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-abbr {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.2;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
  max-width: 220px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 14px rgba(200, 134, 10, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(37, 99, 168, 0.7) 0%, rgba(26, 58, 92, 0.75) 100%), url('iStock-876159076.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 168, 0.3) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 24px 40px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.18);
  color: var(--accent-light);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 6px 20px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-dot {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--primary);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ===== INTRO ===== */
.intro {
  background: var(--off-white);
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('iStock-497753486.jpg') center/cover;
  opacity: 0.12;
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.intro-text>p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.problem-list li {
  display: flex;
  gap: 16px;
}

.problem-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-list strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.problem-list p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.danger-note {
  background: #fff5f0;
  border: 1px solid #fcd3bb;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #8b3a10;
}

.visual-card {
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vc-header {
  background: var(--accent);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.vc-items {
  padding: 12px 0;
}

.vc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.vc-item:last-child {
  border-bottom: none;
}

.vc-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.vc-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-light);
  min-width: 24px;
}

.vc-item span:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.vc-footer {
  padding: 16px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(37, 99, 168, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.service-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}

.service-card.featured .service-icon-wrap {
  background: rgba(255, 255, 255, 0.12);
}

.service-card.featured .service-icon-wrap svg {
  stroke: var(--white);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.85);
}

.service-card.featured .service-features li::before {
  color: var(--accent-light);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(145deg, rgba(37, 99, 168, 0.85) 0%, rgba(26, 58, 92, 0.9) 100%), url('iStock-476972535.jpg') center/cover no-repeat;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.25;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.why-point {
  display: flex;
  gap: 16px;
}

.why-check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: rgba(245, 166, 35, 0.18);
  color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 3px;
}

.why-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
}

.expertise-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.expertise-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-bar {}

.exp-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.exp-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.exp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  transition: width 1.5s ease;
}

/* ===== ABOUT ===== */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo-placeholder {
  background: url('samuel-zeller-O8dKwgPSSUk-unsplash.jpg') center/cover;
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-photo-placeholder svg,
.about-photo-placeholder span {
  display: none;
}

.about-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-badge {
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 60px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077B5;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 60px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.about-linkedin:hover {
  background: #005f8f;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 119, 181, 0.35);
}

.about-linkedin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: var(--transition);
}

.footer-linkedin:hover {
  color: #0077B5 !important;
}

.footer-linkedin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  border-right: 3px solid var(--accent);
  padding-right: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 28px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item:last-child .tl-dot::after {
  display: none;
}

.tl-dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--gray-400);
  margin-top: 6px;
  position: relative;
}

.tl-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  width: 2px;
  height: calc(100% + 28px);
  background: var(--gray-200);
  margin-top: 4px;
}

.tl-item.active .tl-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 134, 10, 0.15);
}

.tl-item.active .tl-dot::after {
  background: var(--accent-light);
}

.tl-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
  display: block;
  margin-bottom: 4px;
}

.tl-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ARTICLES ===== */
.articles-teaser {
  background: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.article-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card.featured-article {
  background: var(--gradient);
  border-color: transparent;
}

.article-card.featured-article .article-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.article-card.featured-article h3 a {
  color: var(--white);
}

.article-card.featured-article p {
  color: rgba(255, 255, 255, 0.75);
}

.article-card.featured-article .article-link {
  color: var(--accent-light);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.article-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 60px;
  font-size: 0.78rem;
  font-weight: 700;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.article-card h3 a:hover {
  color: var(--primary-light);
}

.article-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.article-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-light);
}

.article-link:hover {
  color: var(--accent);
}

.articles-cta {
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info>p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ci-icon {
  font-size: 1.4rem;
}

.ci-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.ci-value {
  display: block;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.response-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-license {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 0.82rem !important;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-seo-note {
  font-size: 0.72rem !important;
  opacity: 0.4;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--primary-dark);
    padding: 20px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  .logo-sub {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .intro-grid,
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}