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

/* ===== CSS Variables ===== */
:root {
  --primary: #d4a43a;
  --primary-light: #f0c850;
  --primary-dark: #b8862e;
  --accent: #1a73e8;
  --accent-light: #4a9af5;
  --bg-dark: #0a0e1a;
  --bg-darker: #060912;
  --bg-card: rgba(15, 20, 40, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(212, 164, 58, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(212, 164, 58, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== Utility ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--primary);
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.8;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a;
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 164, 58, 0.35);
}
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-outline:hover {
  background: var(--primary); color: #0a0e1a; transform: translateY(-2px);
}

/* ===== Background Effects ===== */
.bg-grid {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(212, 164, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 164, 58, 0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: 0;
}
.bg-glow {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  filter: blur(150px); opacity: 0.12; pointer-events: none; z-index: 0;
}
.bg-glow-1 { top: -100px; right: -100px; background: var(--primary); }
.bg-glow-2 { bottom: 20%; left: -150px; background: var(--accent); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light); padding: 10px 0;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo .logo-img {
  height: 48px; width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(212, 164, 58, 0.3));
}
.nav-logo:hover .logo-img { transform: scale(1.05); }
.footer-logo-img {
  height: 60px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(212, 164, 58, 0.25));
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.85rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0e1a; transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--text-primary);
  transition: var(--transition);
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; background: #000;
}
.slides-wrapper { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide.prev { z-index: 1; }

/* Slide Background with Ken Burns */
.slide-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.slide.active .slide-bg img {
  animation: kenBurnsActive 8s ease-in-out forwards;
}
@keyframes kenBurnsActive {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes kenBurns {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Slide Overlay */
.slide-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(6, 9, 18, 0.88) 0%, rgba(6, 9, 18, 0.5) 50%, rgba(6, 9, 18, 0.75) 100%),
    linear-gradient(to top, rgba(6, 9, 18, 0.95) 0%, transparent 40%);
  z-index: 1;
}

/* Particles */
.slide-particles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none; overflow: hidden;
}

/* Slide Content */
.slide .container {
  position: relative; z-index: 3;
  height: 100vh; display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 120px;
}
.slide-content {
  max-width: 720px;
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.slide.active .slide-content {
  opacity: 1; transform: translateY(0);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px; border-radius: 50px;
  background: rgba(212, 164, 58, 0.12); border: 1px solid rgba(212, 164, 58, 0.3);
  font-size: 0.78rem; font-weight: 700; color: var(--primary);
  margin-bottom: 28px; letter-spacing: 2px;
  backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 12px var(--primary);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

/* Hero Heading */
.slide h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.slide h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), #e8c547);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slide p {
  font-size: 1.12rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 36px; max-width: 540px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider Arrows */
.slider-arrow {
  position: absolute; top: 50%; z-index: 10;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.slider-prev { left: 32px; transform: translateY(-50%); }
.slider-next { right: 32px; transform: translateY(-50%); }
.slider-arrow:hover {
  background: var(--primary); border-color: var(--primary);
  color: #0a0e1a; transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 164, 58, 0.4);
}

/* Slider Bottom Bar */
.slider-bottom {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 28px;
  padding: 14px 28px; border-radius: 50px;
  background: rgba(10, 14, 26, 0.6); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.slider-counter {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-heading); font-weight: 700;
}
.slider-counter .current-slide {
  font-size: 1.3rem; color: var(--primary);
}
.slider-counter .separator { color: var(--text-muted); font-size: 0.9rem; }
.slider-counter .total-slides { font-size: 0.85rem; color: var(--text-muted); }

/* Slider Dots */
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); border: none;
  transition: var(--transition); cursor: pointer;
  position: relative;
}
.dot.active {
  background: var(--primary); width: 36px; border-radius: 6px;
  box-shadow: 0 0 16px rgba(212, 164, 58, 0.5);
}
.dot:hover { background: rgba(255, 255, 255, 0.35); }
.dot.active:hover { background: var(--primary); }

/* Progress Bar */
.slider-progress {
  width: 80px; height: 3px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.1); overflow: hidden;
}
.progress-bar {
  height: 100%; width: 0%; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.1s linear;
}

/* Stats Floating Bar */
.hero-stats-float {
  position: absolute; bottom: 100px; right: 40px; z-index: 10;
  display: flex; align-items: center; gap: 24px;
  padding: 24px 36px; border-radius: var(--radius);
  background: rgba(10, 14, 26, 0.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 164, 58, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.hero-stats-float .hero-stat { text-align: center; }
.hero-stat h3 {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 800; color: var(--primary);
}
.hero-stat p { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(212,164,58,0.3), transparent);
}

/* Floating Particles Animation */
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(212, 164, 58, 0.3);
  animation: particleFloat linear infinite;
  pointer-events: none;
}


/* ===== Partners Bar ===== */
.partners-bar {
  padding: 40px 0; border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(10, 14, 26, 0.6); position: relative; z-index: 2;
  overflow: hidden;
}
.partners-bar .label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted); text-align: center;
  margin-bottom: 28px;
}
.partners-track {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.partner-item {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.25); transition: var(--transition);
  white-space: nowrap; letter-spacing: 1px;
}
.partner-item:hover { color: var(--primary); }

