/* =============================================
   ANAM CAR ACCESSORIES – Premium Design System
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --clr-bg:        #050505;
  --clr-surface:   #0A0A0A;
  --clr-card:      #111111;
  --clr-border:    rgba(255, 255, 255, 0.06);
  --clr-white:     #FFFFFF;
  --clr-grey:      #737373;
  --clr-light:     #D4D4D4;
  --clr-accent:    #0055ff;        /* electric blue accent */
  --clr-accent2:   #991b1b;        /* deep red accent */
  --gradient-gold: linear-gradient(135deg, #0055ff 0%, #00f0ff 100%);
  --gradient-dark: linear-gradient(180deg, #050505 0%, #000000 100%);
  --shadow-lg:     0 25px 60px rgba(0,0,0,0.9);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-glow:   0 0 30px rgba(0, 85, 255, 0.15);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-head:     'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 110px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--clr-grey);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== NAVBAR ===== */
header {
  position: sticky;
  top: 20px;
  z-index: 1000;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 24px rgba(0, 102, 255, 0.15);
  transition: all 0.4s ease;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
}

.logo img {
  height: 95px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}
.logo:hover img { transform: scale(1.05); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 30px;
  height: 3px;
  background-color: var(--clr-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-light);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--clr-accent);
}

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

.nav-cta {
  background: var(--clr-accent) !important;
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 85, 255, 0.4); color: #fff !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(0, 85, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 85, 255, 0.5);
  color: #0d0d0d;
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-3px);
}

.btn-3d-catalog {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 0 #0050b3, 0 15px 25px rgba(0, 114, 255, 0.4);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: all 0.15s ease-out;
  position: relative;
  overflow: hidden;
}

.btn-3d-catalog::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-3d-catalog:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #0050b3, 0 10px 15px rgba(0, 114, 255, 0.5);
}

.btn-3d-catalog:hover::before {
  left: 150%;
}

.btn-3d-catalog:active {
  transform: translateY(6px);
  box-shadow: 0 0px 0 #0050b3, 0 2px 5px rgba(0, 114, 255, 0.6);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5,5,5,0.95) 0%,
    rgba(5,5,5,0.8) 60%,
    rgba(5,5,5,0.4) 100%
  );
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 85, 255, 0.12);
  border: 1px solid rgba(0, 85, 255, 0.4);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--clr-accent); border-radius: 50%; display: inline-block; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
}

.stat-item {
  flex: 1;
  padding: 24px 28px;
  border-right: 1px solid var(--clr-border);
  text-align: center;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 85, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.stat-item:hover {
  background: rgba(0, 85, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 85, 255, 0.1);
  transform: translateY(-5px);
}
.stat-item:hover::before {
  left: 100%;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.stat-item:hover .stat-num {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(0, 85, 255, 0.6);
}

.stat-label {
  font-size: 12px;
  color: var(--clr-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===== WHY US / FEATURE STRIP ===== */
.feature-strip {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 40px 0;
}

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

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-strip-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.feature-strip-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 85, 255, 0.15), 0 0 15px rgba(0, 85, 255, 0.1);
  border-color: rgba(0, 85, 255, 0.4);
}

.feature-strip-item:hover::before {
  left: 150%;
}

.feature-strip-item:hover .feature-icon {
  transform: scale(1.15) rotate(5deg) translateZ(20px);
  background: var(--gradient-gold);
  color: #0d0d0d;
  box-shadow: 0 8px 20px rgba(0, 85, 255, 0.4);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 85, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-strip-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.feature-strip-text p {
  font-size: 12px;
  color: var(--clr-grey);
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.product-card:hover {
  /* transform handled by JS */;
  border-color: rgba(0, 85, 255, 0.4);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 14px;
  color: var(--clr-grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card-link:hover { gap: 12px; color: var(--clr-accent); }

/* ===== ABOUT SPLIT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper { position: relative; }

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient-gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge .num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.check-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--clr-light);
}

.check-list li::before {
  content: '✓';
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: rgba(0, 85, 255, 0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== PROCESS STEPS ===== */
.process-section { background: var(--clr-surface); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 40px 24px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(0, 85, 255, 0.4);
  /* transform handled by JS */;
}

.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--clr-grey);
  line-height: 1.7;
}

/* ===== BANNER CTA ===== */
.cta-banner {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--clr-bg);
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.85);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--clr-surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testi-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testi-card:hover {
  border-color: rgba(0, 85, 255, 0.3);
  /* transform handled by JS */;
  box-shadow: var(--shadow-card);
}

.testi-stars {
  color: var(--clr-accent);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testi-card p {
  font-size: 15px;
  color: var(--clr-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

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

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0d0d0d;
  font-size: 18px;
  flex-shrink: 0;
}

.testi-author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
}

.testi-author-info span {
  font-size: 12px;
  color: var(--clr-grey);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--clr-grey);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 85, 255, 0.1);
  border: 1px solid rgba(0, 85, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-accent);
  margin-bottom: 6px;
}

.contact-item-text p {
  font-size: 15px;
  color: var(--clr-light);
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--clr-white);
  outline: none;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
}

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

.form-group select option { background: var(--clr-card); }

/* ===== FOOTER ===== */
footer {
  background: #020202; /* Extremely deep black to ground the page */
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 20px 40px rgba(0,0,0,0.5);
}

.footer-main {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--clr-grey);
  line-height: 1.8;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.social-link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #0d0d0d;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--clr-grey);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.footer-links a:hover { color: var(--clr-accent); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  font-size: 14px;
  color: var(--clr-grey);
  line-height: 1.6;
}

