/*
Theme Name: Smart Team Gulf
Theme URI: https://smart-team.net
Author: Smart Team Gulf
Author URI: https://smart-team.net
Description: ثيم سمارت تيم للحلول التقنية المتكاملة - تصميم احترافي RTL لشركة سمارت تيم بالكويت والخليج
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: smart-team
Tags: rtl-language, technology, business, one-page, dark
*/

/* ═══════════════════════════════════════════════
   ROOT VARIABLES — Soft Baby Blue & Gray Mix
   ═══════════════════════════════════════════════ */
:root {
  --gold:        #5DB3E0;
  --gold-light:  #8FD4F5;
  --gold-dark:   #2B7AB8;
  --navy:        #FFFFFF;
  --navy-mid:    #F8FBFD;
  --navy-light:  #F0F7FB;
  --navy-card:   #FFFFFF;
  --text-main:   #2C3E50;
  --text-muted:  #5A7A8C;
  --text-dim:    #7A8FA0;
  --border:      rgba(93,179,224,0.2);
  --border-subtle: rgba(93,179,224,0.1);
  --glow:        rgba(93,179,224,0.08);
  --gray-light:  #E8EEEEF;
  --gray-medium: #C0CAD4;
  --gray-dark:   #8B95A3;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  background: var(--navy);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.st-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(240,246,251,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.st-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.st-logo img { height: 42px; width: auto; }
.st-logo-text {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.2;
}
.st-logo-sub { font-size: 11px; color: var(--gold); font-weight: 400; }

.st-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.st-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.st-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.st-nav-links a:hover { color: var(--text-main); }
.st-nav-links a:hover::after { width: 100%; }
.st-nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.st-nav-cta::after { display: none !important; }

.st-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.st-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.st-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}
.st-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(59,123,168,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(59,123,168,0.07) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #1A2840 100%);
}
.st-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,123,168,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,123,168,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.st-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,123,168,0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 28px;
  animation: stFadeSlideIn 0.8s ease both;
}
.st-hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: stPulse 2s infinite;
}
.st-hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  animation: stFadeSlideIn 0.9s ease 0.1s both;
}
.st-gold-text { color: var(--gold); }
.st-hero-sub {
  font-size: clamp(15px, 2.5vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: stFadeSlideIn 1s ease 0.2s both;
}
.st-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: stFadeSlideIn 1.1s ease 0.3s both;
}
.st-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(59,123,168,0.3);
}
.st-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,123,168,0.45);
}
.st-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}
.st-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--glow);
}
.st-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  animation: stFadeSlideIn 1.2s ease 0.4s both;
}
.st-stat-item { text-align: right; }
.st-stat-number {
  font-family: 'Cairo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.st-stat-label { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

/* Floating Card */
.st-hero-visual {
  position: absolute;
  left: 5%; top: 50%;
  transform: translateY(-50%);
  width: 380px;
  animation: stFloatCard 6s ease-in-out infinite;
}
.st-hero-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.st-hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.st-hero-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.st-card-title { font-weight: 700; font-size: 15px; }
.st-card-sub { font-size: 12px; color: var(--text-dim); }
.st-progress-list { display: flex; flex-direction: column; gap: 14px; }
.st-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.st-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.st-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 99px;
  animation: stGrow 1.5s ease both;
}

/* ═══════════════════════════════════════════════
   SECTION GLOBALS
   ═══════════════════════════════════════════════ */
.st-section { padding: 96px 5%; }
.st-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.st-section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  display: block;
}
.st-section-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}
.st-section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.st-section-head { margin-bottom: 60px; }