/* ===== About ===== */
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.about-float-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  padding: 20px 24px; border-radius: var(--radius-sm);
  background: rgba(10, 14, 26, 0.85); backdrop-filter: blur(16px);
  border: 1px solid var(--border); display: flex; align-items: center; gap: 16px;
}
.about-float-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem;
}
.about-float-card h4 { font-size: 0.95rem; font-weight: 700; }
.about-float-card p { font-size: 0.8rem; color: var(--text-muted); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-radius: var(--radius-sm); background: var(--bg-glass);
  border: 1px solid var(--border-light); transition: var(--transition);
}
.about-feature:hover { border-color: var(--border); transform: translateY(-2px); }
.about-feature .check {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(212, 164, 58, 0.15); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--primary); font-size: 0.75rem;
}
.about-feature span { font-size: 0.88rem; font-weight: 500; }

/* ===== Services ===== */
.services { background: var(--bg-darker); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border); transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(212, 164, 58, 0.1); border: 1px solid rgba(212, 164, 58, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 700; margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== Why Choose Us ===== */
.why-us .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-us-item {
  display: flex; gap: 18px; padding: 24px;
  border-radius: var(--radius-sm); background: var(--bg-glass);
  border: 1px solid var(--border-light); transition: var(--transition);
}
.why-us-item:hover { border-color: var(--border); background: rgba(212, 164, 58, 0.03); }
.why-us-item .num {
  font-family: var(--font-heading); font-size: 1.6rem;
  font-weight: 800; color: var(--primary); opacity: 0.5; flex-shrink: 0;
}
.why-us-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-us-item p { font-size: 0.88rem; color: var(--text-secondary); }
.why-us-image { position: relative; }
.why-us-image img { border-radius: var(--radius); width: 100%; }
.why-us-image .stat-card {
  position: absolute; top: 24px; right: -30px;
  padding: 20px 28px; border-radius: var(--radius-sm);
  background: rgba(10, 14, 26, 0.9); backdrop-filter: blur(16px);
  border: 1px solid var(--border); text-align: center;
}
.why-us-image .stat-card h3 {
  font-family: var(--font-heading); font-size: 2rem;
  font-weight: 800; color: var(--primary);
}
.why-us-image .stat-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== Products ===== */
.products { background: var(--bg-darker); }
.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-desc { margin: 0 auto; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.product-card {
  padding: 28px 22px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-light);
  text-align: center; transition: var(--transition); cursor: pointer;
}
.product-card:hover {
  border-color: var(--primary); transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(212, 164, 58, 0.1);
}
.product-card .p-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%; background: rgba(212, 164, 58, 0.08);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.product-card h4 { font-size: 0.95rem; font-weight: 600; }
.product-card p { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-inner {
  padding: 60px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 164, 58, 0.1), rgba(26, 115, 232, 0.08));
  border: 1px solid var(--border); text-align: center; position: relative;
}
.cta-inner h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 500px;
  margin: 0 auto 32px;
}
.cta-inner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-item {
  display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-sm);
  background: var(--bg-glass); border: 1px solid var(--border-light);
}
.contact-item .c-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(212, 164, 58, 0.1); display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: var(--text-secondary); }
.contact-form {
  padding: 40px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-light);
}
.contact-form h3 {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-light);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212, 164, 58, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ===== Footer ===== */
.footer {
  padding: 60px 0 0; background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.footer-brand .logo span { color: var(--primary); }
.footer-brand p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.footer h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; color: var(--text-primary);
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition);
}
.footer ul a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  padding: 24px 0; border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-muted);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-glass); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition); font-size: 0.9rem;
}
.social-links a:hover {
  background: var(--primary); color: #0a0e1a; border-color: var(--primary);
}

/* ===== Animations ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh; z-index: 999;
  background: rgba(10, 14, 26, 0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--text-secondary); transition: var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .close-btn {
  position: absolute; top: 20px; right: 24px; background: none;
  color: var(--text-primary); font-size: 2rem;
}

/* ===== Counter Animation ===== */
.counter { font-variant-numeric: tabular-nums; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about .container, .why-us .container, .contact .container {
    grid-template-columns: 1fr; gap: 40px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-image .stat-card { right: 10px; }
  .hero-stats-float { right: 24px; bottom: 90px; gap: 18px; padding: 18px 24px; }
  .hero-stat h3 { font-size: 1.5rem; }
  .slider-arrow { width: 44px; height: 44px; font-size: 0.85rem; }
  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .slide h1 { font-size: 2rem; }
  .hero-stats-float { 
    position: absolute; bottom: 80px; right: 16px; left: 16px;
    justify-content: center; gap: 16px; padding: 16px 20px;
  }
  .hero-stat h3 { font-size: 1.3rem; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slider-bottom { padding: 10px 20px; gap: 16px; }
  .slide .container { padding-bottom: 200px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 24px; }
  .section { padding: 60px 0; }
}

