/* =============================================
   Luna Global Services — Design System & Styles
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors - Applied Theme from gen-z-connect */
  --navy: #1a1a2e;
  --deep-blue: #2a2a40;
  --royal-blue: #c8006b;
  --royal-blue-light: #a8005a;
  --gold: #ff5a2b;
  --gold-light: #ff7c54;
  --light-bg: #f4f6fb;
  --white: #ffffff;
  --body-text: #6b7280;
  --heading-text: #1a1a2e;
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad-y: 100px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* --- Section Label Tags --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-label.left-only::after {
  display: none;
}

.section-label.left-only::before {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 600px;
  line-height: 1.8;
}

/* =============================================
   1. NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: var(--white);
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--heading-text);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-med);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--royal-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  padding: 10px 24px !important;
  border-radius: 50px;
  transition: all var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--heading-text);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   2. HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(244, 246, 251, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%), url('../assets/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 80px;
}

/* Floating Geometric Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--royal-blue);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--gold);
  bottom: 10%;
  left: 5%;
  animation-delay: -5s;
  animation-duration: 25s;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: var(--royal-blue-light);
  top: 40%;
  right: 20%;
  animation-delay: -10s;
  animation-duration: 18s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: var(--gold-light);
  top: 15%;
  left: 30%;
  animation-delay: -7s;
  animation-duration: 22s;
}

.shape-5 {
  width: 300px;
  height: 300px;
  background: var(--royal-blue);
  bottom: -50px;
  right: 30%;
  animation-delay: -3s;
  animation-duration: 28s;
}

.shape-hex {
  width: 200px;
  height: 200px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 20%;
  right: 8%;
  opacity: 0.04;
  animation-delay: -12s;
  animation-duration: 30s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(30px, -40px) rotate(5deg) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) rotate(-3deg) scale(0.95);
  }

  75% {
    transform: translate(15px, 35px) rotate(4deg) scale(1.02);
  }
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: var(--heading-text);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--body-text);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--royal-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(200, 0, 107, 0.35);
}

.btn-primary:hover {
  background: var(--royal-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 0, 107, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 90, 43, 0.3);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--body-text);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--body-text), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

/* =============================================
   3. ABOUT SECTION
   ============================================= */
.about {
  padding: var(--section-pad-y) 0;
  padding-top: 140px;
  background: var(--light-bg);
}

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

.about-text .section-title {
  color: var(--heading-text);
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(200, 0, 107, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(200, 0, 107, 0.2), rgba(255, 90, 43, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 0, 107, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   4. SERVICES SECTION
   ============================================= */
.services {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}

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

.services .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--light-bg);
  border-radius: 20px;
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: all var(--transition-med);
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(200, 0, 107, 0.12);
  background: var(--white);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(200, 0, 107, 0.1), rgba(200, 0, 107, 0.05));
  color: var(--royal-blue);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-text);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--body-text);
}

/* =============================================
   5. PROCESS / HOW IT WORKS (Dark Section)
   ============================================= */
.process {
  padding: var(--section-pad-y) 0;
  background: var(--light-bg);
  position: relative;
  clip-path: polygon(0 0, 100% 4%, 100% 96%, 0 100%);
  padding-top: 140px;
  padding-bottom: 140px;
}

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

.process .section-title {
  color: var(--heading-text);
}

.process .section-subtitle {
  color: var(--body-text);
  margin: 0 auto;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

/* Connecting line */
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      rgba(255, 90, 43, 0.3) 0px,
      rgba(255, 90, 43, 0.3) 8px,
      transparent 8px,
      transparent 16px);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 16px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(200, 0, 107, 0.35);
  transition: all var(--transition-med);
}

.timeline-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(200, 0, 107, 0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.timeline-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--body-text);
  max-width: 200px;
  line-height: 1.6;
}

/* =============================================
   6. TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-pad-y) 0;
  padding-top: 140px;
  background: var(--light-bg);
}

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

.testimonials .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition-med);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.8;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-text);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--body-text);
}

/* =============================================
   7. WHY CHOOSE US
   ============================================= */
.why-us {
  padding: var(--section-pad-y) 0;
  background: var(--white);
}

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

.why-us .section-subtitle {
  margin: 0 auto;
}

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

.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--light-bg);
  transition: all var(--transition-med);
  border: 1px solid transparent;
}

.why-card:hover {
  background: var(--white);
  border-color: rgba(200, 0, 107, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200, 0, 107, 0.08), rgba(255, 90, 43, 0.08));
  color: var(--royal-blue);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* =============================================
   8. CONTACT / CTA SECTION
   ============================================= */
.contact {
  padding: var(--section-pad-y) 0;
  background: var(--light-bg);
  position: relative;
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  padding-top: 140px;
}

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

.contact .section-title {
  color: var(--heading-text);
}

.contact .section-subtitle {
  color: var(--body-text);
  margin: 0 auto;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(200, 0, 107, 0.1);
  border-radius: 12px;
  color: var(--heading-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--royal-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 0, 107, 0.15);
}

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

.btn-submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(38, 98, 217, 0.35);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(38, 98, 217, 0.5);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(200, 0, 107, 0.1);
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  background: var(--white);
  border-color: rgba(200, 0, 107, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(200, 0, 107, 0.05);
  color: var(--royal-blue);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--gold);
}

/* =============================================
   9. FOOTER
   ============================================= */
.footer {
  background: var(--white);
  padding: 50px 0 24px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 0, 107, 0.05);
  color: var(--royal-blue);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(200, 0, 107, 0.1);
}

.footer-socials a:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--body-text);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--royal-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--body-text);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.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;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--royal-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-med);
  box-shadow: 0 4px 20px rgba(38, 98, 217, 0.35);
  border: none;
}

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

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

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

  .timeline {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 70px;
  }

  /* Nav Mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right var(--transition-med);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

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

  .nav-links a {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-scroll {
    display: none;
  }

  /* About */
  .about {
    padding-top: 100px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process {
    clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .timeline-step {
    flex: 0 0 100%;
  }

  /* Testimonials */
  .testimonials {
    padding-top: 100px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact {
    clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
    padding-top: 100px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    text-align: center;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}