/* ---------- Base & Reset ---------- */
:root {
  --header-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #111;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: var(--header-height); /* ensure content sits below fixed header */
}

/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.logo img {
  height: 40px;
}

/* Desktop nav */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #091d4f;
}

/* Desktop CTA */
.btn-outline {
  padding: 0.6rem 1.2rem;
  border: 1px solid #000;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Hamburger placeholder - overwritten in mobile media queries */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- Mobile Drawer (polished) ---------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, #0c2340 0%, #0b2038 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.4rem 1.6rem 2.6rem 1.6rem;
  transition: right 0.36s cubic-bezier(.22,.9,.29,1);
  z-index: 120;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* visible state */
.mobile-drawer.active {
  right: 0;
}

/* Drawer Header: logo + close */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 1.4rem;
  padding-right: 4px;
}

.drawer-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

/* Close button */
.close-btn {
  background: rgba(255,255,255,0.06);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Drawer Links */
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 6px 0 1.4rem 0;
}

.drawer-links li { margin-bottom: 18px; }

.drawer-links a {
  color: #dfe9f6;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  display: inline-block;
  padding-right: 6px;
}

.drawer-links a.active,
.drawer-links a:hover {
  color: #f9d46e;
}

/* Search pill */
.drawer-search {
  margin: 1rem 0 1.4rem 0;
  position: relative;
}

.drawer-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 28px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: #e9e9ea;
  color: #333;
  box-shadow: none;
}

.drawer-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  opacity: 0.7;
  filter: none;
}

/* Contact block */
.drawer-contact {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #d7e3f0;
  margin-top: 10px;
}

.drawer-contact a { color: #f9d46e; }

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-icons img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
}

/* safe bottom spacing */
.mobile-drawer .drawer-contact,
.mobile-drawer .social-icons {
  margin-bottom: 24px;
}

/* overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 110;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Mobile menu toggle styles ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 130;
  }

  .menu-toggle img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
  }

  .menu-toggle.active img {
    transform: rotate(90deg);
  }

  /* hide desktop nav and CTA on mobile (we use drawer) */
  .nav-links { display: none; }
  .desktop-btn { display: none; }
}

/* hide drawer on large screens */
@media (min-width: 769px) {
  .mobile-drawer { display: none; }
  .drawer-overlay { display: none; }
}

/* ---------- Search bar styling (desktop) ---------- */
.search-form {
  display: flex;
  align-items: center;
}

.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  opacity: 0.6;
}

.search-form input {
  padding: 0.6rem 1rem 0.6rem 40px;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
  font-size: 0.95rem;
  width: 280px;
  transition: all 0.3s;
  background-color: #f9f9f9;
}

.search-form input:focus {
  border-color: #0070c9;
  width: 320px;
  background-color: #fff;
}

.desktop-search {
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .desktop-search {
    display: none;  /* ✅ Hide desktop search on mobile */
  }
}

/* ---------- Hero Section ---------- */
.hero {
  display: flex;
  height: 80vh;
  margin-top: 0; /* header spacing handled by body padding */
}

.hero-half {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 3rem;
}

.hero-half.left {
  background-image: url("Assets/Home-Page/Home-page-exterior.webp");
}

.hero-half.right {
  background-image: url("Assets/Home-Page/home-page-interior.webp");
}

.overlay-content {
  color: #fff;
}

.overlay-content .small-text {
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.overlay-content h1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.overlay-content .arrow {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 900px) {
  .hero { flex-direction: column; height: auto; }
  .hero-half { width: 100%; height: 50vh; }
  .overlay-content h1 { font-size: 1.5rem; }
  .overlay-content { padding: 1.5rem; }
}

/* keep slider responsive on small screens */
@media (max-width: 768px) {
  .slide { min-width: 33.3333%; } /* show 3 logos */
  .slide img { width: 86px; height: 86px; }
}
@media (max-width: 420px) {
  .slide { min-width: 50%; } /* show 2 logos */
  .slide img { width: 72px; height: 72px; padding: 10px; }
}

/* ---------- Logo Slider Styles ---------- */
.logo-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}


.slider {
  width: 80%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px;
}

.slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}
.slide img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* Dots */
.dots { display: flex; justify-content: center; margin-top: 1rem; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #b3a9a2; opacity: 0.5; transition: 0.3s; }
.dot.active { background: #7a5b46; opacity: 1; }


.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}
.product:hover { transform: translateY(-4px); }

.media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.product:hover .media img { transform: scale(1.05); }

/* Overlay */
.overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity .3s ease;
}
.product:hover .overlay { opacity: 1; }

.btn {
  background: #111; color: #fff;
  border: none; padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s ease;
}
.btn:hover { background: #333; }

.info {
  padding: 14px 16px;
}
.title {
  font-weight: 600; margin: 0 0 6px;
}
.price {
  color: #666; font-weight: 500;
}

/* Products grid */
.products {
  width: min(1100px, 92%);
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

/* Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  background: #f6f6f6;
  border-radius: 0px;
  min-height: 320px; /* visual height fallback */
}

/* Image style */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms cubic-bezier(.22,.9,.29,1), filter 240ms;
  will-change: transform;
}

/* Overlay (hidden by default) */
.product-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,0.56); /* dark translucent */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
  padding: 2rem;
  box-sizing: border-box;
}

/* overlay inner content centered and styled */
.overlay-inner {
  text-align: center;
  color: #fff;
}

.overlay .title {
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  font-weight: 600;
}

.overlay .price {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1rem;
  color: #e6e6e6;
}

/* button */
.btn.add-cart {
  background: #222;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;     /* ← removes underline */
  display: inline-block;
  transition: background 180ms;
}
.btn.add-cart:hover { background: #111; }

/* Hover state: show overlay + zoom image a bit */
.product-card:hover .overlay,
.product-card.hover .overlay { /* .hover for touch toggle via JS */
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover img,
.product-card.hover img {
  transform: scale(1.06);
}

/* Make overlay content larger (like your large center look) */
.overlay-inner {
  max-width: 380px;
  margin: 0 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .products { grid-template-columns: 1fr; gap: 2rem; margin: 2rem auto; }
  .product-card { min-height: 56vh; }
  .overlay .title { font-size: 1.5rem; }
  .overlay .price { font-size: 1.1rem; }
}

/* optional small polish */
.product-card .overlay { backdrop-filter: blur(3px); }


/* Products grid wrapper */
.products{
  width: min(1100px, 92%);
  margin: 64px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 36px; /* row x column */
}

/* Product card */
.product-card{
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

/* media (image box) */
.product-card .media{
  position: relative;
  aspect-ratio: 4 / 5;      /* consistent height like your UI */
  overflow: hidden;
  background: #f6f6f6;
}

.product-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .25s ease;
  display: block;
}

/* hover overlay */
.product-card .overlay{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45);
  opacity: 0; transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}

.product-card:hover img{ transform: scale(1.05); }
.product-card:hover .overlay{ opacity: 1; }

/* meta (title + price) */
.product-card .meta{
  padding: 14px 2px 0;
}

.product-card .title{
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .7px;
  margin: 0 0 6px;
  text-transform: uppercase;
  color: #111;
}

.product-card .price{
  font-size: .85rem;
  color: #777;
  margin-bottom: 10px;
}

/* Buttons (shared) */
.btn{
  background:#111; color:#fff;
  border:none; padding:11px 18px;
  border-radius:999px; cursor:pointer;
  font-weight:600; transition:opacity .2s ease, transform .2s ease;
}
.btn:hover{ opacity:.9;
}

/* ---- FIX: remove forced tall height on mobile ---- */
@media (max-width: 900px){
  .products{
    grid-template-columns: 1fr;   /* single column */
    gap: 24px;                    /* tighter vertical spacing */
    margin: 40px auto;
  }

  .product-card{
    min-height: unset !important; /* overrides old 56vh rule */
    height: auto !important;      /* let content decide height */
  }
}

/* ===== Promo Banner Slider ===== */
.promo-slider{
  width: min(1200px, 92%);      /* same container width as page sections */
  margin: 48px auto;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  background: #fff;
}

.promo-track{
  display: flex;
  transition: transform 600ms cubic-bezier(.22,.9,.29,1);
  will-change: transform;
}

.promo-slide{
  min-width: 100%;
  user-select: none;
}

.promo-slide img{
  display: block;
  width: 100%;
  height: auto;                /* keeps original image ratio on all screens */
}

/* arrows */
.promo-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  color: #111;
  font-size: 22px;
  cursor: pointer;
  display: grid; place-items: center;
}
.promo-arrow:hover{ background:#fff; }
.promo-arrow.prev{ left: 10px; }
.promo-arrow.next{ right: 10px; }

/* dots */
.promo-dots{
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  display: flex; gap: 8px; justify-content: center; align-items: center;
}
.promo-dots .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  border: 0;
  cursor: pointer;
}
.promo-dots .dot.active{ background: #fff; }

/* responsive tweaks */
@media (max-width: 900px){
  .promo-slider{ margin: 36px auto; }
  .promo-arrow{ width: 36px; height: 36px; font-size: 20px; }
}
@media (max-width: 560px){
  .promo-slider{ border-radius: 4px; }
  .promo-arrow{ display:none; } /* mobile: swipe + dots only */
}

/* promo slider: better touch handling on mobile */
.promo-track{
  touch-action: pan-y;      /* allow vertical page scroll, we handle horizontal */
  will-change: transform;
}

/* ===== Video Section ===== */
.video-section{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* desktop: same fixed size like your image */
.video-wrapper{
  width: 100%;
  max-width: 1842px;   /* desktop max width */
  background:#000;
  position: relative;
  overflow: hidden;
}

.video-player{
  width: 100%;
  height: auto;         /* ✅ natural height maintain karega */
  display: block;
}

/* mobile/tablet: remove fixed height, use aspect-ratio from JS */
@media (max-width: 900px){
  .video-wrapper{
    height: auto;           /* JS will set aspect-ratio */
    aspect-ratio: 7 / 2;   /* temporary fallback until JS sets real ratio */
  }
}

/* Custom mute button */
.mute-btn{
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.mute-btn:hover{
  background: rgba(0,0,0,0.85);
}

.projects {
  width: min(1100px, 92%);
  margin: 4rem auto;
  text-align: center;
}

.projects-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.projects-slider {
  overflow: hidden;
  position: relative;
}

.projects-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.project-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 1rem;
  box-sizing: border-box;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.project-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  text-align: left;
}

.project-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  text-align: left;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .project-card { flex: 0 0 100%; padding: 0 0.5rem; }
}

/* dots */
.projects-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.projects-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s;
}