/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════ */
#about { background: var(--navy); }

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  display: block;
}
.about-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-tag {
  background: rgba(59,123,168,0.12);
  border: 1px solid rgba(59,123,168,0.3);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

.about-visual { position: relative; }
.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
}
.about-img-wrapper svg { width: 100%; height: auto; display: block; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(59,123,168,0.4);
}
.about-img-badge-num {
  font-family: 'Cairo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.about-img-badge-lbl {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.about-why-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-why-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  margin-bottom: 48px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.pillar-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  transition: height 0.4s;
  border-radius: 0 16px 0 0;
}
.pillar-card:hover { border-color: var(--border); transform: translateY(-4px); }
.pillar-card:hover::before { height: 100%; }
.pillar-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(59,123,168,0.18), rgba(59,123,168,0.06));
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.pillar-card:hover .pillar-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: transparent;
}
.pillar-title {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Rating */
.about-rating-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 48px;
}
.rating-big {
  text-align: center;
  padding-left: 48px;
  border-left: 1px solid var(--border-subtle);
}
.rating-number {
  font-family: 'Cairo', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { font-size: 22px; margin: 8px 0; color: #F59E0B; letter-spacing: 2px; }
.rating-sub { font-size: 13px; color: var(--text-dim); }
.rating-summary-title {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.rating-summary-desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.rating-bars { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.rbar-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.rbar-label { width: 60px; color: var(--text-dim); flex-shrink: 0; text-align: left; }
.rbar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.rbar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.rbar-pct { width: 32px; color: var(--text-muted); flex-shrink: 0; font-weight: 600; }

/* Testimonials */
.testimonials-label {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  margin-bottom: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.testi-card:hover { border-color: var(--border); transform: translateY(-3px); }
.testi-quote {
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text-dim); }
.testi-stars { margin-right: auto; color: #F59E0B; font-size: 13px; }

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
#services { background: var(--navy-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: var(--border); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(59,123,168,0.15), rgba(59,123,168,0.05));
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: transparent;
}
.service-name {
  font-family: 'Cairo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   SYSTEMS
   ═══════════════════════════════════════════════ */
#systems { background: var(--navy); }
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.system-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.system-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.system-card:hover { border-color: var(--border); transform: translateY(-6px); }
.system-card:hover::after { opacity: 1; }
.system-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.system-name {
  font-family: 'Cairo', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}
.system-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.system-features { display: flex; flex-direction: column; gap: 10px; }
.system-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.system-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════ */
#why { background: var(--navy-mid); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--border); transform: translateY(-3px); }
.why-icon {
  font-size: 28px;
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: rgba(59,123,168,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
#contact { background: var(--navy); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(59,123,168,0.15), rgba(59,123,168,0.05));
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; }
.contact-value { font-weight: 600; font-size: 15px; }
.contact-value a { color: var(--text-main); text-decoration: none; }
.contact-value a:hover { color: var(--gold); }
.social-row { display: flex; gap: 14px; margin-top: 8px; }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--gold); background: var(--glow); transform: translateY(-2px); }
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px;
}
.form-title {
  font-family: 'Cairo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text-main);
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  direction: rtl;
  transition: all 0.3s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(59,123,168,0.04);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.st-footer {
  background: #060A14;
  border-top: 1px solid var(--border-subtle);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes stPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes stFadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes stFloatCard {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-20px); }
}
@keyframes stGrow {
  from { width: 0 !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .st-hero-visual { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .st-hero-stats { gap: 28px; }
  .about-top { grid-template-columns: 1fr; }
  .about-img-badge { bottom: 12px; right: 12px; }
  .about-rating-row { grid-template-columns: 1fr; gap: 24px; }
  .rating-big { border-left: none; border-bottom: 1px solid var(--border-subtle); padding-left: 0; padding-bottom: 24px; }
}
@media (max-width: 700px) {
  .st-nav-links { display: none; }
  .st-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; right: 0; left: 0;
    background: rgba(10,15,30,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .st-hamburger { display: flex; }
  .st-hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ═══════════════════════════════════════════════
   BABY BLUE COLOR ENHANCEMENTS
   ═══════════════════════════════════════════════ */

/* Light background and dark text for better contrast */
body {
  background: #F0F6FB;
  color: #1A3A52;
}

/* Enhanced button styles for light theme */
.st-btn-primary {
  background: linear-gradient(135deg, #4FA3D1 0%, #2B7AB8 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(79, 163, 209, 0.3);
}

.st-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(79, 163, 209, 0.4);
}

.st-btn-outline {
  border-color: #4FA3D1;
  color: #2B7AB8;
  background: rgba(79, 163, 209, 0.05);
}

.st-btn-outline:hover {
  background: rgba(79, 163, 209, 0.1);
}

/* Section background light */
.st-section {
  background: linear-gradient(to bottom, #FFFFFF, #F5FAFF);
}

/* Card styles for light theme */
.service-card,
.system-card,
.why-card,
.portfolio-card {
  background: #FFFFFF;
  border-color: rgba(79, 163, 209, 0.2);
  box-shadow: 0 2px 8px rgba(79, 163, 209, 0.08);
}

.service-card:hover,
.system-card:hover,
.why-card:hover,
.portfolio-card:hover {
  border-color: #4FA3D1;
  box-shadow: 0 8px 24px rgba(79, 163, 209, 0.15);
}

/* Text readability improvements */
.st-section-title {
  color: #1A3A52;
}

.st-section-desc {
  color: #4A6B8A;
}

.st-gold-text {
  background: linear-gradient(135deg, #4FA3D1 0%, #2B7AB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
