/* ============================================================
   PREMIUM TOW TRUCK SERVICE — DESIGN SYSTEM
   Deep Navy + Electric Blue + Gold
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
  /* ── Colors ── */
  --primary: #0a1628;
  --primary-light: #0f1f35;
  --primary-lighter: #152a45;
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --accent-glow: rgba(0, 180, 216, 0.25);
  --gold: #f0b429;
  --gold-dark: #d4a017;
  --gold-glow: rgba(240, 180, 41, 0.25);
  --white: #ffffff;
  --text: #e2e8f0;
  --text-muted: #7b8fa3;
  --glass: rgba(10, 22, 40, 0.82);
  --glass-card: rgba(15, 31, 53, 0.55);
  --glass-border: rgba(0, 180, 216, 0.1);
  --glass-border-hover: rgba(0, 180, 216, 0.35);

  /* ── Shadows ── */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* ── Radii ── */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 50px;

  /* ── Misc ── */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --nav-height: 72px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--primary);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }
::selection { background: var(--accent); color: var(--primary); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.section {
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--white);
}

.section-title .gradient {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

.logo-text {
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(0, 180, 216, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--accent-glow);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.15) 0%,
    rgba(10, 22, 40, 0.3) 40%,
    rgba(10, 22, 40, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) clamp(16px, 4vw, 40px) 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(32px, 7vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .accent { color: var(--accent); }
.hero-title .gold   { color: var(--gold); }

.hero-desc {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  font-weight: 500;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  background: var(--primary-dark);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  z-index: 10;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

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

.stat-num {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Cairo', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--accent-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1da851);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   GLASS CARDS
   ============================================================ */
.glass-card {
  background: var(--glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 25px var(--accent-glow);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card { text-align: center; }

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(240,180,41,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.glass-card:hover .service-icon {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Service Detail Cards (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.service-detail.reverse { direction: ltr; }
.service-detail.reverse > * { direction: rtl; }

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.service-detail-text h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.service-detail-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.area-item {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.area-item:hover {
  border-color: var(--accent);
  background: rgba(0, 180, 216, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.area-icon { font-size: 28px; margin-bottom: 10px; }

.area-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.area-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card { text-align: center; position: relative; overflow: hidden; }

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  left: -34px;
  background: var(--gold);
  color: var(--primary);
  padding: 4px 44px;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(45deg);
}

.price-icon { font-size: 40px; margin-bottom: 12px; }

.price-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-features {
  list-style: none;
  text-align: right;
  margin-bottom: 24px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.price-features li .check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-check {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card { position: relative; }

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
  color: var(--text);
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question::before {
  content: '❓';
  flex-shrink: 0;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  padding-right: 32px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  margin-bottom: 28px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.video-section video {
  width: 100%;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-light);
  border-top: 1px solid var(--glass-border);
  padding-top: 60px;
}

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

.footer-brand h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 0;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-right: 8px;
}

.footer-contact-item {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item span { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

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

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse-ring 2s ease-out infinite;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1da851);
}

.float-btn.whatsapp::before {
  background: rgba(37, 211, 102, 0.3);
}

.float-btn.phone {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
}

.float-btn.phone::before {
  background: var(--gold-glow);
  animation-delay: 0.6s;
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 20px 40px;
}

.thankyou-card { text-align: center; max-width: 600px; }

.thankyou-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) clamp(16px, 4vw, 40px) 60px;
}

.privacy-content h1 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 24px;
  text-align: center;
}

.privacy-content h2 {
  font-size: 20px;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-content p,
.privacy-content li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 12px;
}

.privacy-content ul {
  padding-right: 24px;
  margin-bottom: 16px;
}

/* ============================================================
   BACKGROUND PATTERNS
   ============================================================ */
.bg-dots { position: relative; }

.bg-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.bg-dots > * { position: relative; z-index: 1; }

.bg-alt {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(240,180,41,0.12));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-info-text a {
  color: var(--accent);
  text-decoration: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll Reveal */
.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; }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 100%;
  max-width: 900px;
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10000;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { gap: 32px; }
  .service-detail { gap: 28px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--nav-height));
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px 20px;
    gap: 4px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--glass-border);
    overflow-y: auto;
  }

  .nav-menu.open { right: 0; }
  .nav-toggle    { display: flex; }
  .nav-cta       { display: none; }

  .hero-content {
    padding-top: calc(var(--nav-height) + 30px);
    padding-bottom: 130px;
  }

  .about-grid,
  .contact-grid,
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    direction: rtl;
  }

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

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

  .floating-btns {
    bottom: 16px;
    left: 16px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .cta-section { padding: 36px 20px; }

  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .stat-num { font-size: 22px; }
}