.projects-dots span.active {
  background: #333;
  opacity: 1;
}

.projects{ width:min(1100px,92%); margin:4rem auto; text-align:center; }
.projects-title{ font-size:1.8rem; font-weight:600; margin-bottom:2rem; }

/* slider */
.projects-slider{ overflow:hidden; position:relative; }
.projects-track{ display:flex; transition:transform .6s ease-in-out; will-change:transform; }

/* 3 per view desktop */
#projectsCarousel .project-card{ flex:0 0 calc(100% / 3); padding:0 1rem; box-sizing:border-box; }
#projectsCarousel .project-card img{ width:100%; height:200px; object-fit:cover; border-radius:6px; display:block; }
#projectsCarousel .project-card h3{ font-size:1.1rem; font-weight:600; margin:1rem 0 .5rem; text-align:left; }
#projectsCarousel .project-card p{ font-size:.9rem; line-height:1.4; color:#555; text-align:left; }

/* mobile: 1 per view */
@media (max-width:768px){
  #projectsCarousel .project-card{ flex:0 0 100%; padding:0 .5rem; }
}

/* dots */
.projects-dots{ margin-top:1rem; display:flex; justify-content:center; gap:8px; }
.projects-dots button{ width:8px; height:8px; border-radius:50%; border:0; background:#bbb; opacity:.5; cursor:pointer; }
.projects-dots button.active{ background:#333; opacity:1; }



/* ===== Footer ===== */
.site-footer {
  background: #f5f5f5;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* center vertically all children */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  gap: 2rem;
}


/* Footer logo center properly */
.footer-logo {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;  /* horizontally center logo */
  align-items: center;      /* vertically center logo */
}
/* Ensure the image itself doesn’t add stray spacing */
.footer-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.footer-col p,
.footer-col a,
.footer-col ul li {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.footer-col a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #0c2340;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

/* Footer bottom */
.footer-bottom {
  background: #0c2340;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #f9d46e;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 1.5rem;
  }
}



/* ---------- OUR STORY Section: 50/50 layout using <img> ---------- */
.story-section {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* ✅ control total height here */
  min-height: auto;
  max-height: 100vh; /* 👈 height limit for section */
}

/* left image side */
.story-left {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ✅ Let image auto-size naturally (not force height 100%) */
.story-img {
  width: 100%;
  height: auto;
  max-height: 92vh;      /* 👈 keep same height limit as section */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* right beige content panel */
.story-right {
  flex: 1;
  background: #f5efe9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px; /* slightly reduced padding */
  box-sizing: border-box;
  max-height: 92vh; /* keep same cap as left side */
}

.story-content {
  max-width: 520px;
  width: 100%;
}

.story-content h2 {
  margin: 0 0 14px 0;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.story-content p {
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-weight: 300;
  font-size: 1rem;
}

/* ---------- Responsive (mobile stacked) ---------- */
@media (max-width: 900px) {
  .story-section {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }

  .story-left {
    width: 100%;
    height: auto;
  }

  .story-img {
    width: 100%;
    height: 360px; /* normal mobile image height */
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .story-right {
    width: 100%;
    padding: 24px;
    max-height: none;
  }

  .story-content h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .story-content p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

/* ===== ZX Testimonials (Updated Responsive Slider) ===== */
.zx-testimonials {
  padding: 56px 16px;
  font-family: "Poppins", sans-serif;
  color: #12263b;
  background: #fff;
  position: relative;
}

.zx-testimonials .zx-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zx-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0b2340;
  margin-bottom: 36px;
}

/* Carousel layout */
.zx-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.zx-arrow {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(11, 34, 64, 0.08);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #0b2340;
  box-shadow: 0 6px 18px rgba(11, 34, 64, 0.04);
  font-size: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.zx-arrow:hover {
  transform: scale(1.05);
  background: #f7f9fb;
}

/* viewport & track */
.zx-viewport {
  flex: 1;
  overflow: hidden;
}
.zx-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(.22, .9, .29, 1);
  will-change: transform;
  padding: 6px 0;
  touch-action: pan-y; /* for swipe on mobile */
  -webkit-user-select: none;
  user-select: none;
}

/* card */
.zx-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(11, 34, 64, 0.04);
  border: 1px solid rgba(11, 34, 64, 0.03);
  flex: 0 0 calc((100% - 48px) / 3); /* 3-per-row baseline */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 34, 64, 0.06);
}

.zx-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.zx-head {
  margin: 6px 0 8px;
  color: #0b2340;
  font-weight: 700;
  font-size: 1rem;
}
.zx-text {
  color: #9aa4b2;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 360px;
}
.zx-author {
  margin-top: 10px;
  font-weight: 700;
  color: #334155;
}
.zx-role {
  display: block;
  font-weight: 600;
  color: #b3bcc8;
  font-size: 0.88rem;
  margin-top: 4px;
}

/* Dots container */
#zxDots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 8px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
#zxDots::-webkit-scrollbar {
  height: 6px;
}
#zxDots::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

/* dot buttons */
#zxDots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e2e2;
  border: none;
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex: 0 0 auto;
}
#zxDots button.active {
  background: #0b2340;
  transform: scale(1.2);
}

/* Responsive breakpoints */
@media (max-width: 999px) {
  .zx-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 699px) {
  .zx-carousel {
    gap: 8px;
  }
  .zx-card {
    flex: 0 0 100%;
    text-align: left;
    padding: 22px;
  }
  .zx-avatar {
    margin-bottom: 10px;
  }
  .zx-arrow {
    display: none; /* hide desktop arrows on mobile */
  }
  .zx-title {
    font-size: 22px;
  }
  .zx-inner {
    padding: 0 12px;
  }

  /* mobile dots tighter */
  #zxDots button {
    width: 7px;
    height: 7px;
    margin: 0 2px;
  }
}

