/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f0f4fc;
  color: #0b1a2a;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== GLASSMORPHISM NAVIGATION ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(8, 27, 41, 0.55);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 14px 0;
  transition: 0.2s;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #3b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00d4ff;
  transition: 0.25s;
}

nav a:hover {
  color: #fff;
}
nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #00d4ff;
  color: #081b29 !important;
  padding: 8px 22px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: #fff;
  color: #081b29 !important;
  box-shadow: 0 8px 22px rgba(0, 212, 255, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.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);
}

/* ===== HERO (animated gradient + shapes) ===== */
.hero {
  padding: 100px 20px 120px;
  background: linear-gradient(135deg, #081b29 0%, #0f3b5c 45%, #1b6b9e 80%, #00d4ff);
  background-size: 300% 300%;
  animation: gradientShift 12s ease-in-out infinite alternate;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 30%; }
  100% { background-position: 0% 70%; }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shapes span {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: floatShape 18s infinite alternate ease-in-out;
}
.hero-shapes span:nth-child(1) {
  width: 300px; height: 300px; top: -80px; left: -60px;
}
.hero-shapes span:nth-child(2) {
  width: 500px; height: 500px; bottom: -200px; right: -100px;
  animation-duration: 26s;
}
.hero-shapes span:nth-child(3) {
  width: 200px; height: 200px; top: 30%; right: 10%;
  animation-duration: 14s;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.2); }
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.hero h1 span {
  background: linear-gradient(to right, #b3f0ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.btn-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  background: #00d4ff;
  color: #081b29;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.5);
  background: white;
  color: #081b29;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== STATISTICS ===== */
.stats-section {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0e5ba8;
  letter-spacing: -0.5px;
}
.stat-item p {
  color: #4b5f73;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 2px;
}

/* ===== SERVICES ===== */
.services {
  padding: 90px 0;
  background: #f8faff;
}

.section-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #081b29;
}
.section-sub {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #3f5a70;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 38px 28px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 20, 40, 0.06);
  transition: 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(2px);
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 84, 184, 0.10);
  border-color: rgba(0, 212, 255, 0.25);
}

.card i {
  font-size: 2.6rem;
  color: #00a6d4;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #0a1e30;
}
.card p {
  color: #2f4a61;
  font-size: 0.98rem;
}

/* ===== WHY ASSCARI ===== */
.why-section {
  padding: 90px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.why-content p {
  font-size: 1.1rem;
  color: #2e4a63;
  margin-bottom: 25px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  font-weight: 500;
}
.why-features li i {
  color: #00d4ff;
  font-size: 1.3rem;
  width: 28px;
}

.why-image {
  background: linear-gradient(145deg, #e7f2fc, #d4e7f7);
  border-radius: 40px;
  padding: 40px 30px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(0,212,255,0.2);
}
.why-image i {
  font-size: 4.5rem;
  color: #0e5ba8;
  margin-bottom: 10px;
}

/* ===== PROCESS TIMELINE ===== */
.process-section {
  padding: 80px 0;
  background: #f0f6fe;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.timeline-step {
  background: white;
  padding: 30px 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.02);
  transition: 0.2s;
}
.timeline-step:hover {
  transform: scale(1.02);
  border-color: #00d4ff;
}
.timeline-step .step-num {
  background: #081b29;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
  font-size: 1.3rem;
}
.timeline-step h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 0.95rem;
  color: #3d5a73;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.testimonial {
  background: #f9fcff;
  padding: 32px 28px;
  border-radius: 28px;
  border: 1px solid #eaf1fa;
  transition: 0.2s;
}
.testimonial:hover {
  border-color: #00d4ff;
  box-shadow: 0 12px 30px rgba(0, 84, 184, 0.06);
}
.testimonial i {
  color: #00b8e6;
  font-size: 1.8rem;
  opacity: 0.5;
  margin-bottom: 12px;
}
.testimonial p {
  font-style: italic;
  color: #1f374d;
  margin-bottom: 18px;
}
.testimonial h5 {
  font-weight: 600;
  color: #081b29;
}
.testimonial span {
  font-size: 0.85rem;
  color: #54738f;
}

/* ===== CTA / CONTACT ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #081b29, #114267);
  color: white;
  text-align: center;
  border-radius: 40px 40px 0 0;
  margin-top: 20px;
}
.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.cta-section p {
  max-width: 500px;
  margin: 0 auto 30px;
  opacity: 0.8;
}
.cta-section .btn {
  background: #00d4ff;
  color: #081b29;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}
.cta-section .btn:hover {
  background: white;
}

/* ===== FOOTER ===== */
footer {
  background: #081b29;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 30px;
  border-top: 1px solid rgba(0,212,255,0.1);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-col h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.2s;
}
.footer-col a:hover {
  color: #00d4ff;
}
.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 25px;
  font-size: 0.9rem;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .hero h1 { font-size: 44px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 27, 41, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  }
  
  nav.open {
    max-height: 400px;
    padding: 20px 0;
  }
  
  nav a {
    padding: 12px 30px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  nav a::after {
    display: none;
  }
  nav a:hover {
    background: rgba(0, 212, 255, 0.1);
  }
  .nav-cta {
    background: transparent;
    color: #00d4ff !important;
    border: 1px solid #00d4ff;
    margin: 8px 20px;
    border-radius: 40px;
  }
  .nav-cta:hover {
    background: #00d4ff;
    color: #081b29 !important;
  }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 32px; }
  .btn-group .btn { width: 100%; text-align: center; }
  .stat-item h3 { font-size: 2rem; }
  .section-title { font-size: 2rem; }
  .hero { padding: 80px 20px 90px; }
  .cta-section h2 { font-size: 2rem; }
  .footer-grid { flex-direction: column; text-align: center; }
}