/* ── Contact Section (contact form, index.html or contact section) ─────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 60px 0 0;
}
.contact-section .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-section h3.section-title {
  margin-bottom: 18px;
}
.contact-section a {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}
.contact-section iframe {
  margin-top: 10px;
  min-height: 180px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
/* ============================================================
  MEZOKI PLUMBING GROUP — style.css
  Design: Refined Luxury | Clean Professional
  ============================================================
  GLOBAL STYLES (applies to all pages)
*/

/* ── CSS Variables (global, all pages) ─────────────────────── */
:root {
  --primary:        #1a56db;
  --primary-dark:   #1040aa;
  --primary-light:  #dbeafe;
  --accent:         #0ea5e9;
  --success:        #16a34a;
  --success-dark:   #14532d;
  --danger:         #dc2626;
  --danger-dark:    #991b1b;
  --warning:        #f59e0b;
  --gold:           #d97706;

  --dark:           #0f172a;
  --dark-2:         #1e293b;
  --gray-800:       #334155;
  --gray-600:       #475569;
  --gray-400:       #94a3b8;
  --gray-200:       #e2e8f0;
  --gray-100:       #f1f5f9;
  --white:          #ffffff;

  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Poppins', sans-serif;

  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl:      0 24px 60px rgba(0,0,0,.18);
  --shadow-blue:    0 8px 28px rgba(26,86,219,.35);
  --shadow-green:   0 8px 28px rgba(22,163,74,.35);
  --shadow-red:     0 8px 28px rgba(220,38,38,.35);

  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;

  --transition:     all 0.28s cubic-bezier(.4,0,.2,1);
  --transition-fast:all 0.16s cubic-bezier(.4,0,.2,1);

  --navbar-h:       72px;
}

/* ── Reset & Base (global, all pages) ──────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--gray-100);
  color: var(--gray-800);
  line-height: 1.65;
  padding-top: var(--navbar-h);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); }

/* ── Container (global .container class, all pages) ────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Title (.section-title, all pages) ─────────────── */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

/* ══════════════════════════════════════════════════════════════
  NAVBAR (site navigation bar, all pages)
  ══════════════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
  position: fixed;
  inset-block-start: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Branding (navbar logo and tagline, all pages) */
.branding {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.5px;
}
.logo-img {
  height: 40px;
  width: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.partner-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-left: 2px;
}

/* Nav Links (navbar links, all pages) */
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 700;
}

/* Nav CTAs (navbar call-to-action buttons, all pages) */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.language-selector { display: flex; align-items: center; }
.language-select {
  padding: 7px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.language-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.15);
}

/* CTA Dropdown Wrapper (navbar dropdowns, all pages) */
.cta-dropdown-wrapper {
  position: relative;
  display: flex;
  gap: 6px;
}
.cta-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 12px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  animation: slideDown 0.22s cubic-bezier(.4,0,.2,1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
  BUTTONS (all buttons, all pages)
  ══════════════════════════════════════════════════════════════ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.cta-btn:hover::before { background: rgba(255,255,255,.08); }
.cta-btn:active { transform: scale(.97); }

/* Primary Button (.cta-btn.primary, all pages) */
.cta-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,86,219,.45);
}

/* Secondary Button (.cta-btn.secondary, all pages) */
.cta-btn.secondary {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.cta-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22,163,74,.45);
}

/* Emergency Button (.cta-btn.cta-emergency, all pages) */
.cta-btn.cta-emergency {
  background: linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
  width: 100%;
}
.cta-btn.cta-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(220,38,38,.45);
}

/* Toggle Button (.cta-btn.cta-toggle, all pages) */
.cta-btn.cta-toggle {
  background: var(--white);
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 9px 16px;
}
.cta-btn.cta-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(26,86,219,.18);
}

/* Fee Badge (price/service badge, all pages) */
.fee-badge {
  background: linear-gradient(135deg, var(--warning) 0%, var(--gold) 100%);
  color: var(--dark);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .3px;
}

/* Service Link Button (.service-link-btn, all pages) */
.service-link-btn {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}
.service-link-btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.28s ease;
  border-radius: 2px;
}
.service-link-btn:hover { color: var(--primary-dark); }
.service-link-btn:hover::after { width: 100%; }