:root {
  --accent: #091D4F;
  --muted: #6b7280;
  --bg: #ffffff;
  --card-shadow: 0 8px 24px rgba(11, 35, 64, 0.04);
  --radius-lg: 14px;
  --container-w: 1200px;
  --gallery-max-w-mobile: 520px;
  --gallery-max-w-desktop: 760px;
  --details-w-desktop: 420px;
}

/* Reset */
* { box-sizing: border-box; }
html,body { height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#0b1b2b;
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
  overflow-x:hidden;
}

/* Page container */
.container{
  max-width:var(--container-w);
  margin:0 auto;
  padding:30px 18px;
}

/* Product layout - mobile stacked by default */
.product-grid{
  display:block;
  gap:18px;
}

/* LEFT gallery and RIGHT details blocks (use these classes in HTML) */
.gallery-column{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.details-column{
  width:100%;
  margin:18px auto 0;
  padding:0 12px;
}

/* STAGE (main image card) - use same max width as thumbnails */
.stage{
  width:100%;
  max-width:var(--gallery-max-w-mobile);
  background:transparent;
  border-radius:var(--radius-lg);
  box-shadow:var(--card-shadow);
  overflow:visible; /* allow thumbnail area below to sit flush */
  margin:0 auto;
  padding:0;       /* edge-to-edge image */
}

/* main image wrapper (clipping + rounded corners) */
.main-wrap{
  overflow:hidden;
  border-radius:var(--radius-lg);
  position:relative;
}
.main-image{
  display:block;
  width:100%;
  height:54vh;            /* mobile default, adjusted at breakpoints below */
  max-height:460px;
  object-fit:cover;
  border-radius:0;
  transition: transform .35s ease, opacity .3s ease;
  cursor:pointer;
  margin:0;
}

/* arrows overlay */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.92); border:0;
  box-shadow:0 8px 20px rgba(2,6,23,0.06);
  cursor:pointer; z-index:10;
}
.arrow-left{ left:14px; }
.arrow-right{ right:14px; }
.arrow svg{ width:16px; height:16px; color:#111827; }

/* THUMBNAILS - anchored to stage width with padding to respect rounded corners */
.thumbs-wrap{
  width:100%;
  max-width:var(--gallery-max-w-mobile);
  margin:12px auto 0;
  padding:0 12px;           /* keeps thumbs visually inside rounded edges */
  box-sizing:border-box;
}
.thumbs{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  width:100%;
}
.thumb{
  width:100%;
  height:98px;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
  border:2px solid transparent;
  transition: box-shadow .15s ease, transform .12s ease;
  display:block;
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Active thumb: visual outer ring without resizing */
.thumb.active{
  transform:none !important;
  border-color:transparent;
  box-shadow: 0 6px 20px rgba(15,111,255,0.12), 0 6px 18px rgba(0,0,0,0.04);
  position:relative;
}
/* precise outer stroke as pseudo-element for crisp blue ring */
.thumb.active::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: 0 0 0 3px rgba(15,111,255,0.12);
}

/* DETAILS typography */
.product-title{ font-size:32px; margin:6px 0 14px; font-weight:800; color:#0b2340; }
.enquire-btn{ display:inline-flex; align-items:center; gap:10px; padding:14px 16px; border-radius:28px; background:var(--accent); color:#fff; border:0; font-weight:700; margin-bottom:14px; }
.lead{ font-size:15px; color:#202733; margin-bottom:18px; line-height:1.7; }
.info-grid{ display:block; gap:14px; }
.info-block{ margin-bottom:14px; }
.info-block h4{ font-size:13px; margin-bottom:8px; color:#111827; font-weight:700; }
.info-block ul{ margin:0; padding-left:18px; color:var(--muted); font-size:14px; line-height:1.7; }

/* Small screen tweaks */
@media (max-width:600px){
  .stage{ max-width:95%; }
  .thumbs-wrap{ max-width:95%; padding:0 8px; }
  .main-image{ height:56vh; max-height:480px; }
  .thumb{ height:90px; border-radius:8px; }
  .details-column{ max-width:95%; padding:0 10px; }
  .product-title{ font-size:26px; }
}

/* ---------- DESKTOP: FIXED 2-COLUMN LAYOUT ---------- */
@media (min-width:980px){
  /* grid layout: left flexible gallery, right fixed details */
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
  }

  /* left gallery align left (not centered) to match typical product pages */
  .gallery-column{
    align-items:flex-start;
  }

  /* stage and thumbs use a larger max width and align to left within the left column */
  .stage{
    max-width: var(--gallery-max-w-desktop);
    margin:0;             /* align to left column start */
  }
  .thumbs-wrap{
    max-width: var(--gallery-max-w-desktop);
    margin:12px 0 0 0;    /* sit directly below stage, left-aligned */
    padding:0 8px;        /* small inner padding so thumbs don't touch corner */
  }

  /* main image desktop height */
  .main-image{
    height:520px;
    max-height:none;
  }

  /* thumbnails larger */
  .thumb{ height:120px; border-radius:10px; }

  /* details column fixed width and pinned on right */
  .details-column{
    width:var(--details-w-desktop);
    margin:0;
    padding-left:28px;  /* a bit of breathing room inside the right column */
    box-sizing:border-box;
  }

  /* details typography larger */
  .product-title{ font-size:44px; }
  .info-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
}

/* Hide any modal/ghost image if present */
.modal, #modal, .modal-content, .modal-content img { display:none !important; visibility:hidden !important; opacity:0 !important; }

/* Accessibility focus styles */
.arrow:focus, .thumb:focus, .enquire-btn:focus { outline:3px solid rgba(15,111,255,0.14); outline-offset:3px; }

enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--accent); /* keep your site color */
  color: #fff;
  border: 0;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 111, 255, 0.12);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.enquire-btn:hover {
  background: #0b58d0;
  box-shadow: 0 10px 28px rgba(15, 111, 255, 0.22);
}

.cta-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes SVG white if original is black */
  transition: transform 0.25s ease;
}

.enquire-btn:hover .cta-icon {
  transform: scale(1.1);
}

.shade-section {
  text-align: center;
  margin: 50px 0;
}

.shade-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.shade-banner img {
  width: 100%;
  max-width: 1200px; /* Desktop banner max width */
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* Default: Desktop view */
.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .shade-title {
    font-size: 1.5rem;
  }
}


  /* bottom row (2 centered) */
  .shade-row .shade-item:nth-child(5) {
    grid-column: 2;
  }
  .shade-row .shade-item:nth-child(6) {
    grid-column: 3;
  }

/* ---------- SMALL SCREENS ---------- */
@media (max-width: 480px) {
  .shade-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .shade-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .shade-row .shade-item {
    height: calc(44vw);
  }

  /* Reset columns for small phones (normal 2×3 grid) */
  .shade-row .shade-item:nth-child(5),
  .shade-row .shade-item:nth-child(6) {
    grid-column: auto;
  }
}

/* ===== DESERT HERO BANNER ===== */
.desert-hero {
  text-align: center;
  padding: 80px 0;
  background-color: #fff;
}

.desert-heading {
  color: #0b2340;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* Banner Image */
.desert-banner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
}

.desert-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .desert-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .desert-hero {
    padding: 60px 0;
  }

  .desert-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .desert-banner img {
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .desert-heading {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .desert-hero {
    padding: 40px 0;
  }
}

/* FEATURES SECTION */
.features-section {
  padding: 72px 0;
  background: #fff;
}

.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.features-title {
  font-weight: 800;
  font-size: 30px;
  text-align: center;
  color: #0b2340;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

/* Grid: desktop shows 5 columns template but we fill visually as needed */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 28px;
  justify-items: center;
  align-items: start;
}

/* Card style */
.feature {
  width: 100%;
  max-width: 260px;            /* card width */
  background: #fff;
  border: 1px solid rgba(11, 35, 64, 0.06);
  padding: 28px 18px;
  box-shadow: 0 6px 18px rgba(11, 35, 64, 0.04);
  border-radius: 6px;
  text-align: center;
  box-sizing: border-box;
  transition: transform .22s ease, box-shadow .22s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 35, 64, 0.10);
}

.feature-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
  display: inline-block;
  opacity: 0.98;
}

