/* ============================================================
   HIGH COLLECTION — Window Blinds In Lahore
   Premium White + Orange Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600&display=swap');

:root {
  /* Brand Colors from Logo */
  --orange:        #e8700a;
  --orange-dark:   #C97308;
  --orange-light:  #F5A535;
  --orange-pale:   #FEF3E2;
  --orange-pale2:  #FDF7EE;

  /* Neutrals */
  --black:         #1A1A1A;
  --dark:          #2C2C2C;
  --mid:           #555555;
  --muted:         #888888;
  --border:        #E8E8E8;
  --border2:       #F0F0F0;
  --white:         #FFFFFF;
  --bg:            #FAFAFA;
  --bg2:           #F5F5F5;

  /* Typography */
  --font-body:     'Outfit', sans-serif;
  --font-display:  'Playfair Display', serif;

  /* Spacing */
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  /* Shadows */
  --shadow-xs:     0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow:        0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 56px rgba(0,0,0,0.14);
  --shadow-orange: 0 8px 28px rgba(232,137,10,0.30);

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --t:             all 0.32s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: var(--font-body); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-flax {
  width: 94%;
  margin: 0 auto;
  padding: 0 24px;
}


section { padding: 40px 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 9px 0;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left a { color: var(--orange-light); transition: var(--t); }
.top-bar-left a:hover { color: var(--white); }
.top-bar-left i { color: var(--orange); font-size: 0.72rem; }

/* Social Icons Top */
.top-social { display: flex; gap: 6px; align-items: center; }
.top-social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem;
  transition: var(--t);
}
.top-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo img { height: 75px; width: auto; object-fit: contain; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 8px 15px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 15px; right: 15px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--orange-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange-dark); font-weight: 600; }

/* Quote Button */
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: var(--t) !important;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(232,137,10,0.28);
}
.btn-quote::after { display: none !important; }
.btn-quote:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile info bar — hidden on desktop, shown on mobile via media query */
.mobile-info-bar { display: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--bg2);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

/* Slide backgrounds */
.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-visual {
  position: absolute; inset: 0;
}