/* Pulse Animations (button/element attention, all pages) */
@keyframes pulse-blue {
  0%   { box-shadow: 0 0 0 0 rgba(26,86,219,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(26,86,219,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,86,219,0); }
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,.7); }
  70%  { box-shadow: 0 0 0 14px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
.flash         { animation: pulse-blue 1.8s infinite; }
.flash-red     { animation: pulse-red  1.8s infinite; }
#emergencyBtn.flash { animation: pulse-red 1.8s infinite; }

/* ══════════════════════════════════════════════════════════════
  HERO SECTION (main banner, index.html)
  ══════════════════════════════════════════════════════════════ */
.hero-section {
  background:
    linear-gradient(160deg, rgba(10,20,50,.72) 0%, rgba(0,0,0,.5) 100%),
    url('photos/Products/modern_bathroom_connection.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,86,219,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  letter-spacing: -.5px;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 36px;
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
  SERVICES HIGHLIGHT (services section, index.html & services.html)
  ══════════════════════════════════════════════════════════════ */
.services-highlight {
  padding: 80px 0;
  background: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-box {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-box:hover::before { transform: scaleX(1); }
.service-box .icon {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.service-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-box p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Services Page (services.html only) */
.services-highlight + .container .service-grid,
main.container .service-grid {
  margin-top: 0;
  padding: 40px 0 60px;
}

/* ══════════════════════════════════════════════════════════════
  PRODUCT SECTIONS (product gallery, index.html & products.html)
  ══════════════════════════════════════════════════════════════ */
.homepage-products {
  padding: 80px 0;
  background: var(--gray-100);
}
.products-gallery {
  padding: 80px 0;
  background: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-item:hover .image-container img {
  transform: scale(1.06);
}

/* Overlay Add Button (add to cart, products.html) */
.add-overlay-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(26,86,219,.9);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 5;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.add-overlay-btn:hover {
  background: var(--primary);
  transform: scale(1.12) rotate(90deg);
}

.product-item h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--dark);
  padding: 14px 18px 4px;
}
.product-item > p {
  font-size: 0.825rem;
  color: var(--gray-600);
  padding: 0 18px 4px;
  flex: 1;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--success);
  padding: 4px 18px 10px;
  letter-spacing: -.3px;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-100);
}
.qty-input {
  width: 52px;
  padding: 7px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition-fast);
}
.qty-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.add-to-cart-btn-small {
  flex: 1;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.add-to-cart-btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,86,219,.4);
}
.add-to-cart-btn-small:active { transform: scale(.97); }

/* ══════════════════════════════════════════════════════════════
  TESTIMONIALS (customer reviews, index.html)
  ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f4fd 100%);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.testimonial-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
  MODAL (BOOKING) (booking form modal, index.html & services.html)
  ══════════════════════════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.22s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-content {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 460px;
  position: relative;
  animation: slideUp 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}
.close-btn {
  position: absolute;
  right: 18px; top: 14px;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition-fast);
  background: none;
  border: none;
}
.close-btn:hover {
  color: var(--danger);
  transform: rotate(90deg);
}

/* Form (modal booking form, index.html & services.html) */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-800);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.fee-display {
  padding: 12px 14px;
  background: var(--primary-light);
  border-radius: var(--radius);
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -.5px;
}
.form-actions { margin-top: 22px; }

/* ══════════════════════════════════════════════════════════════
  CART MODAL (shopping cart modal, products.html)
  ══════════════════════════════════════════════════════════════ */
.cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.22s ease;
}
.cart-modal-content {
  background: var(--white);
  padding: 32px 28px 26px;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: slideUp 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 90vh;
  overflow-y: auto;
}
.cart-modal-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  padding-right: 30px;
}
.close-cart {
  position: absolute;
  right: 18px; top: 18px;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition-fast);
  background: none;
  border: none;
}
.close-cart:hover {
  color: var(--danger);
  transform: rotate(90deg);
}

