:root {
  --navy: #0b1e39;
  --deep-blue: #10366b;
  --accent: #ff7a00;
  --light: #f6f8fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--light);
  color: #1c2733;
  margin: 0;
  padding-bottom: 70px; /* space for sticky whatsapp bar */
}

a { text-decoration: none; }

/* Header */
.site-header {
  background: var(--navy);
  color: #fff;
}
.site-header .brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}
.header-phone {
  color: #cfe1ff;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  color: #fff;
  padding: 48px 0 60px;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
}
.hero p.sub {
  color: #d9e6ff;
  font-size: 1.05rem;
}
.hero .price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffd580;
}
.hero-img-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.btn-cta {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(255,122,0,0.35);
  transition: transform .15s ease;
}
.btn-cta:hover { transform: translateY(-2px); color: #fff; }

/* Feature cards */
.section-title {
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: #6b7684;
  margin-bottom: 36px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16,54,107,0.08);
  height: 100%;
  transition: transform .15s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--deep-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.feature-card h5 { font-weight: 700; color: var(--navy); }
.feature-card p { color: #6b7684; font-size: 0.92rem; margin-bottom: 0; }

/* Why choose us */
.why-section { background: #fff; padding: 60px 0; }
.why-bullets li {
  padding: 8px 0;
  font-size: 1rem;
}
.why-bullets i { color: var(--accent); margin-right: 10px; }

/* Price / CTA section */
.price-cta-section {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.price-cta-section .price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffd580;
}

/* Waybill notice */
.waybill-notice {
  background: #fff4e5;
  border: 1px solid #ffcf8a;
  border-radius: 12px;
  padding: 18px 20px;
  color: #7a4b00;
  font-size: 0.92rem;
}
.waybill-notice strong { display: block; margin-bottom: 6px; font-size: 0.95rem; }

/* Order form */
.order-section { background: var(--light); padding: 56px 0; }
.order-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(16,54,107,0.10);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 160px;
}
.qty-control button {
  width: 42px;
  height: 42px;
  border: 1px solid #ccd6e4;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.qty-control input {
  width: 60px;
  height: 42px;
  text-align: center;
  border: 1px solid #ccd6e4;
  border-left: none;
  border-right: none;
}
.order-total-box {
  background: var(--light);
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--navy);
}

/* Payment page */
.payment-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(16,54,107,0.1);
}
.bank-details {
  background: var(--light);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}
.bank-details .row div { padding: 6px 0; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.btn-whatsapp:hover { color: #fff; opacity: 0.92; }

/* Sticky whatsapp bar (mobile) */
.sticky-whatsapp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  z-index: 1000;
}
.btn-whatsapp-fixed {
  display: block;
  width: 100%;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
}
.btn-whatsapp-fixed:hover { color: #fff; opacity: 0.92; }

/* Sticky order now button on mobile hero */
.sticky-order-btn {
  position: fixed;
  bottom: 60px;
  left: 16px;
  right: 16px;
  z-index: 999;
  display: none;
}
@media (max-width: 767px) {
  .sticky-order-btn.show { display: block; }
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #cfe1ff;
}
.site-footer h5, .site-footer h6 { color: #fff; }
.site-footer a { color: #cfe1ff; }
.site-footer a:hover { color: #fff; }

/* Status badges (admin) */
.badge-status { padding: 6px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
