/* ===== VARIABLES ===== */
:root {
  --navy: #0a1f44;
  --navy-dark: #061428;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --white: #ffffff;
  --gray-bg: #f4f4f4;
  --gray-light: #f8f9fb;
  --text: #333333;
  --text-muted: #666666;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-header {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  font-size: 12px;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--navy-dark);
}

.btn-product {
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  font-size: 12px;
  width: 100%;
  justify-content: center;
}

.btn-product:hover {
  background: #25d366;
  color: var(--white);
}

.btn-footer-whatsapp {
  background: #25d366;
  color: var(--white);
  margin-top: 20px;
  font-size: 12px;
  padding: 10px 24px;
}

.btn-footer-whatsapp:hover {
  background: #1da851;
  color: var(--white);
}

.btn-view-all {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 36px;
}

.btn-view-all:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left span,
.top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar i {
  font-size: 11px;
  color: var(--gold);
}

/* ===== HEADER ===== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-u {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.logo-arrow {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 10px;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}

.logo-text span {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--gray-light);
  overflow: hidden;
  min-height: 580px;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: rgba(10, 31, 68, 0.06);
  white-space: nowrap;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}

.hero-feature i {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-model {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}

.since-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 2;
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.since-badge i {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

.since-badge span {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ===== CATEGORY ===== */
.category {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  text-align: center;
}

.category-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}

.category-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.05);
}

.category-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  z-index: 1;
}

.category-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.category-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PRODUCTS CAROUSEL ===== */
.products {
  background: var(--gray-bg);
}

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.product-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding-bottom: 20px;
}

.product-img {
  overflow: hidden;
  margin-bottom: 16px;
}

.product-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  padding: 0 12px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.product-card .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.product-card .btn-product {
  margin: 0 16px;
  width: calc(100% - 32px);
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.view-all-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 10px;
}

.stat-item i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat-item h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.stat-item p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== WHY CHOOSE US ===== */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 36px;
  align-items: start;
  margin-top: 40px;
}

.why-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 500;
}

.why-list ul li i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.why-quote {
  background: var(--navy);
  color: var(--white);
  padding: 56px 30px 30px;
  border-radius: 10px;
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.quote-mark {
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 60px;
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 0;
}

.why-quote p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.quote-sign {
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
  color: var(--gold);
}

/* ===== ABOUT ===== */
.about {
  background: var(--gray-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 40px;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.about-content {
  background: var(--white);
  padding: 26px 22px;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.about-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.about-icon-item i {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-contact {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 26px 22px;
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.about-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.about-contact-list i {
  color: var(--gold);
  margin-top: 3px;
  width: 18px;
  font-size: 14px;
}

.about-contact-list a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.about-contact-list a:hover {
  color: var(--gold-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-logo-area {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  justify-content: center;
  margin-bottom: 10px;
}

.footer-logo .logo-text strong {
  color: var(--white);
}

.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-links-grid a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.footer-links-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  pointer-events: none;
  letter-spacing: 0.3px;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    flex: 0 0 calc(33.333% - 14px);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .why-image img,
  .about-image img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 16px;
    justify-content: center;
    text-align: center;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .main-header {
    padding: 12px 16px;
  }

  .main-nav {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-model {
    max-width: 360px;
    margin: 0 auto;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex: 0 0 calc(50% - 10px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 100%;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }
}