.footer-contact-list li strong {
  display: block;
  color: var(--clr-light);
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--clr-grey);
}

/* ===== PAGE HEADER ===== */
.page-hero {
  position: relative;
  padding: 240px 0 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--clr-bg);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.8);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.9), 0px 0px 4px rgba(0,0,0,0.8);
}

.page-hero p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.9), 0px 0px 4px rgba(0,0,0,0.8);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.9);
  font-weight: 500;
}

.breadcrumb a { color: #ffffff; }
.breadcrumb span { color: #ffffff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-item:nth-child(2) { border-right: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header {
    top: 10px;
    margin: 0 10px;
    border-radius: 24px;
  }
  .nav-wrap {
    padding: 10px 20px;
    justify-content: center;
    position: relative;
  }
  .logo img {
    height: 50px;
  }
  section { padding: 80px 0; }
  .menu-toggle { 
    display: flex; 
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.98) 0%, rgba(12, 12, 20, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 120px 36px 40px;
    gap: 0;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-right: 1px solid rgba(0, 85, 255, 0.15);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }
  .nav-links.active {
    left: 0;
    right: auto;
  }
  .nav-links li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links li a {
    display: block;
    padding: 18px 0;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .nav-links li a:hover,
  .nav-links li a:active {
    color: var(--clr-accent);
    padding-left: 12px;
  }
  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }
  .nav-links .nav-cta {
    display: inline-block;
    padding: 14px 32px;
    text-align: center;
    border-radius: 50px;
  }
  .hero-collage {
    height: 350px;
    margin-top: 20px;
  }
  .floating-stat-card {
    left: 10px;
    bottom: -15px;
    padding: 12px 20px;
  }
  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .products-grid, .testimonials-grid,
  .feature-strip-grid, .steps-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
  .hero-stats { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   PREMIUM UI/UX FEATURES
   ============================================= */

/* Custom Cursor */
body {
    cursor: none; /* Hide default cursor */
}
a, button, input, select, textarea {
    cursor: none; /* Hide default cursor on interactive elements too */
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--clr-accent);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 85, 255, 0.5);
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Stunning Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--clr-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.preloader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--clr-accent);
    border-bottom-color: var(--clr-accent);
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 0 0 24px rgba(0, 102, 255, 0.5);
    margin: 0;
}
.preloader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-left-color: #ff0033;
    border-right-color: #ff0033;
    animation: spin-reverse 2s linear infinite;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
    margin: 0;
}
.preloader img {
    height: 60px;
    position: relative;
    z-index: 10;
    animation: pulse-preloader 2s infinite ease-in-out;
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spin-reverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}
@keyframes pulse-preloader {
    0%, 100% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px rgba(255,255,255,1)); }
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--clr-text);
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.theme-toggle-btn:hover {
    background: var(--clr-surface);
    transform: rotate(15deg);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered reveals */
.reveal.d-1 { transition-delay: 0.1s; }
.reveal.d-2 { transition-delay: 0.2s; }
.reveal.d-3 { transition-delay: 0.3s; }

/* Theme Variables Overlay (Dark Mode Support) */
[data-theme="dark"] {
    --clr-bg:        #0B0F19;
    --clr-surface:   #111827;
    --clr-card:      #1F2937;
    --clr-border:    rgba(255, 255, 255, 0.05);
    --clr-white:     #FFFFFF;
    --clr-grey:      #9CA3AF;
    --clr-light:     #E5E7EB;
    --shadow-card:   0 8px 32px rgba(0,0,0,0.5);
}
[data-theme="dark"] header {
    background: rgba(20, 20, 20, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .nav-links a { color: #d4d4d4; }
[data-theme="dark"] .nav-links a:hover { color: var(--clr-accent); }
[data-theme="dark"] .hero-overlay {
    background: linear-gradient(120deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.65) 60%, rgba(13,13,13,0.3) 100%);
}
[data-theme="dark"] .cta-banner::before {
    background: rgba(13,13,13,0.8);
}

@media (hover: none) and (pointer: coarse) {
    body, a, button, input, select, textarea { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
}

/* =============================================
   MODERN HERO SECTION
   ============================================= */
.modern-hero {
  position: relative;
  padding: 60px 0 100px;
  background: radial-gradient(circle at top right, var(--clr-surface) 0%, var(--clr-bg) 100%);
  overflow: hidden;
}

.modern-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.modern-hero-content {
  position: relative;
  z-index: 2;
}

.modern-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 85, 255, 0.1);
  border: 1px solid rgba(0, 85, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.modern-hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--clr-accent);
}

.modern-hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.modern-hero-title em {
  font-style: normal;
  color: var(--clr-accent);
}

.modern-hero-subtitle {
  font-size: 19px;
  color: var(--clr-light);
  line-height: 1.8;
  margin-bottom: 40px;
}x;
  max-width: 90%;
}

.modern-hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero Collage Slider */
.hero-collage {
  position: relative;
  width: 100%;
  height: 650px;
}

.hero-slider {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  background: var(--clr-surface);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 5s ease-in-out;
  transform: scale(1.05);
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.floating-stat-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float-up-down 6s ease-in-out infinite;
}

[data-theme="dark"] .floating-stat-card {
  background: rgba(30, 30, 30, 0.85);
  border-color: rgba(255,255,255,0.1);
}

@keyframes float-up-down {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.stat-text h4 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
}

.stat-text p {
  font-size: 13px;
  color: var(--clr-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Background blob */
.hero-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,85,255,0.15) 0%, rgba(0,85,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .modern-hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-collage { height: 500px; margin-top: 40px; }
  .floating-stat-card { left: 20px; top: -20px; }
  .modern-hero-title { font-size: clamp(40px, 8vw, 60px); }
}

@media (max-width: 768px) {
  .hero-collage { height: 300px; margin-top: 20px; }
  .floating-stat-card { left: 10px; top: auto; bottom: -15px; padding: 12px 16px; gap: 10px; }
  .stat-icon { width: 32px; height: 32px; font-size: 14px; }
  .floating-stat-card h4 { font-size: 20px; line-height: 1; margin: 0 0 2px 0; }
  .floating-stat-card p { font-size: 10px; margin: 0; }
}

/* =============================================
   CONTACT PAGE RE-DESIGN
   ============================================= */
.contact-page-wrap {
  padding: 80px 0;
}

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

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

.contact-info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.contact-icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--clr-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--clr-text);
  margin-bottom: 16px;
  position: relative;
}

