
/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f0f7ff; color: #111827; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── HEADER ─────────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1rem;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  background: #1d4ed8; border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.logo-name    { font-weight: 600; font-size: 14px; color: #111827; line-height: 1.2; }
.logo-tagline { font-size: 11px; color: #9ca3af; }

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
  padding: 8px 16px; font-size: 15px; color: #4b5563; font-weight: 500;
  border-radius: 8px; border: none; background: transparent; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.nav-link:hover { background: #e5e7eb; transform: scale(1.04); }

/* Services dropdown */
.dropdown-wrap { position: relative; }
.dropdown-btn  { display: flex; align-items: center; gap: 4px; }
.chev { transition: transform 0.2s; font-size: 13px; }
.chev.open { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid #f3f4f6; border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  min-width: 215px; padding: 6px 0; z-index: 60;
}
.dropdown-menu.open { display: block; }
.dropdown-item {
  display: block; padding: 10px 16px; font-size: 14px; color: #4b5563;
  transition: background 0.12s, color 0.12s;
}
.dropdown-item:hover { background: #f9fafb; color: #111827; }

/* Right side */
.header-right { display: flex; align-items: center; gap: 12px; }
.call-btn {
  display: none; align-items: center; gap: 8px;
  background: #1d4ed8; color: #fff; font-size: 15px; font-weight: 500;
  padding: 10px 20px; border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}
.call-btn:hover { background: #1e40af; transform: scale(1.04); }
@media (min-width: 768px) { .call-btn { display: flex; } }

.whatsapp-btn {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #e5e7eb; color: #22c55e; background: #fff;
  font-size: 22px; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: background 0.15s, transform 0.15s;
}
.whatsapp-btn:hover { background: #f9fafb; transform: scale(1.1); }
@media (min-width: 768px) { .whatsapp-btn { display: flex; } }

.hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px; border: none;
  background: transparent; color: #4b5563; font-size: 20px; cursor: pointer;
  transition: background 0.15s;
}
.hamburger:hover { background: #f3f4f6; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none; border-top: 1px solid #f3f4f6;
  background: #fff; padding: 0 1rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-link {
  display: block; padding: 12px 0; font-size: 14px; color: #4b5563;
  border-bottom: 1px solid #f9fafb; border: none; background: transparent;
  width: 100%; text-align: left; cursor: pointer;
}
.mobile-link:hover { color: #111827; }
.mobile-services-btn { display: flex; justify-content: space-between; align-items: center; }
.mobile-services-sub {
  display: none; padding-left: 12px;
  border-left: 2px solid #f3f4f6; margin-bottom: 8px;
}
.mobile-services-sub.open { display: block; }
.mobile-sub-link { display: block; padding: 10px 0; font-size: 13px; color: #6b7280; }
.mobile-sub-link:hover { color: #111827; }

.mobile-call-btn {
  margin-top: 12px; display: flex; align-items: center; justify-content: center;
  gap: 8px; background: #1d4ed8; color: #fff; font-size: 15px; font-weight: 500;
  padding: 12px; border-radius: 999px; transition: background 0.15s;
}
.mobile-call-btn:hover { background: #1e40af; }
.mobile-whatsapp-btn {
  margin-top: 8px; display: flex; align-items: center; justify-content: center;
  gap: 8px; background: #16a34a; color: #fff; font-size: 14px; font-weight: 500;
  padding: 12px; border-radius: 999px; transition: background 0.15s;
}
.mobile-whatsapp-btn:hover { background: #15803d; }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.wp-hero {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  text-align: center; padding: 48px 16px 40px;
}
.wp-hero-title {
  font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.5px;
}
@media (min-width: 640px) { .wp-hero-title { font-size: 42px; } }
.wp-hero-sub {
  font-size: 14px; font-weight: 700; letter-spacing: 4px;
  color: rgba(255,255,255,0.75); margin: 10px 0 12px; text-transform: uppercase;
}
@media (min-width: 640px) { .wp-hero-sub { font-size: 16px; } }
.wp-hero-desc { font-size: 14px; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto; }
@media (min-width: 640px) { .wp-hero-desc { font-size: 16px; } }

/* ─── MAIN / GRID ─────────────────────────────────────────────────────── */
.wp-main {
  max-width: 1280px; margin: 0 auto;
  padding: 28px 12px 48px;
}
.wp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px)  { .wp-grid { gap: 18px; } }
@media (min-width: 768px)  { .wp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .wp-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── PRODUCT CARD ────────────────────────────────────────────────────── */
.product-card {
  background: #fff; border-radius: 16px;
  border: 1px solid #e5e7eb;
  cursor: pointer; text-align: left; padding: 0; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(37,99,235,0.12);
  transform: translateY(-2px);
}

.product-card-img-wrap { position: relative; overflow: hidden; }
.product-card-img {
  width: 100%; height: 160px; object-fit: contain;
  background: #f8fafc;
  transition: transform 0.3s;
}
@media (min-width: 640px) { .product-card-img { height: 190px; } }
@media (min-width: 768px) { .product-card-img { height: 210px; } }
.product-card:hover .product-card-img { transform: scale(1.03); }

.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
@media (min-width: 640px) { .product-badge { font-size: 11px; padding: 4px 10px; } }
.badge-bestseller { background: #dbeafe; color: #1d4ed8; }
.badge-budget     { background: #dcfce7; color: #15803d; }
.badge-toprated   { background: #fef9c3; color: #92400e; }
.badge-new        { background: #f3e8ff; color: #7c3aed; }

.product-card-body { padding: 12px; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 640px) { .product-card-body { padding: 16px; } }

.product-card-name {
  font-weight: 700; font-size: 13px; color: #111827;
  margin-bottom: 3px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .product-card-name { font-size: 15px; } }

.product-card-tagline {
  font-size: 11px; color: #9ca3af;
  margin-bottom: 10px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .product-card-tagline { font-size: 12px; } }

.product-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.product-tag {
  font-size: 10px; background: #e0f2fe; color: #0369a1;
  padding: 3px 7px; border-radius: 999px; border: 1px solid #bae6fd;
  white-space: nowrap;
}
@media (min-width: 640px) { .product-tag { font-size: 11px; padding: 3px 9px; } }

.product-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.product-card-price { font-size: 16px; font-weight: 800; color: #2563eb; }
@media (min-width: 640px) { .product-card-price { font-size: 20px; } }
.product-card-view { font-size: 11px; color: #2563eb; font-weight: 500; }
@media (min-width: 640px) { .product-card-view { font-size: 12px; } }
.product-card:hover .product-card-view { text-decoration: underline; }

/* ─── PRODUCT DETAIL MODAL ─────────────────────────────────────────────── */
.product-modal-box {
  max-width: 680px !important;
}
.product-modal-img-wrap { position: relative; }
.product-modal-img {
  width: 100%; height: 200px; object-fit: contain;
  background: #f8fafc; border-radius: 16px 16px 0 0;
}
@media (min-width: 640px) { .product-modal-img { height: 260px; } }
@media (min-width: 768px) { .product-modal-img { height: 300px; } }

.product-modal-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.product-modal-badge:empty { display: none; }

.product-modal-body { padding: 20px; }
@media (min-width: 640px) { .product-modal-body { padding: 24px; } }

.product-modal-title-row {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 4px;
}
@media (min-width: 480px) {
  .product-modal-title-row {
    flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 12px;
  }
}
.product-modal-name { font-size: 18px; font-weight: 800; color: #111827; line-height: 1.3; }
@media (min-width: 640px) { .product-modal-name { font-size: 22px; } }
.product-modal-price { font-size: 22px; font-weight: 800; color: #2563eb; flex-shrink: 0; }
@media (min-width: 640px) { .product-modal-price { font-size: 26px; } }
.product-modal-tagline { font-size: 12px; color: #9ca3af; margin-bottom: 16px; }
@media (min-width: 640px) { .product-modal-tagline { font-size: 14px; } }

.product-modal-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 16px;
}
@media (min-width: 480px) { .product-modal-specs { grid-template-columns: repeat(4, 1fr); } }
.spec-item {
  background: #eff6ff; border-radius: 12px; padding: 10px; text-align: center;
}
.spec-label { font-size: 10px; color: #3b82f6; font-weight: 600; margin-bottom: 3px; }
@media (min-width: 640px) { .spec-label { font-size: 11px; } }
.spec-value { font-size: 12px; font-weight: 700; color: #1e3a8a; }
@media (min-width: 640px) { .spec-value { font-size: 13px; } }

.product-modal-desc { font-size: 13px; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
@media (min-width: 640px) { .product-modal-desc { font-size: 14px; } }

.product-modal-features { margin-bottom: 20px; }
.modal-features-title { font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 10px; }
@media (min-width: 640px) { .modal-features-title { font-size: 14px; } }
.product-modal-features ul { display: flex; flex-direction: column; gap: 6px; }
.product-modal-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #4b5563; line-height: 1.5;
}
@media (min-width: 640px) { .product-modal-features li { font-size: 13px; } }
.feature-check {
  width: 18px; height: 18px; border-radius: 50%; background: #dbeafe; color: #2563eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px; font-weight: 700;
}

.product-modal-actions { display: flex; gap: 12px; }
.buy-now-btn {
  flex: 1; background: #2563eb; color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px; border-radius: 12px; border: none; cursor: pointer;
  transition: background 0.15s;
}
.buy-now-btn:hover { background: #1d4ed8; }

/* ─── BOOKING MODAL (shared styles identical to home page) ───────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.5);
  align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  max-width: 448px; width: 100%; max-height: 90vh; overflow-y: auto;
}
.modal-header {
  position: sticky; top: 0; background: #fff;
  border-bottom: 1px solid #f3f4f6; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.modal-title { font-size: 20px; font-weight: 700; color: #111827; }
.modal-sub   { font-size: 12px; color: #6b7280; margin-top: 2px; }
.modal-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: none; background: transparent; cursor: pointer; font-size: 16px;
  transition: background 0.15s;
}
.modal-close:hover { background: #f3f4f6; }

.modal-form { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 14px; font-weight: 500; color: #374151; }
.req { color: #ef4444; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 16px; border: 1px solid #d1d5db; border-radius: 12px;
  font-size: 14px; font-family: inherit; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: none; }
.field-error { font-size: 12px; color: #ef4444; min-height: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.service-summary { background: #eff6ff; border-radius: 12px; padding: 12px; }
.summary-label { font-size: 12px; color: #2563eb; font-weight: 500; margin-bottom: 4px; }
.summary-row   { display: flex; justify-content: space-between; align-items: center; }
.summary-row span:first-child { font-size: 14px; color: #374151; }
.summary-price { font-size: 18px; font-weight: 700; color: #2563eb; }

.submit-btn {
  width: 100%; background: #2563eb; color: #fff; font-weight: 600;
  font-size: 15px; padding: 12px; border-radius: 12px; border: none; cursor: pointer;
  transition: background 0.15s;
}
.submit-btn:hover    { background: #1d4ed8; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-disclaimer { font-size: 12px; color: #9ca3af; text-align: center; }

.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
  vertical-align: middle; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── STICKY FLOAT BUTTONS ────────────────────────────────────────────── */
.sticky-btns {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.sticky-btn {
  position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
}
@media (min-width: 768px) { .sticky-btn { width: 62px; height: 62px; } }
.sticky-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.sticky-call  { background: #3b82f6; }
.sticky-wa    { background: #25d366; position: relative; }

.sticky-icon { width: 26px; height: 26px; fill: #fff; }
@media (min-width: 768px) { .sticky-icon { width: 32px; height: 32px; } }

/* Tooltip */
.sticky-tooltip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: #1f2937; color: #fff; font-size: 12px; font-weight: 500;
  padding: 5px 10px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.sticky-btn:hover .sticky-tooltip { opacity: 1; }

/* WhatsApp pulse ring */
.sticky-wa-wrap { position: relative; }
.sticky-wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: 0.6;
  animation: wa-pulse 1.8s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer { background: #111827; color: #d1d5db; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 48px 24px 24px; }
.footer-grid  {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand   { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-desc    { font-size: 13px; color: #9ca3af; }
.footer-heading { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a  { font-size: 13px; color: #d1d5db; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-info { font-size: 13px; margin-top: 8px; }

.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 50%; background: #1f2937;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #d1d5db; transition: background 0.15s;
}
.social-icon.facebook:hover  { background: #2563eb; color: #fff; }
.social-icon.instagram:hover { background: #db2777; color: #fff; }
.social-icon.twitter:hover   { background: #0ea5e9; color: #fff; }
.social-icon.youtube:hover   { background: #dc2626; color: #fff; }

.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid #374151;
}
.footer-copy { font-size: 13px; color: #6b7280; }