:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --blue: #2563eb;
  --sky: #38bdf8;
  --teal: #0d9488;
  --red: #e11d48;
  --green: #10b981;
  --green-light: #d1fae5;
  --gold: #f59e0b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, .nav-logo {
  font-family: 'Outfit', sans-serif;
}

.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--sky);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label.light {
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

.nav.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.logo-img-footer {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.2);
}

.nav-logo-text .brand {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nav-logo-text .tagline {
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}

/* ===== PAGES ===== */
.page {
  display: none;
  padding-top: 80px;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page.active {
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 80px);
  background: radial-gradient(circle at top right, #0d2951, #0a1628);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 5%;
}

.hero-bg-circles::before, .hero-bg-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
}

.hero-bg-circles::before {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -200px;
  right: -100px;
}

.hero-bg-circles::after {
  width: 400px;
  height: 400px;
  background: var(--blue);
  bottom: -100px;
  left: 10%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #5eead4;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 span {
  background: linear-gradient(to right, #5eead4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin-bottom: 40px;
}

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

.btn-primary, .btn-outline {
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #5eead4;
  display: block;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-cards-float {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 420px;
}

.hero-card-mini {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition);
  animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

.hero-card-mini:nth-child(2) { animation-delay: 0.5s; margin-top: 40px; }
.hero-card-mini:nth-child(3) { animation-delay: 1s; }
.hero-card-mini:nth-child(4) { animation-delay: 1.5s; margin-top: -40px; }

.hero-card-mini .icon { font-size: 32px; margin-bottom: 12px; }
.hero-card-mini .name { font-size: 15px; font-weight: 700; color: white; }
.hero-card-mini .sub { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 4px; }
.hero-card-mini .price { font-size: 16px; font-weight: 700; color: #5eead4; margin-top: 10px; }

/* ===== SECTIONS ===== */
section { padding: 100px 5%; }

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

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.about-snap { background: var(--gray-50); }
.about-snap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-snap-visual {
  background: linear-gradient(135deg, var(--sky), var(--green-light));
  border-radius: 30px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-snap-visual::after {
  content: '🌿';
  position: absolute;
  font-size: 150px;
  opacity: 0.1;
  bottom: -30px;
  right: -20px;
}

.about-snap-visual .big-icon { font-size: 80px; margin-bottom: 30px; }
.about-snap-visual h3 { font-size: 2.2rem; margin-bottom: 15px; color: var(--navy); }

.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill {
  background: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateX(10px);
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.08);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.bg-teal { background: rgba(13, 148, 136, 0.1); color: var(--teal); }
.bg-blue { background: rgba(26, 86, 219, 0.1); color: var(--blue); }
.bg-green { background: rgba(5, 150, 105, 0.1); color: var(--green); }
.bg-gold { background: rgba(245, 158, 11, 0.1); color: var(--gold); }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(10, 22, 40, 0.12);
  border-color: transparent;
}

.product-card-top {
  padding: 0;
  background: #f1f5f9;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  z-index: 1;
}

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

.product-info-overlay {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 100%);
  width: 100%;
}

.product-info-overlay .product-name {
  color: white;
  margin-top: 0;
}

.product-info-overlay .product-form {
  color: rgba(255, 255, 255, 0.8);
}

.product-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.badge {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.badge-blue { background: rgba(26, 86, 219, 0.9); color: white; }
.badge-teal { background: rgba(13, 148, 136, 0.9); color: white; }
.badge-red { background: rgba(220, 38, 38, 0.9); color: white; }

.product-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: right;
  z-index: 3;
}

.product-price .mrp-label {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
}

.product-price .mrp {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.product-card-body {
  padding: 24px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-composition {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.use-tag {
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray-700);
  font-weight: 500;
}

.product-cta {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.product-cta:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--navy);
  color: white;
}

.testimonials .section-title { color: white; }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stars { color: var(--gold); margin-bottom: 20px; font-size: 14px; }
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.85);
}

.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.author-name { font-weight: 700; font-size: 16px; }
.author-role { font-size: 13px; color: rgba(255,255,255,0.5); }

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

.contact-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.contact-item .c-icon {
  width: 50px;
  height: 50px;
  background: var(--sky);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
}

/* ===== FAQ ===== */
.faq { background: var(--gray-50); }
.faq-grid { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
}

.faq-q {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  transition: var(--transition);
}

.faq-q:hover { background: var(--sky); }
.faq-q .arrow { transition: transform 0.4s; color: var(--teal); }
.faq-item.open .arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p { padding: 0 30px 24px; color: var(--gray-600); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 250px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 5% 40px;
}

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

.footer-brand .nav-logo-icon { box-shadow: none; }
.footer-brand .brand { color: white; font-size: 24px; }
.footer-brand p { margin: 20px 0 30px; max-width: 350px; }

.footer-socials { display: flex; gap: 15px; }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover { background: var(--blue); transform: translateY(-3px); }

.footer-col h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 15px;
  transition: var(--transition);
  font-size: 15px;
}

.footer-col a:hover { color: white; padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===== FLOATERS ===== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
}

.wa-float:hover { transform: scale(1.1) rotate(10deg); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-btns, .hero-stats { justify-content: center; }
  .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .about-snap-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px 20px;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 15px 30px rgba(10, 22, 40, 0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .hero h1 { font-size: 2.8rem; }
}

/* UTILS */
.badge-pill { border-radius: 100px; padding: 4px 12px; font-size: 11px; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(8px);
  padding-top: 100px;
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 40px;
  border-radius: 30px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 30px;
  color: var(--gray-400);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover { color: var(--navy); }

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.modal-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.modal-info h2 { font-size: 2.2rem; margin-bottom: 10px; color: var(--navy); }
.modal-info .form { color: var(--teal); font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.modal-info .composition { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 25px; line-height: 1.6; }
.modal-info .desc { color: var(--gray-600); line-height: 1.8; margin-bottom: 30px; }

/* PREMIUM WHY US SECTION */
.why-us-premium {
  padding: 100px 0;
  background: white;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

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

.why-card-premium {
  perspective: 1000px;
}

.why-card-inner {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--sky);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  background: var(--icon-bg);
  color: var(--icon-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
}

.why-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--navy);
}

.why-card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.why-card-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 1;
}

/* ABOUT HERO NEW */
.about-hero-new {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 90vh;
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.about-hero-content {
  padding: 120px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-hero-content h1 span {
  color: var(--teal);
}

.about-hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 50px;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-stat {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

.hero-stat span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.about-hero-image {
  position: relative;
  background: var(--gray-100);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: 50px;
  left: -40px;
  background: white;
  color: var(--navy);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
}

.floating-badge i {
  font-size: 24px;
  color: var(--teal);
}

.floating-badge span {
  font-weight: 700;
  font-size: 14px;
}

/* VISION SECTION */
.about-vision {
  padding: 120px 0;
  background: #f8fafc;
}

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

.vision-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.vision-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.philosophy-points {
  margin-top: 40px;
}

.p-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--navy);
}

.p-point i {
  color: var(--teal);
}

.vision-image {
  height: 600px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.glass-quote {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 40px;
  border-radius: 30px;
  color: white;
}

.glass-quote i {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
}

.glass-quote p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-mini {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.contact-item-mini i {
  color: var(--sky);
  margin-top: 3px;
}

.contact-item-mini p strong {
  color: white;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 1024px) {
  .why-premium-grid, .about-hero-new, .vision-grid { grid-template-columns: 1fr; }
  .about-hero-content { padding: 80px 5%; }
  .about-hero-content h1 { font-size: 2.8rem; }
  .about-hero-image { height: 400px; }
  .floating-badge { left: 20px; bottom: 20px; }
}

@media (max-width: 768px) {
  .modal-body-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 30px; }
}

/* ===== PRODUCTS FILTERS & SEARCH ===== */
.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 30px auto 50px;
  padding: 0 5%;
  max-width: 1280px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.2);
}

.search-box {
  position: relative;
  margin-left: auto;
}

@media (max-width: 768px) {
  .products-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .search-box {
    margin-left: 0;
    width: 100%;
  }
}

.search-box input {
  width: 260px;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .search-box input {
    width: 100%;
  }
}

.search-box input:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}
