/* ===== CSS VARIABLES ===== */
:root {
  --teal-700: #0F766E;
  --teal-600: #0D9488;
  --teal-800: #115E59;
  --teal-900: #134E4A;
  --teal-50: #F0FDFA;
  --teal-100: #CCFBF1;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-700: #334155;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-bg: #DCF8C6;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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 24px; }
.section { padding: 80px 0; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: var(--gray-400);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-sep { color: var(--gray-600); }
.topbar-phone { color: var(--teal-100); font-weight: 600; }
.topbar-phone:hover { color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.logo-sub { font-size: 0.7rem; color: var(--gray-400); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--gray-600); transition: color var(--transition); }
.nav-links a:hover { color: var(--teal-700); }

/* Nav toggle (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: var(--transition); border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.btn-primary {
  background: var(--teal-700);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,118,110,0.25);
}
.btn-primary:hover { background: var(--teal-800); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border: 2px solid var(--teal-700);
}
.btn-outline:hover { background: var(--teal-700); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 8px; }

/* ===== HERO ===== */
.hero {
  padding: 64px 0 32px;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 50%, var(--teal-50) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--teal-100);
  color: var(--teal-800);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  box-shadow: var(--shadow-card);
}
.hero-prices-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-img-main,
.hero-img-side {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 0;
}
.hero-img-main { border-radius: 20px 0 0 20px; }
.hero-img-side { border-radius: 0 20px 20px 0; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.hero-float-1 { top: -10px; right: -10px; }
.hero-float-2 { bottom: 30px; left: -10px; animation-delay: 1s; }
.float-label { font-size: 0.72rem; color: var(--gray-400); display: block; font-weight: 600; }
.float-price { font-size: 0.95rem; font-weight: 700; color: var(--teal-700); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--teal-700);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.92;
}

/* ===== PRODUCTS ===== */
.products { background: var(--gray-100); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-title--light { color: var(--white); }
.section-subtitle { color: var(--gray-600); margin-bottom: 40px; max-width: 600px; font-size: 1rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-600); }

.product-img-wrap {
  height: 180px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-body p { font-size: 0.88rem; color: var(--gray-600); flex: 1; margin-bottom: 12px; }
.product-link { font-size: 0.85rem; font-weight: 700; color: var(--whatsapp-dark); }

/* More products card */
.product-card-more {
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
  border: 2px dashed var(--teal-600);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-more-icon { color: var(--teal-600); margin-bottom: 12px; }
.more-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.more-tags span {
  background: var(--teal-100);
  color: var(--teal-800);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.products-note { font-size: 0.78rem; color: var(--gray-400); }

/* ===== RENTALS ===== */
.rentals {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: var(--white);
}
.rentals-inner { max-width: 700px; }
.rentals-sub { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.rental-items { margin-bottom: 32px; }
.rental-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.rental-item:last-child { border-bottom: none; }
.rental-icon { font-size: 1.8rem; }
.rental-item strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.rental-price { font-size: 0.85rem; color: var(--teal-100); font-weight: 500; }
.rentals-cta { margin-bottom: 12px; }
.rental-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== WHY US ===== */
.why-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}
.feature-icon { margin-bottom: 12px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: var(--gray-600); }

.why-visual { position: relative; }
.why-visual img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--teal-700);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-badge-num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.why-badge-label { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }

/* ===== HOW IT WORKS ===== */
.how-it-works { text-align: center; background: var(--teal-50); }
.how-it-works .section-subtitle { margin: 0 auto 40px; }
.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.step {
  max-width: 260px;
  padding: 0 16px;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--teal-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--gray-600); }
.step-arrow {
  color: var(--teal-600);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 4px;
}
.how-cta { margin-top: 0; }

/* ===== ENQUIRY FORM ===== */
.enquiry { background: var(--gray-100); }
.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}
.enquiry-contact-links { display: flex; flex-direction: column; gap: 10px; max-width: 280px; }

.enquiry-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 760px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--teal-600); }
.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-item summary:hover { background: var(--teal-50); }
.faq-item summary::marker { content: ''; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-600);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); }

/* ===== CONTACT ===== */
.contact { background: var(--gray-100); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-detail { margin-bottom: 20px; }
.contact-label { font-size: 0.82rem; font-weight: 700; color: var(--teal-700); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
.contact-detail p { font-size: 0.95rem; color: var(--gray-700); }
.contact-detail a { font-size: 0.95rem; font-weight: 600; color: var(--teal-700); }
.contact-detail a:hover { color: var(--teal-800); text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  background: var(--gray-200);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo { margin-bottom: 16px; }
.footer .logo-name { color: #fff; }
.footer .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.88rem; max-width: 320px; }
.footer-links h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-100); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; margin-bottom: 4px; }
.footer-credit a { color: var(--teal-100); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: all var(--transition);
  animation: fabPulse 2s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.fab-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 10px 16px;
  gap: 12px;
}
.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-bar-call {
  background: var(--teal-700);
  color: #fff;
}
.mobile-bar-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; max-width: 480px; margin: 0 auto; }
  .hero-images { grid-template-columns: 1fr; }
  .hero-img-main { border-radius: 20px 20px 0 0; }
  .hero-img-side { border-radius: 0 0 20px 20px; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; }
  .hero-chips { justify-content: center; }
  .hero-float-1 { top: 10px; right: 10px; }
  .hero-float-2 { bottom: 20px; left: 10px; }

  .why-inner { grid-template-columns: 1fr; }
  .why-visual { max-width: 400px; }
  .enquiry-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-sep { display: none; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  .whatsapp-fab { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
}
