/* ============================================================
   PAWM WROUGHT IRON — LIGHT THEME
   Palette: White · Navy (#0f2d6e) · Sky Blue (#38bdf8)
   ============================================================ */

:root {
  --bg:              #f8fbff;
  --bg-soft:         #eef6ff;
  --bg-card:         #ffffff;
  --bg-card-strong:  #f2f8ff;
  --surface:         #e4f0fc;
  --surface-2:       #d4e8f8;
  --line:            rgba(15, 45, 110, 0.10);
  --line-strong:     rgba(15, 45, 110, 0.18);
  --text:            #0c1d3e;
  --text-soft:       #2c4a7c;
  --muted:           #607aaa;
  --navy:            #0f2d6e;
  --navy-mid:        #1a4aad;
  --sky:             #38bdf8;
  --sky-light:       #7dd3fc;
  --sky-pale:        #e0f4ff;
  --accent:          #f59e0b;
  --accent-2:        #fbbf24;
  --accent-dark:     #b45309;
  --success:         #16a34a;
  --warning:         #d97706;
  --danger:          #dc2626;
  --text-primary:    #0c1d3e;
  --text-secondary:  #2c4a7c;
  --shadow:          0 18px 40px rgba(15, 45, 110, 0.12);
  --shadow-soft:     0 8px 24px rgba(15, 45, 110, 0.08);
  --radius:          22px;
  --radius-sm:       14px;
  --container:       1180px;
  --nav-h:           84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section { position: relative; }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.relative { position: relative; z-index: 2; }
.section { padding: 96px 0; }
.text-accent, .accent { color: var(--navy-mid); }
.light { color: #ffffff; }
.hidden { display: none !important; }

.animate-on-scroll {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Preloader */
#preloader {
  position: fixed; inset: 0; background: #ffffff;
  display: grid; place-items: center; z-index: 2000;
  transition: opacity .4s ease, visibility .4s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-wrap { text-align: center; }
.loader-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid rgba(15,45,110,.12);
  border-top-color: var(--navy);
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}
.loader-text {
  font-family: "Oswald", sans-serif;
  letter-spacing: .3rem; font-size: 1rem;
  color: var(--navy); font-weight: 700;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Navbar */
.navbar {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(15,45,110,.10);
}
.nav-container {
  width: min(calc(100% - 2rem), var(--container));
  height: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  background: #ffffff; border-radius: 12px; padding: 4px 10px;
  border: 1px solid var(--line);
}
.nav-logo-img { width: auto; height: 52px; object-fit: contain; }
.nav-menu {
  display: flex; align-items: center; gap: .3rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-link, .nav-cta, .curr-btn { border-radius: 999px; padding: .75rem 1rem; transition: .25s ease; }
.nav-link { color: var(--text-soft); font-weight: 600; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--sky-pale); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #ffffff; font-weight: 800;
  box-shadow: 0 8px 20px rgba(15,45,110,.22);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(15,45,110,.30); }
.curr-btn {
  border: 1px solid var(--line-strong); background: var(--bg-soft);
  color: var(--text); display: inline-flex; gap: .5rem; align-items: center; font-weight: 700;
}
.curr-btn:hover { border-color: var(--navy-mid); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--navy); border-radius: 999px; transition: .25s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 100vh; display: grid; align-items: center;
  padding: calc(var(--nav-h) + 56px) 1rem 56px;
  background:
    linear-gradient(135deg, rgba(15,45,110,.85) 0%, rgba(10,25,80,.72) 60%, rgba(15,45,110,.78) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay, .dark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,45,110,.30), rgba(10,25,65,.55));
}
.hero-content, .hero-stats, .scroll-indicator, .hero-particles { position: relative; z-index: 2; }
.hero-content { width: min(100%, 1080px); margin: 0 auto; }
.hero-badge {
  width: fit-content; margin-bottom: 1rem;
  padding: .55rem .95rem;
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  background: rgba(255,255,255,.12); color: #ffffff;
  font-weight: 700; letter-spacing: .08em; font-size: .82rem;
}
.hero-title {
  margin: 0; font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.3rem); line-height: .94;
  letter-spacing: -.03em; text-transform: uppercase; max-width: 780px; color: #ffffff;
}
.title-line { display: block; }
.hero-title .accent, .hero-title .text-accent { color: var(--sky); }
.hero-desc {
  max-width: 690px; margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem); color: rgba(255,255,255,.85);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 2.25rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  border: 1px solid transparent; border-radius: 999px; padding: .95rem 1.35rem;
  font-weight: 800; transition: transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--sky), #0ea5e9);
  color: #fff; box-shadow: 0 12px 28px rgba(56,189,248,.32);
}
.btn-outline {
  border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.10); color: #ffffff;
}
.btn-outline:hover { border-color: rgba(255,255,255,.70); background: rgba(255,255,255,.18); }
.btn-sm { padding: .8rem 1.1rem; font-size: .95rem; }
.btn-lg { padding: 1rem 1.35rem; width: 100%; }