/* Subtle accent dot on the icon circle */
.contact-icon-circle::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  background: var(--clr-bg);
}

.contact-info-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--clr-light);
}

.contact-form-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 48px;
}

.contact-form-card .section-tag { text-align: center; display: block; }
.contact-form-card .section-title { text-align: center; margin-bottom: 40px; }

/* Full-width Map */
.full-width-map {
  width: 100%;
  height: 450px;
  border: none;
  background: var(--clr-surface);
  display: block;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 40px;
}

.faq-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.faq-accordion-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-accordion-header {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  transition: background 0.3s;
}

.faq-accordion-header:hover {
  background: rgba(0, 85, 255, 0.05);
}

.faq-icon {
  color: var(--clr-accent);
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-accordion-body {
  max-height: 0;
  padding: 0 32px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 300px;
  padding: 0 32px 24px;
  opacity: 1;
}

.faq-accordion-body p {
  color: var(--clr-light);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .contact-structured-grid, .faq-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .full-width-map { height: 300px; }
}
/* =============================================
   ABOUT PAGE SECTIONS
   ============================================= */
/* Mission & Vision */
.mission-section {
  background: url('../sevice123.png') center/cover no-repeat fixed;
  color: #ffffff;
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(0, 85, 255, 0.5) 100%);
  z-index: 1;
}

