/* ===== Theme: Red + Sky Blue (Bootstrap 5 overrides) ===== */
:root{
  --red:#e11d2a;
  --red-dark:#a8121d;
  --sky:#0ea5e9;
  --sky-dark:#0369a1;
  --bs-primary:#e11d2a;
  --bs-primary-rgb:225,29,42;
}

body{
  font-family:'Segoe UI',Roboto,Arial,sans-serif;
  background:#f7fafc;
  color:#1f2937;
}

/* Wider container for product sections */
.container-wide{
  width:100%;
  max-width:1480px;
  margin:0 auto;
  padding:0 24px;
}
@media (max-width:600px){
  .container-wide{padding:0 14px}
}

/* ===== Brand colors ===== */
.text-red{color:var(--red)!important}
.text-sky{color:var(--sky)!important}
.bg-red{background:var(--red)!important;color:#fff}
.bg-sky{background:var(--sky)!important;color:#fff}

.btn-red{background:var(--red);color:#fff;border:0}
.btn-red:hover{background:var(--red-dark);color:#fff}
.btn-sky{background:var(--sky);color:#fff;border:0}
.btn-sky:hover{background:var(--sky-dark);color:#fff}
.btn-outline-red{
  background:transparent;color:var(--red);border:2px solid var(--red);
}
.btn-outline-red:hover{background:var(--red);color:#fff}

/* ===== Top contact bar (above navbar) ===== */
.top-bar{
  background:linear-gradient(90deg,var(--red),var(--sky-dark));
  color:#fff;font-size:13px;
  padding:8px 0;
}
.top-bar .container{gap:10px}
.topbar-info{display:flex;flex-wrap:wrap;gap:18px;align-items:center}
.topbar-info span{display:inline-flex;align-items:center;gap:6px}
.topbar-info i{color:#fde68a;font-size:14px}
.topbar-social{display:flex;gap:14px;align-items:center}
.topbar-social a{
  color:#fff;font-size:15px;
  transition:.2s;text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;border-radius:50%;
  background:rgba(255,255,255,.15);
}
.topbar-social a:hover{background:#fff;color:var(--red);transform:translateY(-2px)}
@media (max-width:768px){
  .top-bar{font-size:12px;padding:8px 0}
  .topbar-info{gap:10px;justify-content:center;width:100%;text-align:center}
  .topbar-social{width:100%;justify-content:center;margin-top:6px}
}

/* ===== Navbar ===== */
.site-header{border-bottom:3px solid var(--red);box-shadow:0 4px 12px rgba(0,0,0,.05)}
.navbar-brand{font-weight:800;font-size:22px;color:var(--red)!important}
.navbar-brand span{color:var(--sky)}
.navbar-nav .nav-link{
  font-weight:600;color:#0f172a;border-radius:8px;padding:8px 14px!important;margin:0 2px;
}
.navbar-nav .nav-link:hover{background:var(--sky);color:#fff}
.navbar-nav .nav-link.active{background:var(--red);color:#fff}

/* ===== Carousel / Slider ===== */
.hero-carousel{margin:24px 0;border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.1)}
.hero-carousel-full{margin:0 0 30px;border-radius:0;width:100%;box-shadow:0 6px 18px rgba(0,0,0,.08)}

/* Slide background image — real <img> so it always renders */
.hero-carousel .carousel-item{
  min-height:560px;
  background-color:#0f172a;
  position:relative;overflow:hidden;
}
.slide-bg-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  z-index:0;
  animation:bgZoom 14s ease-out infinite alternate;
}
@keyframes bgZoom{
  from{transform:scale(1)}
  to{transform:scale(1.08)}
}

/* Light black overlay — keeps text readable, bg image still visible */
.slide-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,.2) 100%);
}

.hero-carousel .carousel-inner{height:100%}
.slide-content{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:flex-start;
  padding:60px;color:#fff;min-height:560px;
  max-width:1300px;margin:0 auto;
}

/* Glass-morphism text card */
.glass-card{
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:18px;
  padding:32px 36px;max-width:540px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}
.slide-tag{
  display:inline-block;background:rgba(255,255,255,.2);
  color:#fff;padding:6px 14px;border-radius:30px;
  font-size:12.5px;font-weight:700;letter-spacing:.5px;
  margin-bottom:14px;text-transform:uppercase;
  border:1px solid rgba(255,255,255,.3);
}
.slide-text h2{
  font-size:46px;font-weight:800;margin:0 0 14px;line-height:1.1;
  text-shadow:0 4px 14px rgba(0,0,0,.4);color:#fff;
}
.slide-text p{
  font-size:16.5px;line-height:1.6;opacity:.95;margin:0 0 18px;
  text-shadow:0 1px 3px rgba(0,0,0,.3);
}
.slide-text .btn{margin-top:6px;padding:12px 28px;font-weight:700}

/* Controls / indicators */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{width:5%;z-index:3;opacity:.9}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon{
  width:48px;height:48px;border-radius:50%;
  background-color:rgba(255,255,255,.25);background-size:50% 50%;
}
.hero-carousel .carousel-indicators{z-index:3;margin-bottom:22px}
.hero-carousel .carousel-indicators button{
  width:34px;height:5px;border-radius:3px;background:rgba(255,255,255,.55);
}
.hero-carousel .carousel-indicators button.active{background:#fff;width:50px}

@media (max-width:992px){
  .hero-carousel .carousel-item{min-height:500px}
  .slide-content{padding:40px 24px;min-height:500px;justify-content:center;text-align:center}
  .glass-card{max-width:100%;padding:24px 22px}
  .slide-text h2{font-size:32px}
}
@media (max-width:520px){
  .slide-text h2{font-size:26px}
  .slide-text p{font-size:14.5px}
}

/* ===== Section headings ===== */
.section-title{text-align:center;margin:50px 0 30px}
.section-title h2{
  font-size:32px;font-weight:800;color:var(--red);
  display:inline-block;padding-bottom:8px;
  border-bottom:3px solid var(--sky);margin:0;
}
.section-title p{color:#6b7280;margin-top:10px}

/* ===== Product Cards =====
   Bootstrap row-cols-1 row-cols-md-2 handles 1 col on phone, 2 on desktop. */
.product-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:18px;height:100%;
  display:flex;gap:18px;
  box-shadow:0 4px 12px rgba(0,0,0,.06);transition:.25s;
}
.product-card:hover{transform:translateY(-4px);border-color:var(--sky);box-shadow:0 8px 20px rgba(14,165,233,.15)}
.product-img{
  position:relative;
  flex:0 0 240px;background:#fff;border:1px solid #e5e7eb;border-radius:10px;
  display:flex;align-items:center;justify-content:center;padding:14px;
  min-height:260px;
}
.product-img img{max-height:240px;width:auto;object-fit:contain}

/* Litre / ml volume tag — small badge on top of the image box */
.vol-tag{
  position:absolute;top:10px;right:10px;z-index:2;
  background:linear-gradient(135deg,var(--red),var(--sky-dark));
  color:#fff;font-weight:800;font-size:13px;line-height:1.1;
  padding:6px 12px;border-radius:8px;
  box-shadow:0 4px 10px rgba(0,0,0,.18);
  text-align:center;letter-spacing:.3px;
}
.vol-tag small{
  display:block;font-size:9px;font-weight:600;
  text-transform:uppercase;opacity:.9;letter-spacing:.5px;
}
.brand-tag{
  position:absolute;top:10px;left:10px;z-index:2;
  background:#fff;color:var(--red);font-weight:800;font-size:11px;
  padding:4px 10px;border-radius:20px;border:1px solid var(--red);
  letter-spacing:.4px;
}

@media (max-width:992px){
  .product-img{flex:0 0 200px;min-height:220px}
  .product-img img{max-height:200px}
}
.product-info{flex:1;min-width:0}
.product-info h3{font-size:18px;font-weight:700;color:#0f172a;margin-bottom:6px}
.rating{color:#f59e0b;font-weight:700;font-size:14px;margin-bottom:4px}
.rating .muted{color:#6b7280;font-weight:500;margin-left:6px}
.pid{font-size:12px;color:#6b7280;margin-bottom:10px}
.pid b{color:#0f172a}
.details{border-top:1px dashed #e5e7eb;padding-top:10px;font-size:13.5px}
.details .row-d{display:flex;justify-content:space-between;padding:4px 0;border-bottom:1px dotted #eee}
.details .row-d:last-child{border-bottom:0}
.details .row-d .lbl{color:#6b7280}
.details .row-d .val{font-weight:600;color:#0f172a}
.tags{margin-top:10px;display:flex;flex-wrap:wrap;gap:6px}
.tag{background:#e0f2fe;color:var(--sky-dark);font-size:11px;padding:4px 10px;border-radius:20px;font-weight:600}
.tag.red{background:#fee2e2;color:var(--red-dark)}

/* WhatsApp icon-only button (small, sits inline with tags) */
.tags{align-items:center}
.btn-whatsapp{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;
  background:#25D366;color:#fff;
  border-radius:50%;
  text-decoration:none;
  border:0;transition:.2s;
  box-shadow:0 2px 4px rgba(37,211,102,.35);
  margin-left:2px;
}
.btn-whatsapp:hover{background:#128C7E;color:#fff;transform:scale(1.1)}
.btn-whatsapp svg{width:14px;height:14px;fill:currentColor}

@media (max-width:520px){
  .product-card{flex-direction:column}
  .product-img{flex:0 0 auto;width:100%;min-height:260px}
  .product-img img{max-height:260px}
}

/* ===== Page Hero ===== */
.page-hero{
  background:
    linear-gradient(110deg, rgba(168,18,29,.85) 0%, rgba(225,29,42,.7) 45%, rgba(14,165,233,.7) 100%),
    url('product/Extra-Space-Asia-Cleaning-and-Organisation-Tips-optimized.jpg') center/cover no-repeat;
  color:#fff;padding:90px 0;text-align:center;
  position:relative;
  border-bottom:4px solid var(--red);
}
.page-hero h1{
  margin:0 0 10px;font-size:42px;font-weight:800;
  text-shadow:0 4px 14px rgba(0,0,0,.4);
}
.page-hero p{margin:0;opacity:.95;font-size:17px;text-shadow:0 2px 6px rgba(0,0,0,.35)}
@media (max-width:768px){
  .page-hero{padding:60px 0}
  .page-hero h1{font-size:30px}
}

/* ===== About features ===== */
.feature-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:12px;
  padding:24px;text-align:center;height:100%;
  box-shadow:0 4px 10px rgba(0,0,0,.05);transition:.2s;
}
.feature-card:hover{transform:translateY(-4px);border-color:var(--red)}
.feature-card .icon{
  width:60px;height:60px;border-radius:50%;
  background:var(--sky);color:#fff;font-size:26px;font-weight:bold;
  display:inline-flex;align-items:center;justify-content:center;margin-bottom:12px;
}
.feature-card h4{color:var(--red);margin-bottom:8px}

/* ===== Contact ===== */
.contact-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:24px;height:100%;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}
.contact-card h3{color:var(--red);margin-bottom:18px}
.info-item{display:flex;gap:12px;align-items:flex-start;margin:14px 0}
.info-item .ico{
  width:38px;height:38px;background:var(--sky);color:#fff;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-weight:bold;flex-shrink:0;
}
.info-item b{display:block;color:#0f172a}
.info-item span{color:#6b7280;font-size:14px}
.map-wrap{border-radius:14px;overflow:hidden;box-shadow:0 6px 18px rgba(0,0,0,.08);margin-bottom:30px}
.map-wrap iframe{width:100%;height:340px;border:0;display:block}

.socials{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}
.socials a{
  width:40px;height:40px;border-radius:50%;
  background:#1f2937;color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:18px;transition:.25s;text-decoration:none;
}
.socials a i{line-height:1}
.socials a:hover{transform:translateY(-3px) scale(1.08);color:#fff;box-shadow:0 8px 16px rgba(0,0,0,.25)}

/* Brand-correct colors per icon */
.socials a[title="Facebook"]{background:#1877F2}
.socials a[title="Instagram"]{background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%)}
.socials a[title="YouTube"]{background:#FF0000}
.socials a[title^="X"]{background:#000}
.socials a[title="LinkedIn"]{background:#0A66C2}
.socials a[title="WhatsApp"]{background:#25D366}

/* ===== Why Choose Us (home page) ===== */
.why-us{
  background:linear-gradient(135deg,#fef2f2 0%,#e0f2fe 100%);
}
.why-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:26px 22px;height:100%;text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  transition:.25s;position:relative;overflow:hidden;
}
.why-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--red),var(--sky));
  transform:scaleX(0);transform-origin:left;transition:.35s;
}
.why-card:hover{transform:translateY(-6px);box-shadow:0 12px 24px rgba(2,6,23,.1)}
.why-card:hover::before{transform:scaleX(1)}
.why-icon{
  width:70px;height:70px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:32px;color:#fff;margin-bottom:14px;
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}
.why-icon.why-red{background:linear-gradient(135deg,var(--red),#fb7185)}
.why-icon.why-sky{background:linear-gradient(135deg,var(--sky),#7dd3fc)}
.why-card h4{color:#0f172a;font-weight:700;font-size:18px;margin:0 0 8px}
.why-card p{color:#6b7280;font-size:14.5px;line-height:1.6;margin:0}

/* ===== SEO content section (home page) ===== */
.seo-content{background:#fff;border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb}
.seo-content h1{
  color:var(--red);font-weight:800;font-size:32px;
  margin:0 0 16px;padding-bottom:10px;border-bottom:3px solid var(--sky);
  display:inline-block;
}
.seo-content h2{color:var(--sky-dark);font-weight:700;font-size:24px;margin:28px 0 10px}
.seo-content h3{color:var(--red);font-weight:700;font-size:20px;margin:24px 0 8px}
.seo-content h4{color:#0f172a;font-weight:700;font-size:18px;margin:20px 0 8px}
.seo-content h5{color:var(--sky-dark);font-weight:700;font-size:16px;margin:18px 0 6px;text-transform:uppercase;letter-spacing:.5px}
.seo-content p{color:#374151;font-size:15.5px;line-height:1.75;margin:0 0 14px}

/* Side image of lady using the product (sticks while reading) */
.seo-img-wrap{position:relative}
@media (min-width:992px){
  .seo-img-wrap{position:sticky;top:90px}
}
.seo-img-wrap img{
  width:100%;height:auto;object-fit:cover;
  border:6px solid #fff;
  outline:2px solid var(--sky);
}
.seo-img-badge{
  position:absolute;bottom:18px;left:-12px;
  background:var(--red);color:#fff;
  padding:8px 18px;border-radius:30px;
  font-weight:700;font-size:13px;
  box-shadow:0 6px 14px rgba(225,29,42,.35);
}

/* ===== Product image: clickable / zoomable cursor ===== */
.zoomable-img{cursor:zoom-in;transition:.2s}
.zoomable-img:hover{opacity:.9}

/* ===== Image Zoom Popup ===== */
.img-popup-overlay{
  display:none;
  position:fixed;inset:0;z-index:2000;
  background:rgba(15,23,42,.88);
  align-items:center;justify-content:center;
  padding:30px;
}
.img-popup-overlay.active{display:flex}
.img-popup-box{
  position:relative;
  max-width:600px;width:90%;
  background:#fff;
  border-radius:14px;
  padding:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
  display:flex;align-items:center;justify-content:center;
}
.img-popup-box img{
  max-width:100%;
  max-height:80vh;
  width:auto;height:auto;
  object-fit:contain;
  border-radius:8px;
}
.img-popup-close{
  position:absolute;top:14px;right:18px;z-index:2001;
  width:40px;height:40px;border-radius:50%;
  background:var(--red);color:#fff;
  font-size:26px;line-height:40px;text-align:center;
  cursor:pointer;font-weight:700;
  box-shadow:0 4px 10px rgba(0,0,0,.3);
  transition:.2s;
  user-select:none;
}
.img-popup-close:hover{background:var(--red-dark);transform:scale(1.08)}
@media (max-width:520px){
  .img-popup-box{padding:12px;width:94%}
  .img-popup-close{top:8px;right:8px;width:34px;height:34px;font-size:20px;line-height:34px}
}

/* ===== Footer ===== */
.site-footer{background:#0f172a;color:#cbd5e1;margin-top:50px;border-top:4px solid var(--red)}
.site-footer h4{color:#fff;margin-bottom:14px;font-size:15px;font-weight:700}
.site-footer a{color:#cbd5e1;text-decoration:none;display:block;padding:4px 0;font-size:14px}
.site-footer a:hover{color:var(--sky)}
.footer-brand{font-size:22px;font-weight:800;color:#fff;margin-bottom:10px}
.footer-brand span{color:var(--red)}
.footer-copy{
  text-align:center;padding:14px 0;border-top:1px solid #1e293b;
  font-size:13px;color:#94a3b8;
}
