/* ========== VARIABLES ========== */
:root {
  --primary: #0FBA94;
  --primary-dark: #098C6E;
  --primary-light: #E6F7F2;
  --primary-very-light: #F0FDF9;
  --gold: #D4A843;
  --gold-dark: #B8912E;
  --dark: #1A2E35;
  --dark-text: #2D3748;
  --gray: #F8F9FA;
  --gray-border: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Cairo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-badge-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto 12px;
}

.section-desc-light {
  color: rgba(255,255,255,0.8);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.section-divider span {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 4px;
  position: relative;
}

.section-divider span::after {
  content: '';
  position: absolute;
  right: 70px;
  top: 0;
  width: 30px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
}

/* ========== FADE IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar.scrolled .nav-logo .logo-title,
.navbar.scrolled .nav-link {
  color: var(--dark-text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.logo-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  transition: var(--transition);
}

.navbar.scrolled .logo-subtitle {
  color: var(--dark-text);
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
  color: var(--dark-text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle {
  color: var(--dark-text);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #0F2830 50%, var(--dark) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15,186,148,0.08) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(15,186,148,0.05) 0%, transparent 70%);
  bottom: 30%;
  left: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(15,186,148,0.2);
  border: 1px solid rgba(15,186,148,0.3);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 100px;
  color: var(--primary);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,186,148,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn i {
  font-size: 14px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 450px;
}

.hero-svg {
  width: 100%;
  height: auto;
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
  color: var(--primary);
  font-size: 16px;
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 15%;
  left: -10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== ABOUT ========== */
.about {
  background: var(--white);
}

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

.about-content p {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.about-feature i {
  font-size: 16px;
}

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

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-very-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.4;
  border: 2px dashed var(--primary);
}

.about-exp {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
}

.about-exp-num {
  font-size: 32px;
  font-weight: 900;
  display: block;
}

.about-exp-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

/* ========== SERVICES ========== */
.services {
  background: var(--gray);
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.service-desc {
  font-size: 14px;
  color: #718096;
  line-height: 1.7;
}

/* ========== WHY US ========== */
.why-us {
  background: var(--white);
}

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

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--gray);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.why-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-text);
}

.why-content p {
  font-size: 14px;
  color: #718096;
}

/* ========== VISION ========== */
.vision {
  background: linear-gradient(135deg, var(--dark) 0%, #0F2830 100%);
}

.vision .section-badge {
  background: rgba(255,255,255,0.1);
  color: var(--primary);
}

.vision .section-title {
  color: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.vision-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.vision-icon {
  width: 70px;
  height: 70px;
  background: rgba(15,186,148,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
}

.vision-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.vision-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
}

/* ========== SECTORS ========== */
.sectors {
  background: var(--gray);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.sector-card {
  background: var(--white);
  padding: 30px 16px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

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

.sector-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}

.sector-card:hover i {
  color: var(--gold);
  transform: scale(1.15);
}

.sector-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
}

/* ========== TIMELINE / STEPS ========== */
.steps {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 35px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-right: 80px;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  right: 15px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--primary-light);
  transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  background: var(--gold);
}

.timeline-content {
  background: var(--gray);
  padding: 24px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: #718096;
}

/* ========== STATS ========== */
.stats {
  background: linear-gradient(135deg, var(--dark) 0%, #0F2830 100%);
}

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

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.stat-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}

.stat-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  display: inline;
}

.stat-plus,
.stat-percent {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-right: 2px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-cta {
  background: var(--white);
  color: var(--primary-dark);
  padding: 16px 40px;
  font-size: 16px;
  border: none;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ========== CONTACT ========== */
.contact {
  background: var(--gray);
}

.contact-brand {
  text-align: center;
  margin-bottom: 50px;
}

.contact-brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.contact-brand h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-text);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

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

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.contact-card-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-card-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-about p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

.footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-services a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--primary);
  padding-right: 4px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 30px; }
  .hero-visual { display: none; }
  .card-1 { right: 5%; }
  .card-2 { left: 5%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-exp { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 28px; }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    align-items: stretch;
    gap: 4px;
  }

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

  .nav-link {
    color: var(--dark-text);
    padding: 12px 16px;
    font-size: 15px;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
  }

  .nav-toggle {
    display: block;
  }

  .hero-title { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 34px; }
  .cta-title { font-size: 26px; }
  .contact-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact-card { padding: 24px; }
  .timeline::before { right: 25px; }
  .timeline-item { padding-right: 60px; }
  .timeline-marker { right: 5px; width: 36px; height: 36px; font-size: 14px; }
  .timeline-content { padding: 18px 20px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 24px; }
  .hero-title { font-size: 26px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sector-card { padding: 20px 12px; }
  .sector-card i { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 30px 20px; }
}