.mission-section .container {
  position: relative;
  z-index: 2;
}

.mission-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mission-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Core Values Grid */
.values-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0,85,255,0.3);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 85, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  color: var(--clr-accent);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--gradient-gold);
  color: #fff;
  transform: scale(1.1);
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.value-card p {
  color: var(--clr-grey);
  font-size: 15px;
  line-height: 1.7;
}

/* Stats Section */
.stats-section {
  background: var(--clr-surface);
  padding: 80px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

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

.stat-item h3 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-light);
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--clr-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.team-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--clr-surface);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.08);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.team-info p {
  font-size: 14px;
  color: var(--clr-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .values-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
}

@media (max-width: 768px) {
  .values-grid, .team-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SERVICES PAGE SECTIONS
   ============================================= */

/* Alternating Feature Layout */
.service-showcase {
  padding: 100px 0;
  background: var(--clr-bg);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block:nth-child(even) .feature-image {
  order: 1;
}
.feature-block:nth-child(even) .feature-content {
  order: 2;
}

.feature-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-block:hover .feature-image img {
  transform: scale(1.05);
}

.feature-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 85, 255, 0.1);
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.feature-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.feature-content p {
  font-size: 16px;
  color: var(--clr-grey);
  line-height: 1.8;
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--clr-light);
  font-weight: 500;
}

.feature-list li::before {
  content: '✦';
  color: var(--clr-accent);
  font-size: 14px;
}

/* Advantage Section (Dark) */
.advantage-section {
  background: var(--gradient-dark);
  padding: 100px 0;
  color: #fff;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.advantage-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.advantage-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-8px);
  border-color: rgba(0,85,255,0.3);
}

.adv-icon {
  font-size: 48px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(0,85,255,0.4));
}

.advantage-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.advantage-card p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
}

/* Modern Timeline */
.timeline-section {
  padding: 100px 0;
  background: var(--clr-surface);
}

.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(0,85,255,0.2);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding-right: 50px;
  margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-right: 0;
  padding-left: 50px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--clr-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,85,255,0.2);
}

.timeline-item:nth-child(even)::after {
  right: auto;
  left: -8px;
}

.timeline-content {
  background: var(--clr-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite cubic-bezier(0.66, 0, 0, 1);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #1ebd5b;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

.timeline-content:hover {
  transform: translateY(-4px);
  border-color: rgba(0,85,255,0.3);
}

.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--clr-grey);
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .feature-block:nth-child(even) .feature-image { order: 1; }
  .feature-block:nth-child(even) .feature-content { order: 2; }
  
  .advantage-grid { grid-template-columns: 1fr; }
  
  .timeline-wrap::before { left: 24px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
  .timeline-item:nth-child(even) { left: 0; padding-left: 70px; }
  .timeline-item::after { left: 16px !important; right: auto !important; }
}

/* ===== GALLERY MASONRY ===== */
.gallery-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 24px;
  padding: 20px 0;
}

@media (max-width: 900px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-masonry {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--clr-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.8);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 85, 255, 0.3), 0 0 20px rgba(0, 85, 255, 0.2);
  border-color: rgba(0, 85, 255, 0.5);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