/* label */
.feature-label {
  font-size: 13px;
  color: #444b56;
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}

/* Desktop: 4 cards in top row + 3 centered below */
@media (min-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 28px;
    justify-items: center;
  }

  /* first row: normal (1–4) */
  /* second row: center align (5–7) */
  .features-grid .feature:nth-child(5) {
    grid-column: 2;
  }
  .features-grid .feature:nth-child(6) {
    grid-column: 3;
  }
  .features-grid .feature:nth-child(7) {
    grid-column: 4;
  }
}

/* Tablet: 2 columns */
@media (max-width: 979px) and (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature { max-width: 340px; padding: 22px; }
}

/* Mobile: 2 columns and last single centered */
@media (max-width: 599px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .feature { max-width: 320px; padding: 18px; border-radius: 8px; }

  /* make the last item span both columns and center it */
  .features-grid .feature:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 260px;
  }
}

/* ===== CONTACT FORM INSIDE STORY SECTION ===== */
.story-right {
  background: #f5f1e9; /* same cream tone */
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-wrap {
  width: 100%;
  max-width: 600px;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 26px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  background: #dedede;
  border: none;
  border-radius: 6px;
  color: #333;
  resize: none;
}

.contact-form textarea {
  min-height: 160px;
}

.btn-primary {
  background: #1b1917;
  color: #d6b89b;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  width: fit-content;
}

.btn-primary:hover {
  background: #000;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .story-right {
    padding: 36px 20px;
  }

  .row.two-cols {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 28px;
  }
}