/* Slide 1 – white clean */
.slide-visual.s1 {
  background: linear-gradient(105deg, #FFFFFF 0%, #FDF7EE 40%, #F5EDD8 100%);
}
/* Slide 2 – soft grey */
.slide-visual.s2 {
  background: linear-gradient(105deg, #F8F8F8 0%, #F0F0F0 50%, #E8E4DC 100%);
}
/* Slide 3 – dark premium */
.slide-visual.s3 {
  background: linear-gradient(105deg, #1A1A1A 0%, #2C2C2C 50%, #3a2e18 100%);
}



/* Decorative blind slat element */
.slat-deco {
  position: absolute;
  right: 0; top: 0;
  width: 48%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  pointer-events: none;
}
.slat-deco span {
  display: block;
  height: 38px;
  margin: 4px 0;
  transform: skewY(-4deg) translateX(60px);
  transition: transform 0.6s ease;
  border-radius: 3px 0 0 3px;
}
.slide.active .slat-deco span { transform: skewY(-4deg) translateX(0); }

.s1 .slat-deco span { background: linear-gradient(90deg, rgba(232,137,10,0.12), rgba(232,137,10,0.04)); }
.s2 .slat-deco span { background: linear-gradient(90deg, rgba(232,137,10,0.15), rgba(232,137,10,0.05)); }
.s3 .slat-deco span { background: linear-gradient(90deg, rgba(232,137,10,0.25), rgba(232,137,10,0.05)); }

.slat-deco span:nth-child(odd) { margin-right: -30px; opacity: 0.7; }

/* REPLACE IMAGE area */
.slide-img-box {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  height: 82%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slide-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-xl);
  font-size: 3rem;
}
.slide-img-placeholder span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.s1 .slide-img-placeholder { background: linear-gradient(135deg, var(--orange-pale), #f0e4cc); }
.s2 .slide-img-placeholder { background: linear-gradient(135deg, #e8e0d4, #d4c9b8); }
.s3 .slide-img-placeholder { background: linear-gradient(135deg, #2a2a2a, #3d3d3d); }
/* actual img tag inside: */
.slide-img-box img { width: 100%; height: 100%; object-fit: cover; }

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding-left: 60px;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1.5px solid rgba(232,137,10,0.3);
  border-radius: 50px;
  background: var(--orange-pale);
}
.s3 .slide-tag { background: rgba(232,137,10,0.12); }

.slide-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--black);
}
.s3 .slide-content h1 { color: var(--white); }

.slide-content p {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 30px;
  max-width: 400px;
  line-height: 1.7;
  font-weight: 400;
}
.s3 .slide-content p { color: rgba(255,255,255,0.70); }

/* Price tag on slide */
.slide-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 0.85rem;
}
.slide-price strong { font-size: 1.15rem; }

.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 28px; left: 60px;
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--orange);
}
.slider-nav {
  position: absolute;
  right: 28px; bottom: 24px;
  display: flex; gap: 8px; z-index: 10;
}
.snav {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--dark);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.snav:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.s3 .slider-dots .dot { background: rgba(255,255,255,0.35); }
.s3 ~ .slider-dots { }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid var(--orange);
  transition: var(--t);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid var(--border);
  transition: var(--t);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.s3 .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.s3 .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--orange);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-header { text-align: center; margin-bottom: 26px; }
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0;
}
.sec-tag::before,
.sec-tag::after {
  content: '';
  display: block;
  width: 0px; height: 1.5px;
  background: var(--orange);
  border-radius: 1px;
}
.sec-header h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0px;
}
.sec-header p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(232,137,10,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

/* Product Image Area */
.prod-img-wrap {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: var(--bg2);
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .prod-img-wrap img { transform: scale(1.04); }

/* Placeholder until real image */
.prod-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.5s ease;
}
.product-card:hover .prod-placeholder { transform: scale(1.04); }
.prod-placeholder .p-icon { font-size: 2.6rem; opacity: 0.5; }
.prod-placeholder .p-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
  text-align: center;
  padding: 0 10px;
}
/* Add image comment overlay */
.prod-placeholder::before {
  content: 'Replace with product photo';
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.6rem;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card:hover .prod-placeholder::before { opacity: 1; }

/* Badges */
.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-sale { background: #FF4A4A; color: var(--white); }
.badge-new  { background: var(--orange); color: var(--white); }
.badge-hot  { background: var(--black); color: var(--white); }

/* Wishlist/share */
.prod-action-top {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; gap: 6px; z-index: 2;
}
.prod-fav {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.prod-fav:hover { color: #FF4A4A; }

/* Product Body */
.prod-body { padding: 8px 13px 15px 9px; flex: 1; display: flex; flex-direction: column; }
.prod-body h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.3;
}
.prod-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0px;
  line-height: 1.55;
  flex: 1;
}
.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0px;
}
.price-now {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
}
.price-was {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-per {
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 2px;
}
.prod-footer-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-enq {
  flex: 1;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 9px 14px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: var(--t);
  text-decoration: none;
}
.btn-enq:hover { background: var(--orange); }
.btn-wa {
  width: 36px; height: 36px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
  text-decoration: none;
}
.btn-wa:hover { background: #1DA851; transform: scale(1.08); }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features-section { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border2);
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 60px; height: 60px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: var(--t);
}
.feat-card:hover .feat-icon { background: var(--orange); }
.feat-card:hover .feat-icon i { color: var(--white) !important; }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.feat-card p { font-size: 0.81rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo {
  background: var(--orange);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.promo .container { position: relative; z-index: 1; }
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.promo-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 8px;
}
.promo-text p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  max-width: 460px;
}
.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange-dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-promo:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testi-card {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border2);
  transition: var(--t);
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(232,137,10,0.2); }
.testi-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--black); }
.testi-loc { font-size: 0.74rem; color: var(--muted); }

/* ============================================================
   CONTACT / ENQUIRY
   ============================================================ */
