/* ============= CSS VARIABLES & LIGHT THEME ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #eac13d;
  --primary-light: rgba(197, 171, 23, 0.1);
  --secondary: #718096;
  --accent: #1a202c;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --success: #10b981;
  --border-color: rgba(0, 0, 0, 0.08);
  --gradient-1: linear-gradient(135deg, #eac13d 0%, #f5e1a3 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 100px;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-light);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: background 0.6s ease;
}

/* ============= IMAGE REPAIR UTILITIES ============= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============= GLOBAL UTILITIES ============= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.btn {
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 15px 30px rgba(234, 194, 18, 0.25);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(234, 194, 18, 0.25);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* ============= HEADER & NAVIGATION ============= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  max-height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 0.95rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.mobile-menu span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 4px;
  transition: 0.3s;
}

/* ============= HERO SECTION ============= */
.hero {
  margin-top: 100px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  object-fit: contain;
}

/* ============= FEATURES & SERVICES ============= */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

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

.mobile-only {
  display: none;
}
.desktop-only {
  display: inline-block;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

/* ============= ABOUT & WHY US ============= */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  margin: 0 auto;
}

/* ============= PROCESS TIMELINE ============= */
.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  padding-top: 20px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-sm);
}

/* ============= STATS ============= */
.stats {
  background: var(--accent);
  color: white;
  padding: 80px 0;
  border-radius: 40px;
  margin: 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============= CONTACT FORM ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-form {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 25px;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  font-family: inherit;
}

/* ============= FOOTER ============= */
footer {
  position: relative;
  z-index: 10;
  padding: 80px 0 40px;
  background: #f8fafc;
}

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

/* ============= SCROLL TO TOP ============= */
.scroll-top {
  position: fixed;
  bottom: 10px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 999;
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 184, 212, 0.4);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 992px) {
  .mobile-only {
    display: block;
    list-style: none;
  }
  .desktop-only {
    display: none !important;
  }

  .hero-flex,
  .about-content,
  .contact-grid,
  .footer-grid,
  .process-timeline {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image,
  .about-image {
    justify-content: center;
  }

  .hero-image img,
  .about-image img {
    max-width: 100%;
    margin: 0 auto;
  }

  .process-timeline::before {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 40px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn:not(.nav-actions .btn) {
    width: 100%;
  }
}
