/* ============================================================
   SKY2OCEAN SPORTS STORE - Main Stylesheet
   Design: Premium Sports Retail — Bold, Athletic, Modern
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0a1628;
  --secondary: #00a8e8;
  --accent: #f7b731;
  --accent2: #e84118;
  --white: #ffffff;
  --light: #f0f4f8;
  --light2: #e2eaf2;
  --gray: #8892a4;
  --dark-gray: #4a5568;
  --text: #1a202c;
  --text-light: #64748b;
  --border: #dde3ed;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Utility Classes ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--light); }

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 1px;
  color: var(--primary);
  line-height: 1.1;
}
.section-title.white { color: var(--white); }
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,168,232,0.3);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247,183,49,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--primary);
  padding: 9px 0;
  font-size: 0.82rem;
  font-family: var(--font-heading);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.topbar a:hover { color: var(--accent); }
.topbar a i { color: var(--secondary); font-size: 0.9rem; }
.topbar .whatsapp-link i { color: #25d366; }
.topbar-right span {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 4px 14px rgba(0,168,232,0.3);
}
.logo-text { line-height: 1.2; }
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--primary);
  line-height: 1;
}
.logo-text .brand-name span { color: var(--secondary); }
.logo-text .brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.main-nav { display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--secondary);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--light2);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-menu a:hover { color: var(--secondary); }
.mobile-menu a:last-child { border-bottom: none; }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.slide {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
/* .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.5) 60%, rgba(0,168,232,0.15) 100%);
} */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,232,0.15);
  border: 1px solid rgba(0,168,232,0.4);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.slide-title span { color: var(--accent); }
.slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(90deg, var(--secondary) 0%, #0077b6 100%);
  padding: 24px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ---- CATEGORIES FILTER ---- */
.categories-section { padding: 70px 0 30px; }
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  background: var(--light);
  padding: 12px;
  border-radius: var(--radius);
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--dark-gray);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* ---- PRODUCT CATEGORY SECTION ---- */
.category-block {
  padding: 50px 0;
  border-top: 1px solid var(--border);
}
.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.category-title-group {}
.category-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.cat-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--primary);
  letter-spacing: 1px;
}
.cat-count {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,168,232,0.25);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent2);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-badge.new { background: var(--secondary); }
.product-badge.sale { background: var(--accent2); }

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--light2);
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}
.product-price small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
  display: block;
  line-height: 1;
}

/* ---- ABOUT SECTION (HOME) ---- */
.about-home {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.about-home::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,168,232,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow);
}
.about-img-badge .number {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}
.about-img-badge .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-content .section-sub { color: rgba(255,255,255,0.7); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,168,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.about-feature-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ---- WHY CHOOSE US ---- */
.why-us { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,168,232,0.1), rgba(0,168,232,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 0 auto 20px;
  border: 2px solid rgba(0,168,232,0.15);
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #0077b6 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-sub { color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: #060e1c;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,168,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact-item .info strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--secondary); }

/* Tiktok Placeholder */
.tiktok-widget-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.tiktok-widget-placeholder i { font-size: 1.5rem; display: block; margin-bottom: 8px; }

/* ---- FLOATING BUTTONS ---- */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25d366; color: white; }
.float-phone { background: var(--secondary); color: white; }
.float-top { background: var(--primary); color: white; opacity: 0; pointer-events: none; transition: var(--transition); }
.float-top.visible { opacity: 1; pointer-events: all; }

/* ---- MODAL / POPUP ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
  background: linear-gradient(135deg, var(--primary), #1a3a6c);
  padding: 28px 32px 24px;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.modal-header p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.modal-product-name {
  display: inline-block;
  background: rgba(0,168,232,0.2);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 10px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--accent2); }
.modal-body { padding: 28px 32px 32px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-group label span { color: var(--accent2); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,168,232,0.12);
}
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.captcha-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.captcha-question {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.captcha-input {
  width: 90px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}
.form-msg.success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: #1a7a3a;
}
.form-msg.error {
  background: rgba(232,65,24,0.08);
  border: 1px solid rgba(232,65,24,0.3);
  color: var(--accent2);
}
.form-msg.show { display: flex; align-items: center; gap: 10px; }

/* ---- CONTENT PAGE TYPOGRAPHY ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6c 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--accent2));
}
.page-hero-content {}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb i { font-size: 0.65rem; }

.content-section { padding: 70px 0; }
.content-wrap { max-width: 900px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 1px;
  margin: 42px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--light2);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 12px;
}
.prose p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--dark-gray);
  margin-bottom: 16px;
}
.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.prose li {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 8px;
}
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--primary); font-weight: 700; }
.prose a { color: var(--secondary); border-bottom: 1px solid rgba(0,168,232,0.3); }
.prose a:hover { color: var(--primary); }
.info-box {
  background: rgba(0,168,232,0.06);
  border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin: 0; }

/* ---- ABOUT PAGE ---- */
.about-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}
.about-hero-img img { width: 100%; height: 360px; object-fit: cover; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 40px 0;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.mv-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0,168,232,0.3);
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 40px 0;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--light2);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-card span {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,168,232,0.3);
}
.ci-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.ci-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .slide { min-height: 480px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 10px; bottom: 10px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar .container { justify-content: center; }
  .topbar-left { justify-content: center; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .section-pad { padding: 55px 0; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-body, .modal-header { padding: 22px 20px; }
  .category-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-slider .slide { min-height: 420px; }
  .slide-title { font-size: 2.6rem; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .filter-bar { justify-content: center; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 0.88rem; }
  .product-desc { font-size: 0.78rem; margin-bottom: 10px; }
  .product-footer { flex-direction: column; gap: 10px; align-items: stretch; }
  .product-price { text-align: center; }
  .product-footer .btn { width: 100%; justify-content: center; }
  .filter-bar { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-body { padding: 12px; }
  .product-name { font-size: 0.85rem; }
  .product-desc { font-size: 0.75rem; line-height: 1.4; }
  .product-category { font-size: 0.68rem; }
  .product-badge { font-size: 0.65rem; padding: 3px 8px; }
  .product-footer .btn { padding: 8px 16px; font-size: 0.75rem; }
  .hero-slider .slide { min-height: 380px; }
  .slide-title { font-size: 2.1rem; }
  .slide-desc { font-size: 0.88rem; }
  .topbar-right { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; padding: 8px; }
  .btn { padding: 11px 22px; font-size: 0.82rem; }
  .filter-btn { padding: 7px 12px; font-size: 0.72rem; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 0.92rem; }
  .product-desc { font-size: 0.8rem; line-height: 1.5; }
  .product-footer { flex-direction: row; }
  .product-footer .btn { width: auto; }
}
