/* ================================================= */
/*  services.css – Services Page Only (2025 Luxury)  */
/*  Fixed checkmarks + perfect small screen fit      */
/* ================================================= */

./* ===================================================== */
/*  main.css – FINAL LUXURY SHARED STYLES 2025           */
/*  FIXED: No horizontal scroll / extra right space      */
/*  Hero now 100% safe on ALL devices                    */
/* ===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;           /* ← Critical fix */
}

body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;           /* ← Critical fix */
  -webkit-font-smoothing: antialiased;
}

/* ======================================== */
/*  MOBILE SAFE AREA – NO OVERFLOW        */
/* ======================================== */
@media (max-width: 768px) {
  body {
    padding-top: 88px;   /* Space for fixed header */
  }
}

/* ======================================== */
/*  UNIVERSAL VIDEO HERO – ALL PAGES      */
/*  NO NEGATIVE MARGIN → NO RIGHT SCROLL   */
/* ======================================== */

/* Title & subtitle */
.reveal-title,
.hero-title {
  font-size: clamp(3.8rem, 10vw, 12rem);
  line-height: 0.92;
  font-weight: 700;
}

.reveal-title .line,
.hero-title .line {
  display: block;
  overflow: hidden;
}

.reveal-title .line span,
.hero-title .line span {
  display: block;
  transform: translateY(110%);
}