/* YOU MAY ALSO LIKE SECTION */
.also-section {
  padding: 60px 0;
  background: #fff;
}

.also-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0b2340;
  margin-bottom: 40px;
  text-transform: none;
}

/* GRID LAYOUT — desktop: 3 columns */
.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CARD */
.also-card {
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
  text-align: center;
}

.also-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 10px;
}

.also-thumb {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(11, 35, 64, 0.08);
}

.also-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.also-name {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #213047;
}

/* Hover effects */
.also-link:hover .also-thumb img {
  transform: scale(1.05);
}

.also-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 35, 64, 0.12);
}

/* RESPONSIVE — tablet: 2 columns */
@media (max-width: 900px) {
  .also-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .also-thumb img {
    height: 260px;
  }
}

/* MOBILE — 1 column */
@media (max-width: 600px) {
  .also-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .also-thumb img {
    height: 300px;
  }
  .also-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

/* ---------- Products Section ---------- */
.products-section {
  padding: 64px 20px 100px;
  background: #fff;
  color: #0b2340;
}

.products-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* header */
.products-head {
  text-align: center;
  margin-bottom: 42px;
}
.products-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 px;
  color: #0b2340;
}
.products-head .products-lead {
  max-width: 820px;
  margin: 0 auto;
  color: #5b6b78;
  font-size: 14px;
  line-height: 1.6;
}

/* grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 columns */
  gap: 36px 48px;
  align-items: start;
}

/* card */
.product-card {
  background: transparent;
  width: 100%;
}
.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

/* thumbnail box (fixed height, cover) */
.product-thumb {
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: 0 8px 24px rgba(11,35,64,0.04);
}
.product-thumb img {
  width: 100%;
  height: 360px;           /* desktop thumbnail height */
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

/* meta text */
.product-meta {
  padding-top: 14px;
}
.product-title {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
  color: #17243a;
}
.product-sub {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

/* hover */
.product-link:hover .product-thumb img {
  transform: scale(1.03);
}
.product-link:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE: tablet */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .product-thumb img { height: 300px; } /* slightly taller on medium screens */
}

/* MOBILE: single column */
@media (max-width: 600px) {
  .products-section { padding: 36px 16px 80px; }
  .products-head h2 { font-size: 26px; }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-thumb img {
    height: 320px; /* mobile tall hero-like cards like in example */
  }
  .product-meta { padding-top: 12px; }
}

/* small polish: keep long titles wrapping nicely */
.product-title, .product-sub { word-break: break-word; }