/* On light sections, make primary btn navy */
.about-section .btn-primary,
.products-section .btn-primary,
.contact-section .btn-primary,
.quote-form-card .btn-primary,
.product-card .btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; box-shadow: 0 10px 24px rgba(15,45,110,.22);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem; margin-top: 1rem; margin-bottom: 4.75rem;
}
.stat-item {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius); padding: 1.15rem 1.2rem;
  backdrop-filter: blur(10px);
}
.stat-number, .stat-suffix { font-family: "Oswald", sans-serif; font-size: 2rem; color: var(--sky); }
.stat-label { display: block; margin-top: .35rem; color: rgba(255,255,255,.82); font-size: .95rem; }
.scroll-indicator {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .55rem; color: rgba(255,255,255,.72); min-width: 120px; padding-top: .5rem;
}
.scroll-text { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.scroll-arrow {
  width: 2px; height: 32px;
  background: linear-gradient(var(--sky), transparent);
  animation: pulseArrow 1.8s infinite;
}
@keyframes pulseArrow { 50% { transform: translateY(8px); opacity: .45; } }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }

/* Section headers */
.section-header { max-width: 760px; margin-bottom: 2.5rem; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .11em;
  color: var(--navy-mid); font-weight: 800; margin-bottom: 1rem;
}
.section-tag.light { color: var(--sky-light); }
.section-tag span { display: block; width: 42px; height: 2px; background: linear-gradient(90deg, var(--navy-mid), transparent); }
.section-tag.light span { background: linear-gradient(90deg, var(--sky-light), transparent); }
.section-heading {
  margin: 0; font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02;
  text-transform: uppercase; color: var(--text);
}
.section-heading.light { color: #ffffff; }
.section-heading .text-accent { color: var(--navy-mid); }
.section-heading.light .text-accent { color: var(--sky); }
.section-sub, .about-text, .contact-info p { color: var(--text-soft); font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,.82); }