.gradient-text {
  background: linear-gradient(90deg, #00eeff, #00ffcc, #88ffaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-subtitle,
.subtitle {
  font-size: clamp(1.2rem, 3.5vw, 1.9rem);
  margin-top: 32px;
  opacity: 0.92;
  font-weight: 300;
  max-width: 780px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

/* ======================================== */
/*  HEADER – PERFECT ON MOBILE              */
/* ======================================== */
.header-luxury {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.7) 70%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.4rem 0;
}

.header-luxury.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  padding: 0.9rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 5%;
  min-height: 70px;
}

.logo h2 {
  font-size: clamp(1.9rem, 5.5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(90deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1;
}

/* Rest of your nav, hamburger, mobile menu, buttons, footer — unchanged */
.nav-menu ul { display: flex; list-style: none; gap: clamp(20px, 5vw, 56px); margin: 0; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 500; font-size: clamp(0.98rem, 2.4vw, 1.12rem); position: relative; transition: color 0.4s; white-space: nowrap; }
.nav-menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -10px; left: 50%; background: linear-gradient(90deg, #00eeff, #00ff88); transition: all 0.4s; transform: translateX(-50%); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: #00eeff; }

.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 6px; cursor: pointer; z-index: 1001; width: 44px; height: 44px; }
.hamburger span { width: 28px; height: 3px; background: #fff; border-radius: 3px; transition: all 0.4s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(10px, -10px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(0,0,0,0.98); backdrop-filter: blur(30px); transition: right 0.6s cubic-bezier(0.77, 0, 0.18, 1); padding-top: 140px; display: flex; align-items: flex-start; justify-content: center; }
  .nav-menu.active { right: 0; }
  .nav-menu ul { flex-direction: column; align-items: center; gap: 0; }
  .nav-menu a { font-size: 2.8rem; padding: 22px 0; }
}

/* Universal CTA Button (unchanged – already perfect) */
.btn-glow,
.btn-glow.large {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00eeff, #00ff88);
  color: #000;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 20px 56px;
  border: none;
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 50px rgba(0, 238, 255, 0.6);
  min-width: 240px;
  z-index: 1;
}
.btn-glow::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, #00ff88, #00eeff); border-radius: 60px; opacity: 0; transition: opacity 0.5s; z-index: -1; }
.btn-glow:hover::before { opacity: 1; }
.btn-glow:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 0 120px rgba(0, 238, 255, 0.9); }
.btn-glow.large { padding: 26px 72px; font-size: 1.35rem; min-width: 320px; }
@media (max-width: 768px) { .btn-glow { padding: 18px 48px; font-size: 1.1rem; min-width: 220px; } .btn-glow.large { padding: 22px 60px; font-size: 1.25rem; min-width: 280px; } }
@media (max-width: 480px) { .btn-glow, .btn-glow.large { width: 100%; max-width: 340px; padding: 20px 40px; font-size: 1.2rem; } }

/* Footer (unchanged – already perfect) */
.footer-luxury { background: #000; padding: 120px 0 50px; border-top: 1px solid rgba(0,238,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-col h3, .footer-col h4 { background: linear-gradient(90deg, #00eeff, #00ff88); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 24px; font-size: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col a { color: #aaa; text-decoration: none; font-size: 1rem; line-height: 2.4; display: block; position: relative; padding-left: 20px; transition: all 0.3s ease; }
.footer-col a::before { content: "→"; position: absolute; left: 0; opacity: 0; color: #00eeff; transition: all 0.3s ease; }
.footer-col a:hover { color: #00eeff; padding-left: 28px; }
.footer-col a:hover::before { opacity: 1; left: 4px; }
.social-luxury { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.social-luxury a { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(0,238,255,0.1); color: #00eeff; font-size: 1.5rem; border-radius: 50%; transition: all 0.4s ease; }
.social-luxury a:hover { background: #00eeff; color: #000; transform: translateY(-12px) scale(1.12); }
.footer-bottom { text-align: center; padding-top: 50px; border-top: 1px solid rgba(255,255,255,0.05); color: #666; font-size: 0.95rem; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 70px; } .social-luxury { justify-content: center; } }
@media (max-width: 480px) { .container { padding: 0 16px; } .nav-container { padding: 0 4%; } }

.reveal-title {
  font-size: clamp(4.2rem, 10.5vw, 12rem);
  line-height: 0.92;
}

.reveal-title .line {
  display: block;
  overflow: hidden;
}

.reveal-title .line span {
  display: block;
  transform: translateY(110%);
}

/* Services Grid */
.services-grid-section {
  padding: 180px 0 160px;
  background: #0f0f0f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  perspective: 1600px;
  cursor: pointer;
}

.card-inner {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,238,255,0.15);
  border-radius: 36px;
  padding: 56px 40px;
  height: 100%;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover .card-inner {
  transform: translateY(-24px) rotateX(10deg);
  border-color: #00eeff;
  box-shadow: 0 70px 140px rgba(0,238,255,0.32);
}

.service-card i {
  font-size: 4.5rem;
  margin-bottom: 34px;
  background: linear-gradient(45deg, #00eeff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.service-card p {
  opacity: 0.92;
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Fixed checkmarks – now real tick icons */
.features {
  list-style: none;
  margin-bottom: 36px;
  padding-left: 4px;
}

.features li {
  padding: 12px 0;
  font-size: 1.02rem;
  position: relative;
  padding-left: 34px;
  color: #ccc;
}

.features li::before {
  content: "\f058"; /* Font Awesome solid check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #00
  color: #00eeff;
  font-size: 1.2rem;
}

.service-cta {
  color: #00eeff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s;
  display: inline-block;
}

.service-cta:hover {
  color: #00ff88;
  transform: translateX(12px);
}

/* Process */
.process-section {
  padding: 180px 0;
  background: #0a0a0a;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 70px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 6rem;
  font-weight: 700;
  opacity: 0.08;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

/* CTA */
.services-cta {
  padding: 200px 0;
  text-align: center;
  background: linear-gradient(to bottom, #0a0a0a, #000);
}

.services-cta h2 {
  font-size: clamp(3.2rem, 8vw, 6rem);
  margin-bottom: 28px;
}

.services-cta p {
  font-size: 1.5rem;
  margin-bottom: 60px;
  opacity: 0.9;
}

/* Mobile Perfection – Cards now perfect on tiny screens */
@media (max-width: 768px) {
  .services-grid-section,
  .process-section,
  .services-cta { 
    padding: 130px 0; 
  }

  .card-inner {
    padding: 48px 32px;
  }

  .service-card:hover .card-inner {
    transform: translateY(-16px); /* Less dramatic on mobile */
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-inner {
    padding: 44px 28px;
  }

  .service-card i {
    font-size: 4rem;
  }

  .service-card h3 {
    font-size: 1.75rem;
  }

  .features li {
    font-size: 1rem;
    padding-left: 32px;
  }

  .services-grid-section,
  .process-section,
  .services-cta {
    padding: 110px 0;
  }
  }