/* Cart Items (cart modal, products.html) */
.cart-items {
  min-height: 100px;
  max-height: 340px;
  overflow-y: auto;
  margin-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.cart-item-price {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--success);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.qty-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.qty-btn-display {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.remove-item {
  width: 28px; height: 28px;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--danger);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.remove-item:hover {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

.empty-cart {
  text-align: center;
  color: var(--gray-400);
  font-style: italic;
  padding: 32px 0;
  font-size: 0.95rem;
}

.cart-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  padding: 14px 0 0;
  border-top: 2px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-total .total-price {
  color: var(--success);
  font-size: 1.3rem;
}
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,86,219,.45);
}
.checkout-btn:disabled {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════════════
  FLOATING BUTTONS (WhatsApp, Cart, all pages)
  ══════════════════════════════════════════════════════════════ */
/* WhatsApp Floating Button (all pages) */
.whatsapp-float {
  position: fixed;
  width: 58px; height: 58px;
  bottom: 30px; right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #1da855 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

/* Cart Floating Button (all pages) */
.cart-float-btn {
  position: fixed;
  width: 58px; height: 58px;
  bottom: 102px; right: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  z-index: 9999;
  cursor: pointer;
  transition: var(--transition);
}
.cart-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(26,86,219,.55);
}
.cart-float-btn:focus {
  outline: 3px solid rgba(26,86,219,.4);
  outline-offset: 3px;
}
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--danger);
  color: var(--white);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  border: 2px solid var(--white);
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(220,38,38,.4);
}

/* ══════════════════════════════════════════════════════════════
  FOOTER (site footer, all pages)
  ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 40px 0;
  margin-top: 0;
}
.footer p { font-size: 0.875rem; line-height: 1.8; }
.footer strong { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
  UTILITY — toast notification (all pages)
  ══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 180px;
  right: 30px;
  background: var(--dark-2);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastIn 0.3s ease;
  pointer-events: none;
  max-width: 260px;
}
.toast.success { border-left: 4px solid var(--success); }
.toast.error   { border-left: 4px solid var(--danger);  }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════════
  RESPONSIVE (media queries, all pages)
  ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links a { padding: 7px 12px; font-size: 0.85rem; }
  .cta-btn { padding: 9px 18px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 130px; }

  body { padding-top: var(--navbar-h); }

  .navbar .container {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
  .branding { width: 100%; justify-content: space-between; }
  .nav-links { width: 100%; }
  .nav-links ul { justify-content: center; gap: 4px; flex-wrap: wrap; }
  .nav-ctas { width: 100%; justify-content: center; gap: 8px; flex-wrap: wrap; }

  .cta-dropdown-wrapper { width: 100%; }
  #requestQuoteBtn, #requestToggle { width: 100%; }

  .hero-section { padding: 70px 0 60px; min-height: 360px; }
  .hero-content h2 { font-size: 1.9rem; }
  .hero-content p { font-size: 0.95rem; }

  .services-highlight,
  .homepage-products,
  .testimonials-section,
  .products-gallery { padding: 60px 0; }

  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  .image-container { height: 160px; }
  .section-title { margin-bottom: 32px; }

  .modal-content { padding: 24px 20px; }
  .cart-modal-content { padding: 24px 18px 20px; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; font-size: 1.5rem; }
  .cart-float-btn { width: 52px; height: 52px; bottom: 88px; right: 20px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  :root { --navbar-h: 155px; }

  .nav-links a { font-size: 0.8rem; padding: 6px 10px; }
  .logo { font-size: 1.2rem; }
  .logo-img { height: 34px; width: 34px; }
  .partner-tagline { font-size: 0.55rem; }

  .hero-content h2 { font-size: 1.5rem; }
  .hero-content p { font-size: 0.875rem; }

  .service-grid,
  .product-grid { grid-template-columns: 1fr; }

  .image-container { height: 200px; }

  .modal-content { padding: 20px 16px; border-radius: var(--radius-lg); }
  .cart-modal-content { padding: 20px 14px 16px; }

  .footer p { font-size: 0.8rem; }
  .section-title { font-size: 1.4rem; }

  .toast { bottom: 160px; right: 16px; left: 16px; max-width: none; }
}

@media (max-width: 360px) {
  :root { --navbar-h: 170px; }
  .nav-links ul { gap: 2px; }
  .cta-btn { padding: 8px 12px; font-size: 0.78rem; }
}