/* About */
.about-section { background: var(--bg); }
.about-grid, .contact-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 2rem; align-items: center;
}
.about-img-stack { position: relative; min-height: 520px; }
.about-img-main, .about-img-accent {
  position: absolute; background-size: cover; background-position: center;
  border-radius: 28px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.about-img-main { inset: 0 72px 42px 0; }
.about-img-accent { width: 42%; height: 44%; right: 0; bottom: 0; }
.about-exp-badge {
  position: absolute; left: 24px; bottom: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #ffffff; border-radius: 22px; padding: 1rem 1.15rem;
  display: flex; align-items: center; gap: .9rem;
  box-shadow: 0 18px 34px rgba(15,45,110,.22);
}
.exp-num { font-family: "Oswald", sans-serif; font-size: 2rem; line-height: 1; color: var(--sky); }
.exp-text { font-weight: 700; line-height: 1.2; color: #fff; }
.about-values {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .9rem; margin: 1.6rem 0 2rem;
}
.value-item {
  background: var(--sky-pale); border: 1px solid rgba(56,189,248,.22);
  border-radius: 18px; padding: 1rem 1.1rem;
  display: flex; align-items: center; gap: .8rem;
  font-weight: 700; color: var(--navy);
}
.value-item i { color: var(--navy-mid); }

/* Services */
.services-section, .quote-section {
  background:
    linear-gradient(135deg, rgba(15,45,110,.92) 0%, rgba(10,25,80,.88) 100%),
    url('https://images.unsplash.com/photo-1513828583688-c52646db42da?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.testimonial-section { background: var(--bg-soft); }

.services-grid, .blog-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.2rem;
}
.service-card, .product-card, .blog-card, .quote-form-card,
.contact-map, .contact-info, .testimonial-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.service-card {
  padding: 1.5rem; min-height: 100%; display: flex; flex-direction: column;
}
.service-card:hover, .product-card:hover, .blog-card:hover,
.contact-info:hover, .contact-map:hover {
  transform: translateY(-4px); border-color: rgba(56,189,248,.35); box-shadow: var(--shadow);
}
.service-icon {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  background: var(--sky-pale); color: var(--navy-mid); font-size: 1.35rem; margin-bottom: 1rem;
}
.service-card h3 { margin: 0 0 .65rem; color: var(--text); }
.service-card p { color: var(--text-soft); }
.service-link, .read-more {
  margin-top: auto; display: inline-flex; align-items: center;
  gap: .45rem; color: var(--navy-mid); font-weight: 800;
}

/* Product filters */
.product-filters, .gallery-filters {
  display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-bottom: 2rem;
}
.filter-btn {
  border: 1px solid var(--line-strong); background: var(--bg-card);
  color: var(--text-soft); padding: .82rem 1.15rem; border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: #ffffff; border-color: var(--navy);
}
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2rem; }
.product-card { overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.product-img { position: relative; height: 220px; background-size: cover; background-position: center; }
.product-img::after, .gallery-img::after, .blog-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.40));
}
.product-badge, .product-status, .blog-date {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  border-radius: 999px; padding: .42rem .72rem; font-size: .75rem; font-weight: 800;
}
.product-status { left: auto; right: 14px; }
.product-badge { background: var(--navy); color: #fff; }
.product-status.in-stock, .product-status.available {
  background: rgba(22,163,74,.15); color: #14532d; border: 1px solid rgba(22,163,74,.28);
}
.product-status.made-to-order {
  background: rgba(245,158,11,.15); color: #78350f; border: 1px solid rgba(245,158,11,.28);
}
.product-info { padding: 1.2rem; }
.product-info h4 { margin: 0 0 .3rem; color: var(--text); }
.product-info p { color: var(--text-soft); }
.product-meta { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin: 1rem 0 1.1rem; flex-wrap: wrap; }
.price { color: var(--text); font-weight: 700; }
.price strong { color: var(--navy-mid); font-size: 1.08rem; }
.lead-time { color: var(--muted); font-size: .95rem; }
.quote-btn { width: 100%; }

/* Quote form */
.quote-form-card { padding: 1.35rem; max-width: 920px; margin: 0 auto; }
.quote-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-group { display: grid; gap: .5rem; }
.form-group label { font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 16px;
  background: var(--bg-soft); color: var(--text); padding: .95rem 1rem; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group select option { color: var(--text); background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,74,173,.10);
  background: #ffffff;
}
.full-width { grid-column: 1 / -1; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.gallery-item {
  position: relative; min-height: 300px; overflow: hidden;
  border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.gallery-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .45s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(15,45,110,.92));
}
.gallery-overlay h4 { color: #fff; margin: 0; }
.gallery-overlay p { margin: .25rem 0 0; color: rgba(255,255,255,.78); }

/* Testimonials */
.testimonial-slider { max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .4s ease; }
.testimonial-card { min-width: 100%; padding: 2rem; }
.stars { color: var(--accent); margin-bottom: 1rem; }
.testimonial-card p { font-size: 1.08rem; color: var(--text-soft); }
.client-info { display: flex; align-items: center; gap: .85rem; margin-top: 1.2rem; }
.client-avatar { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--sky-pale); color: var(--navy-mid); font-weight: 800; }
.client-info strong { color: var(--text); }
.client-info span { display: block; color: var(--muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.2rem; }
.slider-btn, .slider-dot { border: 1px solid var(--line-strong); background: var(--bg-card); color: var(--text); }
.slider-btn { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; }
.slider-dots { display: flex; gap: .55rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; padding: 0; }
.slider-dot.active { background: var(--navy-mid); border-color: transparent; }

/* Blog */
.blog-section { background: var(--bg-soft); }
.blog-card { overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.blog-img { position: relative; height: 220px; background-size: cover; background-position: center; }
.blog-date { background: var(--navy); color: #fff; }
.blog-content { padding: 1.2rem; }
.blog-content h4 { color: var(--text); margin: 0 0 .5rem; }
.blog-content p { color: var(--text-soft); }
.blog-cat { display: inline-block; margin-bottom: .65rem; color: var(--navy-mid); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.read-more { color: var(--navy-mid); font-weight: 800; }

/* Contact */
.contact-section { background: var(--bg); }
.contact-info { padding: 1.6rem; }
.contact-info h3 { color: var(--text); }
.contact-details { display: grid; gap: 1rem; margin: 1.4rem 0; }
.contact-item { display: grid; grid-template-columns: 52px 1fr; gap: .9rem; align-items: start; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-item strong { color: var(--text); }
.contact-item span { color: var(--text-soft); }
.contact-icon, .social-links a, .footer-social a { width: 46px; height: 46px; border-radius: 14px; display: inline-grid; place-items: center; background: var(--sky-pale); color: var(--navy-mid); }
.social-links, .footer-social { display: flex; flex-wrap: wrap; gap: .7rem; }
.contact-map { padding: 1rem; }
.map-container { height: 360px; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); }
.service-area { margin-top: 1rem; border-radius: 18px; border: 1px solid var(--line); background: var(--bg-soft); padding: 1rem; }
.service-area h4 { color: var(--text); margin: 0 0 .75rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: .65rem; }
.area-tags span { padding: .55rem .8rem; border-radius: 999px; background: var(--sky-pale); border: 1px solid rgba(56,189,248,.25); color: var(--navy); font-weight: 700; }

/* WhatsApp */
.whatsapp-float {
  position: fixed; right: 18px; left: auto; bottom: 18px; z-index: 1090;
  width: 58px; height: 58px; border: 0; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #16a34a, #22c55e); color: white;
  box-shadow: 0 12px 28px rgba(22,163,74,.28);
}
.wa-tooltip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--navy); color: #fff;
  padding: .5rem .7rem; border-radius: 999px;
  opacity: 0; transform: translateX(8px); transition: .2s ease;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* Chat Widget */
.chatbot-container {
  position: fixed !important; right: 88px !important; left: auto !important; bottom: 18px !important;
  z-index: 1100 !important; width: 220px; height: 58px; display: block !important;
  --chat-widget-width: min(92vw, 360px); --chat-widget-height: min(78vh, 500px);
}
.chatbot-toggle {
  position: absolute !important; inset: 0 !important; width: 100% !important; height: 58px !important;
  border-radius: 999px !important; display: flex !important; align-items: center !important;
  justify-content: flex-start !important; gap: 12px !important; padding: 0 18px !important;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid)) !important;
  color: #fff !important; box-shadow: 0 12px 28px rgba(15,45,110,.25) !important; transform: none !important;
}
.chat-toggle-label { font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.chat-badge { margin-left: auto; position: static !important; width: 22px; height: 22px; flex: 0 0 22px; background: var(--danger); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.chatbot-window {
  position: absolute !important; right: 0 !important; left: auto !important; bottom: 0 !important; top: auto !important;
  width: var(--chat-widget-width) !important; height: var(--chat-widget-height); max-height: var(--chat-widget-height);
  border-radius: 24px !important; opacity: 0; pointer-events: none; transform: scale(.96);
  transform-origin: bottom right; transition: opacity .25s ease, transform .25s ease;
  background: #ffffff; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.chatbot-window.open { opacity: 1; pointer-events: auto; transform: scale(1); }
.chatbot-container.open { width: var(--chat-widget-width); height: var(--chat-widget-height); }
.chatbot-container.open .chatbot-toggle { opacity: 0; pointer-events: none; }
.chat-header {
  display: flex; justify-content: space-between; align-items: center; padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-bottom: 1px solid rgba(255,255,255,.10);
}
.chat-header-info { display: flex; gap: .8rem; align-items: center; }
.chat-avatar { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.15); }
.chat-avatar i { color: #fff; }
.chat-header strong { color: #fff; display: block; }
.chat-header span { display: block; color: rgba(255,255,255,.75); font-size: .88rem; }
.chat-close { border: 0; background: transparent; color: #fff; font-size: 1rem; }
.chat-messages { max-height: calc(var(--chat-widget-height) - 132px); overflow: auto; padding: 1rem; display: grid; gap: .8rem; background: var(--bg-soft); }
.chat-msg { max-width: 88%; padding: .85rem .95rem; border-radius: 18px; line-height: 1.5; }
.chat-msg p { margin: 0; }
.chat-msg.bot { background: #ffffff; border: 1px solid var(--line); color: var(--text-soft); }
.chat-msg.user { margin-left: auto; background: var(--navy); color: #fff; }
.chat-msg a { color: var(--navy-mid); font-weight: 700; }
.chat-quick-btns { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .7rem; }
.quick-btn { border: 1px solid var(--line-strong); background: var(--bg-card); color: var(--navy); border-radius: 999px; padding: .5rem .8rem; font-weight: 700; }
.chat-input-wrap { display: grid; grid-template-columns: 1fr 50px; gap: .6rem; padding: 1rem; border-top: 1px solid var(--line); background: #fff; }
.chat-input-wrap input { border: 1px solid var(--line-strong); border-radius: 999px; background: var(--bg-soft); color: var(--text); padding: .85rem 1rem; outline: none; }
.chat-input-wrap button { border: 0; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; }

/* Footer */
.footer { position: relative; padding-top: 24px; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); }
.footer-wave { display: none; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1.1fr; gap: 1.4rem; padding: 2.5rem 0 1.2rem; }
.footer-col p, .footer-col li, .footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--sky); }
.footer-col h4 { margin: 0 0 .9rem; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.contact-list i { width: 18px; color: var(--sky); }
.footer-logo-wrap { display: inline-block; background: #ffffff; border-radius: 10px; padding: 6px 10px; margin-bottom: .75rem; }
.footer-bottom { padding: 1rem 0 2rem; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: rgba(255,255,255,.50); }
.credit a { color: var(--sky); }
/* Footer social icons — light on navy */
.footer-social a { background: rgba(255,255,255,.10); color: #fff; }
.footer-social a:hover { background: var(--sky); color: var(--navy); }

/* PWA prompt */
.pwa-prompt { position: fixed; left: 18px; bottom: 22px; z-index: 1001; }
.pwa-content { display: flex; align-items: center; gap: .9rem; background: #ffffff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: .9rem 1rem; }
.pwa-content > i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--sky-pale); color: var(--navy-mid); }
.pwa-content strong { color: var(--text); }
.pwa-content span { color: var(--text-soft); }
.pwa-close { border: 0; background: transparent; color: var(--muted); font-size: 1rem; }

/* Quote status */
.quote-status { display: none; margin-bottom: 14px; padding: 12px 14px; border-radius: 14px; font-size: .95rem; border: 1px solid transparent; }
.quote-status.info, .quote-status.success, .quote-status.warning, .quote-status.error { display: block; }
.quote-status.info    { background: rgba(56,189,248,.10); color: #0c4a6e; border-color: rgba(56,189,248,.25); }
.quote-status.success { background: rgba(22,163,74,.10);  color: #14532d; border-color: rgba(22,163,74,.25); }
.quote-status.warning { background: rgba(245,158,11,.10); color: #78350f; border-color: rgba(245,158,11,.25); }
.quote-status.error   { background: rgba(220,38,38,.10);  color: #7f1d1d; border-color: rgba(220,38,38,.25); }

/* Catalog / Pass 3 */
.catalog-trust-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 26px 0 18px; }
.trust-pill { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; color: var(--text); font-weight: 600; }
.trust-pill i { color: var(--navy-mid); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 24px 0 18px; flex-wrap: wrap; }
.catalog-search-wrap { flex: 1 1 360px; display: flex; align-items: center; gap: 12px; background: var(--bg-card); border: 1px solid var(--line-strong); padding: 14px 16px; border-radius: 16px; }
.catalog-search-wrap i { color: var(--muted); }
.catalog-search { width: 100%; background: transparent; border: 0; outline: 0; color: var(--text); font: inherit; }
.catalog-search::placeholder { color: var(--muted); }
.catalog-summary { display: flex; align-items: center; gap: 12px; }
.catalog-count { color: var(--text-soft); font-weight: 600; }
.catalog-clear { border: 1px solid var(--line-strong); background: var(--bg-card); color: var(--text); border-radius: 999px; padding: 10px 14px; cursor: pointer; }
.product-topline { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.product-category, .recent-chip { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.product-category { color: var(--navy-mid); font-weight: 700; }
.recent-chip { position: absolute; left: 14px; bottom: 14px; padding: 6px 10px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 999px; color: var(--navy); font-weight: 700; }
.product-actions-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.recent-viewed { box-shadow: 0 0 0 2px rgba(26,74,173,.25), var(--shadow); }
.empty-products { margin-top: 28px; padding: 32px 20px; text-align: center; border-radius: 22px; border: 2px dashed var(--line-strong); background: var(--bg-soft); }
.empty-products i { font-size: 34px; margin-bottom: 12px; color: var(--navy-mid); }
.empty-products p { color: var(--text-soft); }

/* FAQ */
.faq-section { background: var(--bg-soft); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; color: var(--text-soft); }

.sticky-quote-cta { display: none !important; }

/* Admin */
.nav-admin-link { opacity: .92; }
.admin-body { background: var(--bg-soft); min-height: 100vh; }
.admin-topbar { position: sticky; top: 0; z-index: 1200; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(15,45,110,.06); }
.admin-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .95rem 0; }
.admin-logo { display: flex; align-items: center; gap: .9rem; color: var(--text); text-decoration: none; background: #fff; border-radius: 10px; padding: 4px 10px; border: 1px solid var(--line); }
.admin-logo div { display: grid; }
.admin-logo strong { color: var(--navy); }
.admin-logo span { color: var(--text-soft); font-size: .95rem; }
.admin-shell { display: grid; grid-template-columns: 320px 1fr; gap: 1.25rem; max-width: 1440px; margin: 0 auto; padding: 1.25rem; }
.admin-sidebar { display: grid; gap: 1rem; align-content: start; position: sticky; top: 88px; height: max-content; }
.admin-sidebar-card, .admin-card, .admin-summary-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.admin-sidebar-card, .admin-card { padding: 1.15rem; }
.admin-sidebar-card h3, .admin-card h2 { margin-bottom: .75rem; color: var(--text); }
.admin-sidebar-actions { display: grid; gap: .7rem; margin-top: .9rem; }
.admin-label, .form-label { display: block; margin: .8rem 0 .42rem; font-weight: 600; color: var(--text-soft); }
.admin-help { margin-top: .9rem; color: var(--text-soft); font-size: .93rem; line-height: 1.5; }
.admin-nav { display: grid; gap: .6rem; }
.admin-nav-link { width: 100%; display: flex; align-items: center; gap: .8rem; background: var(--bg-soft); border: 1px solid var(--line); color: var(--text); padding: .95rem 1rem; border-radius: 16px; cursor: pointer; transition: .25s; }
.admin-nav-link:hover, .admin-nav-link.active { background: var(--sky-pale); border-color: rgba(56,189,248,.35); color: var(--navy); transform: translateY(-1px); }
.admin-main { min-width: 0; }
.admin-view { display: none; }
.admin-view.active { display: block; }
.admin-section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.admin-section-head h1 { font-size: clamp(1.6rem,2vw,2.25rem); margin-bottom: .2rem; color: var(--text); }
.admin-section-head p { color: var(--text-soft); }
.admin-summary-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; margin-bottom: 1rem; }
.admin-summary-card { padding: 1.2rem; }
.admin-summary-label { display: block; color: var(--text-soft); margin-bottom: .45rem; }
.admin-summary-card strong { font-size: 2rem; display: block; color: var(--navy); }
.admin-summary-card small { color: var(--text-soft); }
.admin-two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1rem; }
.admin-products-layout { grid-template-columns: minmax(320px,.9fr) minmax(340px,1.1fr); }
.admin-card-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.admin-inline-tools, .admin-toolbar { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.compact-control { max-width: 230px; }
.admin-chip { display: inline-flex; align-items: center; padding: .42rem .75rem; border-radius: 999px; background: var(--sky-pale); border: 1px solid rgba(56,189,248,.28); color: var(--navy-mid); font-size: .85rem; }
.admin-list { display: grid; gap: .75rem; }
.admin-list-item { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; padding: 1rem; border-radius: 18px; background: var(--bg-soft); border: 1px solid var(--line); }
.admin-list-main { min-width: 0; }
.admin-list-item strong { display: block; margin-bottom: .2rem; color: var(--text); }
.admin-list-item p, .admin-list-item small { color: var(--text-soft); overflow-wrap: anywhere; }
.admin-row-actions { display: flex; gap: .55rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.admin-row-actions.stacked { flex-direction: column; align-items: stretch; min-width: 160px; }
.status-pill { display: inline-flex; align-items: center; justify-content: center; min-width: 86px; padding: .45rem .75rem; border-radius: 999px; font-size: .82rem; text-transform: capitalize; border: 1px solid var(--line); background: var(--bg-soft); }
.status-pill.new     { background: rgba(56,189,248,.12); color: #0c4a6e; border-color: rgba(56,189,248,.25); }
.status-pill.contacted { background: rgba(124,58,237,.10); color: #4c1d95; border-color: rgba(124,58,237,.20); }
.status-pill.quoted  { background: rgba(22,163,74,.10); color: #14532d; border-color: rgba(22,163,74,.22); }
.status-pill.closed  { background: rgba(220,38,38,.10); color: #7f1d1d; border-color: rgba(220,38,38,.22); }
.admin-form .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .85rem; }
.form-group-span-2 { grid-column: span 2; }
.checkbox-row { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--text); }
.admin-form-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.danger-outline { border-color: rgba(220,38,38,.4) !important; color: #dc2626 !important; }
.inactive { opacity: .72; }
.quote-row { align-items: stretch; }
.admin-empty { padding: 1rem; border-radius: 16px; background: var(--bg-soft); color: var(--text-soft); }
.admin-bullets { display: grid; gap: .75rem; padding-left: 1.2rem; color: var(--text-soft); }
.admin-bullets code { background: var(--bg-soft); padding: .16rem .4rem; border-radius: 6px; color: var(--navy); border: 1px solid var(--line); }
.admin-form input, .admin-form select, .admin-form textarea { border: 1px solid var(--line-strong); border-radius: 12px; background: var(--bg-soft); color: var(--text); padding: .85rem 1rem; width: 100%; outline: none; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(26,74,173,.10); background: #ffffff; }
.admin-form select option { color: var(--text); background: #fff; }
.admin-toast { position: fixed; right: 20px; bottom: 20px; z-index: 2000; opacity: 0; transform: translateY(16px); pointer-events: none; padding: .95rem 1rem; border-radius: 14px; background: #ffffff; color: var(--text); border: 1px solid var(--line); box-shadow: var(--shadow); transition: .25s; }
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast.success { border-color: rgba(22,163,74,.4); }
.admin-toast.error { border-color: rgba(220,38,38,.5); }
.mobile-only { display: none; }
body.menu-open, body.admin-menu-open { overflow: hidden; }

/* Responsive */
@media (max-width: 1080px) {
  .services-grid, .blog-grid, .product-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: calc(var(--nav-h) + 8px); left: 1rem; right: 1rem; display: grid; gap: .45rem; padding: 1rem; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; }
  .nav-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .catalog-trust-strip, .faq-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; top: auto; }
  .admin-summary-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-two-col, .admin-products-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-bottom: 110px; }
  .hero-title { font-size: clamp(2.6rem, 14vw, 4.1rem); }
  .hero-btns, .product-filters, .gallery-filters { justify-content: flex-start; }
  .hero-stats, .services-grid, .blog-grid, .product-grid, .gallery-grid, .form-row, .footer-grid, .about-values, .catalog-trust-strip, .faq-grid { grid-template-columns: 1fr; }
  .about-img-stack { min-height: 380px; }
  .about-img-main { inset: 0 20px 30px 0; }
  .about-img-accent { width: 46%; height: 38%; }
  .testimonial-card, .contact-info { padding: 1.2rem; }
  .contact-item { grid-template-columns: 44px 1fr; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .chatbot-container { right: 74px !important; bottom: 14px !important; width: 198px; --chat-widget-width: min(calc(100vw - 88px), 330px); --chat-widget-height: min(72vh, 460px); }
  .chatbot-toggle { height: 54px !important; padding: 0 16px !important; }
  .chat-toggle-label { font-size: .95rem; }
  .pwa-prompt { left: 14px; right: 14px; bottom: 14px; }
  .pwa-content { width: 100%; }
  .catalog-summary, .product-actions-row, .product-topline { width: 100%; }
  .admin-shell { padding: .85rem; }
  .mobile-only { display: inline-flex; }
  .admin-sidebar { position: fixed; left: 0; top: 74px; bottom: 0; width: min(88vw,320px); transform: translateX(-110%); transition: .25s; z-index: 1500; overflow: auto; padding-bottom: 1rem; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-summary-grid { grid-template-columns: 1fr; }
  .admin-section-head, .admin-card-head, .admin-topbar-inner { flex-direction: column; align-items: stretch; }
  .admin-toolbar, .admin-inline-tools, .admin-form-actions { flex-direction: column; }
  .compact-control { max-width: none; }
  .admin-form .form-grid { grid-template-columns: 1fr; }
  .form-group-span-2 { grid-column: auto; }
  .admin-list-item { flex-direction: column; }
  .admin-row-actions, .admin-row-actions.stacked { justify-content: flex-start; align-items: stretch; min-width: 0; }
}
.footer-logo-wrap { display:inline-block; background:#fff; border-radius:10px; padding:6px 10px; margin-bottom:.75rem; }