.contact-sec { background: var(--orange-pale2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-left > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  transition: var(--t);
}
.contact-item:hover { border-color: rgba(232,137,10,0.25); box-shadow: var(--shadow-xs); }
.c-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.c-icon i { color: var(--orange); }
.c-text strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.c-text a, .c-text span { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.c-text a:hover { color: var(--orange); }

/* Form */
.form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border2);
}
.form-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}
.form-box .sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: var(--t);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,137,10,0.10);
}
.fg select option { background: var(--white); }
.fg textarea { resize: vertical; min-height: 90px; }
.btn-form {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(232,137,10,0.28);
}
.btn-form:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  transition: var(--t);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a i { font-size: 0.6rem; color: var(--orange); }
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.82rem;
}
.footer-contact-item .fi { color: var(--orange); margin-top: 2px; font-size: 0.78rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--orange-light); }
.footer-contact-item span { color: rgba(255,255,255,0.50); }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: var(--orange); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--orange-pale2);
  padding: 52px 0;
  border-bottom: 1px solid rgba(232,137,10,0.12);
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 8px; }
.breadcrumb { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 0.55rem; color: var(--muted); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none;
  transition: var(--t);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); color: var(--white); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}
.wa-float-label {
  position: fixed;
  bottom: 38px; right: 92px;
  background: var(--white);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--t);
  white-space: nowrap;
  z-index: 9998;
}
.wa-float:hover + .wa-float-label,
.wa-float-label:hover { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .slide-img-box { width:90%; }
  .slide-price {visibility:hidden;}
  .slide-content p {visibility:hidden;}
  .slide-btns{visibility:hidden;}
  .slide-content h1 {font-size: 20px;}
  .container-flax {
    width: 100%;
    margin: 0 auto;
    padding: 0px 10px;
}
    

  .slide-content { padding-left: 40px; max-width: 600px; }
}

@media (max-width: 768px) {
  section { padding: 20px 0; }

  /* ── MOBILE HEADER ── */
  /* Hide desktop top bar completely on mobile */
  .top-bar { display: none; }

  /* Header becomes a stacked mobile header */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    border-bottom: none;
  }

  /* Nav wrap: logo left, hamburger right — top row */
  .nav-wrap {
    flex-wrap: wrap;
    padding: 10px 0 0 0;
    gap: 0;
    align-items: stretch;
  }

  /* Logo stays left, normal size */
  .logo { flex-shrink: 0; padding: 0 0 8px 0; }
  .logo img { height: 45px; }

  /* Hamburger to the right of logo */
  .hamburger {
    display: flex;
    margin-left: auto;
    align-self: center;
    background: var(--orange-pale);
    border: 1.5px solid rgba(232,137,10,0.25);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    gap: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
  }
  .hamburger span { background: var(--orange-dark); width: 20px; height: 2px; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Mobile info bar: address + socials shown BELOW logo row */
  .mobile-info-bar {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--border2);
    background: var(--bg2);
	text-align:center;  }
  .mobile-address {
    align-items: center;
    gap: 2px;
    padding: 7px 0 5px 0;
    font-size: 0.95rem;
    color: var(--mid);
    font-weight: 500;
    line-height: 1.3;
  }
  .mobile-address i { color: var(--orange); font-size: 0.7rem; flex-shrink: 0; }
  .mobile-address a { color: var(--mid); }

  .mobile-socials {
    display: ruby;
    gap: 8px;
    padding: 5px 0 9px 0;
    align-items: center;
  }
  .mobile-socials a {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
    color: var(--mid);
    transition: var(--t);
    text-decoration: none;
  }
  .mobile-socials a:hover,
  .mobile-socials a:active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }
  /* WA gets green */
  .mobile-socials a.wa { background: #25D366; border-color: #25D366; color: #fff; }

  /* Dropdown nav menu */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 8px 0 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    border-top: 2px solid var(--orange);
    z-index: 999;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border2);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-links a::before {
    content: '›';
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
  }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; margin: 10px 16px 0; border-radius: 50px !important; justify-content: center; }
  .nav-links a.btn-quote::before { display: none; }

  /* Other mobile layout fixes */
  .hero { height: 500px; }
  .slide-content { padding-left: 24px; padding-right: 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .slider-dots { left: 24px; }
  .top-bar-left { gap: 10px; }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { height: 440px; }
  .slide-content h1 { font-size: 1.75rem; }
  .form-box { padding: 24px 18px; }
  .promo-inner { flex-direction: column; text-align: center; }
  .btn-quote { display: inline-flex !important; }
  .nav-links a:last-child { margin: 10px 12px 0; }
}
