/* =========================================================
   KOTASTONE — PREMIUM STYLESHEET
   ========================================================= */

/* ── CSS VARIABLES ── */
:root {
  --primary: #2a6b5f;
  --primary-dark: #1d4d44;
  --primary-light: #3d8c7e;
  --accent: #c8a96e;
  --accent-dark: #a8893e;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --text: #333333;
  --text-muted: #666666;
  --light: #f5f5f0;
  --light2: #ebebeb;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 80px;
  --tran: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --dark: #f0f0f0;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --light: #181818;
  --light2: #242424;
  --white: #1e1e1e;
  --border: #333333;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%; z-index: 9999; transition: width 0.1s;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem; font-weight: 900; letter-spacing: 4px;
  color: var(--white); margin-bottom: 24px;
}
.preloader-logo span { color: var(--accent); }
.preloader-bar {
  width: 280px; height: 3px;
  background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; animation: preload 0.7s ease-in-out forwards;
}
@keyframes preload { to { width: 100%; } }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: var(--tran); z-index: 999;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h);
  z-index: 1000; transition: var(--tran);
  background: transparent;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 900; letter-spacing: 3px;
  color: #fff; white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
#navbar.scrolled .nav-logo { color: var(--primary-dark); }
.nav-menu { flex: 1; }
.nav-menu ul { display: flex; gap: 4px; justify-content: center; }
.nav-menu a {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.9); border-radius: var(--radius-sm);
  transition: var(--tran); letter-spacing: 0.5px; text-transform: uppercase;
}
#navbar.scrolled .nav-menu a { color: var(--text); }
.nav-menu a:hover, .nav-menu a.active {
  color: var(--accent) !important;
  background: rgba(200,169,110,0.1);
}
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
#theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3);
  background: transparent; color: #fff; font-size: 15px;
  cursor: pointer; transition: var(--tran);
  display: flex; align-items: center; justify-content: center;
}
#navbar.scrolled #theme-toggle { border-color: var(--border); color: var(--text); }
#theme-toggle:hover { background: rgba(255,255,255,0.1); }
.btn-catalogue {
  padding: 10px 22px; background: var(--accent);
  color: #fff; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.5px; transition: var(--tran); display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-catalogue:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,169,110,0.35); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 1100; position: relative;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--tran);
}
#navbar.scrolled .hamburger span { background: var(--text); }

/* ── MOBILE MENU OVERLAY ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1050; backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease;
}
.nav-overlay.open { display: block; opacity: 1; }

/* ── MOBILE SLIDE-IN DRAWER ── */
#mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw);
  height: 100%; background: var(--white); z-index: 1200;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.25);
  overflow-y: auto;
}
#mobile-drawer.open { right: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: var(--primary-dark);
}
.drawer-logo {
  font-family: 'Montserrat', sans-serif; font-size: 1.4rem;
  font-weight: 900; letter-spacing: 2px; color: #fff;
}
.drawer-logo span { color: var(--accent); }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--tran);
}
.drawer-close:hover { background: var(--accent); border-color: var(--accent); }
.drawer-nav { flex: 1; padding: 16px 0; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; font-size: 0.95rem; font-weight: 600;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border); transition: var(--tran);
}
.drawer-nav a:hover, .drawer-nav a.active {
  color: var(--primary); background: rgba(42,107,95,0.06); padding-left: 32px;
}
.drawer-nav a i { width: 20px; color: var(--accent); font-size: 0.9rem; }
.drawer-footer {
  padding: 24px; border-top: 1px solid var(--border);
}
.drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--accent); color: #fff;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem;
  text-align: center; width: 100%; transition: var(--tran);
}
.drawer-cta:hover { background: var(--accent-dark); }
.drawer-theme-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding: 10px 0; font-size: 0.88rem; color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(42,107,95,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 820px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; padding: 7px 20px;
  border: 1px solid rgba(200,169,110,0.6);
  background: rgba(200,169,110,0.15); border-radius: 100px;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem); opacity: 0.9;
  max-width: 580px; margin: 0 auto 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--primary);
  color: #fff; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; transition: var(--tran);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(42,107,95,0.4); }
.btn-primary.mt { margin-top: 12px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border: 2px solid rgba(255,255,255,0.7);
  color: #fff; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; transition: var(--tran);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.75); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity:1; } 50% { transform:scaleY(0.5); opacity:0.4; } }
.hero-nav { position: absolute; bottom: 50%; transform: translateY(50%); z-index: 3; width: 100%; display: flex; justify-content: space-between; padding: 0 24px; }
.hero-prev, .hero-next {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 16px; cursor: pointer; transition: var(--tran);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.hero-prev:hover, .hero-next:hover { background: var(--accent); border-color: var(--accent); }
.hero-dots {
  position: absolute; bottom: 28px; right: 32px; z-index: 3;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--tran);
}
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── SECTION HEADS ── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px; padding: 6px 16px;
  background: rgba(42,107,95,0.1); border-radius: 100px;
}
.section-tag.light { color: var(--accent); background: rgba(200,169,110,0.15); }
.section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--dark); margin-bottom: 16px; line-height: 1.2;
}
.section-head p { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* ── STATS STRIP ── */
.stats-strip {
  padding: 0; background: var(--primary-dark);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 0 24px;
}
.stat-item {
  padding: 48px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem; font-weight: 900; color: var(--accent);
  display: inline-block;
}
.stat-sym { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: visible; }
.about-img-wrap img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); height: 520px; object-fit: cover;
}
.about-badge-card {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
}
.about-badge-card i { font-size: 2rem; color: var(--accent); }
.about-badge-card strong { display: block; color: var(--dark); font-weight: 700; }
.about-badge-card span { font-size: 0.85rem; color: var(--text-muted); }
.about-text { padding-left: 16px; }
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin: 12px 0 20px;
}
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.benefit-card {
  padding: 20px; background: var(--light);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: var(--tran);
}
.benefit-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }
.benefit-card h4 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.benefit-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── VARIANTS ── */
.variants { background: var(--light); }
.variants-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.variant-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--tran); }
.variant-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.variant-img { position: relative; overflow: hidden; height: 280px; }
.variant-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.variant-card:hover .variant-img img { transform: scale(1.08); }
.variant-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,107,95,0.9), transparent);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 28px; opacity: 0; transition: var(--tran);
}
.variant-card:hover .variant-overlay,
.variant-card.touch-active .variant-overlay { opacity: 1; }
.btn-view {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; background: var(--accent);
  color: #fff; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.88rem; transition: var(--tran);
}
.btn-view:hover { background: var(--accent-dark); }
.variant-info { padding: 20px; background: var(--white); }
.variant-info h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.variant-info span { font-size: 0.85rem; color: var(--text-muted); }

/* ── FINISHES ── */
.finishes { background: var(--white); }
.finishes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.finish-card {
  padding: 36px 28px; background: var(--light);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: var(--tran); position: relative; overflow: hidden;
}
.finish-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--primary); transition: height 0.4s ease;
}
.finish-card:hover::before { height: 100%; }
.finish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.finish-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.finish-card h3 { font-weight: 700; margin-bottom: 10px; font-size: 1.05rem; }
.finish-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.finish-swatch { height: 8px; border-radius: 4px; margin-top: 16px; }
.finish-polish { background: linear-gradient(90deg, #82b4ac, #c2d8d5, #82b4ac); }
.finish-honed { background: linear-gradient(90deg, #6b9e96, #a8c8c4, #6b9e96); }
.finish-natural { background: linear-gradient(90deg, #5c7a75, #8aada8, #5c7a75); }
.finish-leather { background: linear-gradient(90deg, #7a6950, #b5a080, #7a6950); }
.finish-flamed { background: linear-gradient(90deg, #5c3c28, #a06040, #5c3c28); }
.finish-sand { background: linear-gradient(90deg, #8a7865, #c0aa90, #8a7865); }

/* ── APPLICATIONS ── */
.applications { background: var(--light); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.app-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer;
}
.app-card.large { grid-column: span 1; grid-row: span 2; }
.app-card img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; transition: transform 0.6s ease; }
.app-card.large img { min-height: 520px; }
.app-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.88) 40%, rgba(26,26,26,0.2) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: #fff;
}
.app-overlay i { font-size: 2rem; color: var(--accent); margin-bottom: 12px; }
.app-overlay h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.app-overlay p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 16px; line-height: 1.6; }
.btn-app {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; background: var(--accent);
  color: #fff; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; transition: var(--tran);
  width: fit-content; opacity: 0; transform: translateY(10px);
}
.app-card:hover .btn-app { opacity: 1; transform: translateY(0); }
.app-card:hover img { transform: scale(1.06); }

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery-filters {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 28px; border-radius: 100px;
  border: 2px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--tran); letter-spacing: 0.5px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
}
.g-item.tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(42,107,95,0.8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: var(--tran);
  gap: 10px;
}
.g-overlay i { font-size: 2rem; }
.g-overlay span { font-size: 0.9rem; font-weight: 600; text-align: center; padding: 0 16px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-item.hidden { display: none; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 9000;
  align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.lb-close {
  position: absolute; top: 24px; right: 32px;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 22px; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; transition: var(--tran);
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: var(--primary); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 18px; width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; transition: var(--tran);
  display: flex; align-items: center; justify-content: center;
}
.lb-arrow:hover { background: var(--primary); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ── WHY US ── */
.why-us { background: var(--primary-dark); padding: 100px 0; }
.why-head h2 { color: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.why-card {
  padding: 40px 28px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); transition: var(--tran); text-align: center;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); border-color: var(--accent); }
.why-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(200,169,110,0.2); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem; color: var(--accent);
  transition: var(--tran);
}
.why-card:hover .why-icon { background: var(--accent); color: #fff; }
.why-card h3 { color: #fff; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ── SPECIFICATIONS ── */
.specs { background: var(--light); }
.specs-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.spec-tab {
  padding: 12px 32px; border-radius: 100px;
  border: 2px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--tran);
}
.spec-tab.active, .spec-tab:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.spec-panel { display: none; }
.spec-panel.active { display: block; }
.spec-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.spec-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--tran);
}
.spec-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spec-card strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.spec-card span { font-size: 0.85rem; color: var(--text-muted); }
.spec-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.spec-table th, .spec-table td { padding: 18px 24px; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.95rem; }
.spec-table th { background: var(--primary); color: #fff; font-weight: 700; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(42,107,95,0.05); }

/* ── VISIT US / LOCATION ── */
.dealers { background: var(--white); }
.location-wrap { width: 100%; }
.location-map-box {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-map-box iframe {
  width: 100%; height: 100%; border: none; display: block;
  /* Prevent iframe from creating horizontal scroll on iOS */
  max-width: 100%;
}
/* Floating Info Card (desktop only) */
.location-info-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(42,107,95,0.18);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 320px;
  width: calc(100% - 56px); /* never bleed out of map */
  box-sizing: border-box;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 10;
}
[data-theme="dark"] .location-info-card {
  background: rgba(22,38,36,0.96);
  border-color: rgba(200,169,110,0.25);
}
.lic-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.lic-header i { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; }
.lic-header strong { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--dark); }
[data-theme="dark"] .lic-header strong { color: #fff; }
.location-info-card p {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 10px; line-height: 1.6;
  word-break: break-word; /* prevent long text from overflowing */
}
.location-info-card p i { color: var(--primary); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
/* Phone: allow wrap so two numbers don't overflow on narrow cards */
.lic-phone .lic-phones { display: flex; flex-direction: column; gap: 2px; }
.btn-directions {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  padding: 13px 24px;  /* min 44px tap target height */
  min-height: 48px;
  background: var(--primary);
  color: #fff; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700;
  transition: var(--tran); width: 100%; justify-content: center;
  letter-spacing: 0.4px;
  box-sizing: border-box;
}
.btn-directions:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,107,95,0.35); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--light); }
.testi-slider  { position: relative; overflow: hidden; border-radius: var(--radius); }
.testi-track   {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y;
}
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 visible, 2 gaps of 24px */
  padding: 36px 32px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); flex-shrink: 0;
  border: 1px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.testi-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.testi-card > p { font-size: 0.97rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.testi-author strong { display: block; font-weight: 700; }
.testi-author span { font-size: 0.83rem; color: var(--text-muted); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.testi-controls button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  color: var(--text); font-size: 15px; cursor: pointer; transition: var(--tran);
  display: flex; align-items: center; justify-content: center;
}
.testi-controls button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--tran); }
.testi-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc((100% - 24px) / 2); } /* 2 visible */
}
@media (max-width: 580px) {
  .testi-card { flex: 0 0 100%; } /* 1 visible */
}

/* ── SPEC TABLE: mobile scroll wrapper ── */
.spec-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

/* ── BLOG ── */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--light); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--tran);
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.blog-img { position: relative; height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px; background: var(--primary); color: #fff;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
}
.blog-body { padding: 24px; }
.blog-date { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.blog-body h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.blog-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--primary);
  border-bottom: 2px solid transparent; transition: var(--tran);
}
.blog-read:hover { border-color: var(--primary); }

/* ── CONTACT ── */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info h2 {
  font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 800;
  margin: 12px 0 16px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cd-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-item i { font-size: 1.2rem; color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.cd-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.cd-item span { font-size: 0.9rem; color: var(--text-muted); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--primary); transition: var(--tran);
}
.contact-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-4px); }
.contact-form-wrap {
  background: var(--white); padding: 48px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1px solid var(--border);
  background: var(--light); color: var(--text); font-size: 0.95rem;
  border-radius: var(--radius-sm); outline: none; font-family: inherit;
  transition: var(--tran);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(42,107,95,0.12); }
.form-group textarea { resize: vertical; min-height: 128px; }
.btn-submit {
  padding: 15px 36px; background: var(--primary);
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--tran);
  display: inline-flex; align-items: center; gap: 10px; font-family: inherit;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(42,107,95,0.35); }
.form-success { display: none; color: var(--primary); font-weight: 600; font-size: 0.95rem; text-align: center; margin-top: 8px; }
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer { background: #0f1f1c; color: rgba(255,255,255,0.75); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 48px; padding: 80px 24px 60px;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900;
  letter-spacing: 3px; color: #fff; margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: var(--tran);
}
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-col h4 {
  color: #fff; font-weight: 700; font-size: 1rem;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px; background: var(--accent); border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; transition: var(--tran); }
.footer-col ul a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }
.footer-newsletter h5 { color: #fff; margin: 20px 0 12px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; }
.newsletter-form { display: flex; border-radius: var(--radius-sm); overflow: hidden; }
.newsletter-form input {
  flex: 1; padding: 11px 14px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-right: none;
  color: #fff; font-size: 0.88rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 11px 16px; background: var(--accent); border: none;
  color: #fff; cursor: pointer; transition: var(--tran); font-size: 0.95rem;
}
.newsletter-form button:hover { background: var(--accent-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px; max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.83rem;
}
.footer-bottom a { color: var(--accent); transition: color 0.3s; }
.footer-bottom a:hover { color: #fff; }

/* ── AOS ANIMATIONS ── */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-in { opacity: 1; transform: none; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-height: 380px; }
  .about-img-wrap img { height: 380px; }
  .about-badge-card { right: 16px; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  /* Hide desktop nav, show hamburger */
  .nav-menu { display: none !important; }
  .hamburger { display: flex; }
  .btn-catalogue { display: none; }
  /* Tablet grid adjustments */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .variants-grid { grid-template-columns: 1fr 1fr; }
  .finishes-grid { grid-template-columns: 1fr 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .app-card.large { grid-column: span 2; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  /* ── VISIT US: tablet (769–900px) ── */
  .location-map-box { height: 440px; }
  .location-info-card { max-width: 300px; padding: 20px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── GALLERY FILTERS: allow horizontal scroll on mobile ── */
@media (max-width: 768px) {
  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    justify-content: flex-start;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; scroll-snap-align: start; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE REDESIGN — max-width: 768px
   Desktop styles are NOT touched above this breakpoint.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAVBAR ── */
  :root { --nav-h: 64px; }
  .nav-container { padding: 0 16px; }
  .nav-logo { font-size: 1.3rem; letter-spacing: 2px; }
  #theme-toggle { width: 36px; height: 36px; font-size: 13px; }
  .hamburger { display: flex; }
  .btn-catalogue { display: none !important; }

  /* ── HERO ── */
  .hero { height: 92vh; min-height: 520px; }
  .hero-content { padding: 0 16px; }
  .hero-badge { font-size: 0.72rem; letter-spacing: 1.5px; padding: 6px 14px; }
  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.15; margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 0.92rem; margin-bottom: 28px;
    max-width: 90%;
  }
  .hero-btns {
    flex-direction: column; align-items: center;
    gap: 12px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%; max-width: 280px;
    padding: 14px 24px; justify-content: center;
    font-size: 0.92rem;
  }
  .hero-prev, .hero-next { width: 44px; height: 44px; font-size: 14px; }
  .hero-nav { padding: 0 10px; }
  .hero-scroll-hint { display: none; }
  .hero-dots { bottom: 20px; right: 16px; gap: 6px; }
  .hero-dot { width: 6px; height: 6px; }
  .hero-dot.active { width: 20px; }

  /* ── SECTION SPACING & HEADS ── */
  section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-head p { font-size: 0.92rem; }
  .section-tag { font-size: 0.72rem; letter-spacing: 2px; }

  /* ── STATS STRIP ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 2.4rem; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 260px; }
  .about-img-wrap { overflow: visible; margin-bottom: 24px; }
  .about-badge-card { right: 8px; bottom: -18px; padding: 14px 16px; gap: 10px; max-width: calc(100% - 16px); }
  .about-badge-card i { font-size: 1.5rem; }
  .about-text { padding-left: 0; }
  .about-text h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .benefit-card { padding: 16px; }

  /* ── VARIANTS ── */
  .variants-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .variant-img { height: 200px; }
  /* Always show the view button on mobile (no hover available) */
  .variant-overlay { opacity: 1; background: linear-gradient(to top, rgba(42,107,95,0.88), transparent); }
  .btn-view { padding: 8px 16px; font-size: 0.82rem; }

  /* ── FINISHES ── */
  .finishes-grid { grid-template-columns: 1fr; gap: 16px; }
  .finish-card { padding: 24px 20px; }

  /* ── APPLICATIONS ── */
  .apps-grid { grid-template-columns: 1fr; gap: 16px; }
  .app-card.large { grid-column: span 1; }
  .app-card img { min-height: 200px; }
  .app-card.large img { min-height: 260px; }
  /* Always show overlay info on mobile (no hover) */
  .app-overlay { background: linear-gradient(to top, rgba(26,26,26,0.92) 50%, rgba(26,26,26,0.15) 100%); }
  .btn-app { opacity: 1; transform: translateY(0); }

  /* ── GALLERY ── */
  .gallery-filters { gap: 8px; margin-bottom: 28px; }
  .filter-btn { padding: 8px 18px; font-size: 0.8rem; }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px; gap: 8px;
  }
  /* Reset tall items so they don't create uneven rows on mobile 2-col */
  .g-item.tall { grid-row: span 1; }
  .g-item { border-radius: 8px; }
  /* Always show gallery overlay on mobile */
  .g-overlay { opacity: 1; background: rgba(42,107,95,0.55); }
  .g-overlay i { font-size: 1.4rem; }
  .g-overlay span { font-size: 0.78rem; }

  /* ── LIGHTBOX ── */
  .lightbox img { max-width: 95vw; max-height: 70vh; }
  .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 18px; }
  .lb-arrow { width: 42px; height: 42px; font-size: 15px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }

  /* ── WHY US ── */
  .why-us { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 20px; }
  .why-icon { width: 60px; height: 60px; font-size: 1.6rem; }

  /* ── SPECS ── */
  .specs-tabs {
    gap: 6px; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 4px; justify-content: flex-start;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .specs-tabs::-webkit-scrollbar { display: none; }
  .spec-tab { padding: 10px 20px; font-size: 0.82rem; flex-shrink: 0; }
  .spec-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spec-card { padding: 20px 16px; }
  /* Wrap spec table in scrollable container via CSS */
  .spec-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .spec-table thead, .spec-table tbody, .spec-table tr { display: table; width: 100%; table-layout: fixed; }
  .spec-table th, .spec-table td { padding: 12px 14px; font-size: 0.88rem; }

  /* ── VISIT US: mobile ── */
  .dealers { padding-bottom: 0; } /* section padding handled by section rule */
  .location-map-box {
    height: 320px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0; /* flat bottom, card connects flush */
    box-shadow: none; /* shadow on the wrapper instead */
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.14));
  }
  .location-info-card {
    /* Pull out of absolute flow — stack below map */
    position: static;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border-top: 3px solid var(--primary);
    margin-top: 0;
    padding: 20px 16px 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }
  [data-theme="dark"] .location-info-card { background: var(--white); } /* uses --white from dark tokens */
  .location-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .lic-header strong { font-size: 1rem; }
  .lic-header i { font-size: 1.2rem; }
  .location-info-card p { font-size: 0.85rem; gap: 8px; margin-bottom: 8px; }
  .btn-directions { font-size: 0.9rem; padding: 14px 20px; margin-top: 10px; }

  /* ── TESTIMONIALS ── */
  .testi-card { flex: 0 0 100%; padding: 24px 20px; }
  .testi-card > p { font-size: 0.9rem; }
  .testi-slider { touch-action: pan-y; }
  .testi-controls button { width: 40px; height: 40px; font-size: 13px; }

  /* ── BLOG ── */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-img { height: 200px; }
  .blog-body { padding: 18px; }
  .blog-body h3 { font-size: 0.97rem; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px 16px; border-radius: var(--radius-sm); }
  .contact-info h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px; font-size: 1rem;
    /* Prevent iOS auto-zoom on focus (font-size must be >= 16px) */
    -webkit-text-size-adjust: 100%;
  }
  .form-group textarea { min-height: 110px; }
  .btn-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; min-height: 52px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 16px 40px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 20px 16px; }
  .footer-logo { font-size: 1.5rem; }

  /* ── BACK TO TOP — repositioned above sticky CTA ── */
  #back-to-top { bottom: 84px; right: 16px; width: 44px; height: 44px; font-size: 14px; }

  /* ── BUTTONS ── */
  .btn-primary, .btn-outline {
    padding: 13px 24px; font-size: 0.9rem;
  }
}

/* ─────────────────────────────────────────────────────────
   SMALL MOBILE — max-width: 480px
   ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { height: 100svh; }
  .hero-title { font-size: clamp(1.65rem, 7.5vw, 2rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .spec-cards { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 220px; }
  .about-badge-card { display: none; }
  /* 2-col variants still works at 480px, switch to 1-col at very small */
  .variants-grid { grid-template-columns: 1fr; }
  /* Newsletter form: prevent squishing */
  .newsletter-form { flex-direction: row; }
  .newsletter-form input { min-width: 0; font-size: 0.85rem; }
  /* Contact form padding */
  .contact-form-wrap { padding: 20px 14px; }
}

/* ─────────────────────────────────────────────────────────
   LOCATION SECTION — granular mobile sub-breakpoints
   Ensures map + info card feel premium at every phone size.
   ───────────────────────────────────────────────────────── */

/* 375px: iPhone SE (2020), iPhone 12 mini, Galaxy A series */
@media (max-width: 375px) {
  .location-map-box { height: 280px; }
  .location-info-card { padding: 16px 14px 20px; }
  .lic-header strong { font-size: 0.95rem; }
  .location-info-card p { font-size: 0.82rem; }
  .btn-directions { font-size: 0.85rem; padding: 13px 16px; }
}

/* 320px: iPhone SE (1st gen), smallest Android budget phones */
@media (max-width: 320px) {
  .location-map-box { height: 240px; }
  .location-info-card { padding: 14px 12px 18px; }
  .lic-header { gap: 8px; margin-bottom: 10px; }
  .lic-header strong { font-size: 0.9rem; }
  .lic-header i { font-size: 1.1rem; }
  .location-info-card p { font-size: 0.8rem; gap: 6px; margin-bottom: 7px; }
  .btn-directions { font-size: 0.82rem; padding: 12px 14px; min-height: 44px; }
}

/* ─────────────────────────────────────────────────────────
   STICKY BOTTOM MOBILE CTA
   ───────────────────────────────────────────────────────── */
#mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  #mobile-sticky-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
    background: var(--white); border-top: 1px solid var(--border);
    padding: 10px 16px; gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  }
  #mobile-sticky-cta a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 8px; border-radius: var(--radius-sm);
    font-size: 0.88rem; font-weight: 700; transition: var(--tran);
  }
  #mobile-sticky-cta .mcta-call {
    background: var(--primary); color: #fff;
  }
  #mobile-sticky-cta .mcta-call:hover { background: var(--primary-dark); }
  #mobile-sticky-cta .mcta-catalogue {
    background: var(--accent); color: #fff;
  }
  #mobile-sticky-cta .mcta-catalogue:hover { background: var(--accent-dark); }
  /* Extra bottom padding so page content doesn't get hidden behind sticky bar */
  body { padding-bottom: 64px; }
}

/* ── NEWSLETTER TOAST NOTIFICATIONS ── */
.nl-toast {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.nl-toast--visible { opacity: 1; transform: translateY(0); }
.nl-toast--success { background: rgba(39,174,96,0.18); color: #27ae60; border: 1px solid rgba(39,174,96,0.4); }
.nl-toast--error   { background: rgba(231,76,60,0.15);  color: #e74c3c; border: 1px solid rgba(231,76,60,0.35); }

/* ── NEWSLETTER INPUT FOCUS ── */
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button { transition: background 0.4s ease, transform 0.2s ease; }
.newsletter-form button:disabled { opacity: 0.7; cursor: not-allowed; }

/* ── CONTACT FORM FIELD VALIDATION ── */
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,107,95,0.12);
}
.contact-form-wrap input[style*="e74c3c"],
.contact-form-wrap textarea[style*="e74c3c"] {
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}

/* ── FORM SUCCESS MESSAGE ── */
#formSuccess {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.4);
  border-radius: 10px;
  color: #27ae60;
  font-weight: 600;
  font-size: 0.93rem;
  text-align: center;
}
#formSuccess.show { display: block; animation: fadeInUp 0.4s ease; }

/* ── FLOATING WHATSAPP WIDGET ── */
.whatsapp-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 998;
  display: flex; align-items: center; flex-direction: row-reverse;
}
.whatsapp-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.75rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease; flex-shrink: 0;
  position: relative;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  80% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.whatsapp-tooltip {
  background: #fff; color: #1a1a1a; font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  white-space: nowrap; margin-right: 12px;
  opacity: 0; transform: translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 768px) {
  /* Raised slightly so it never overlaps the back-to-top button */
  .whatsapp-float { bottom: 132px; right: 16px; }
  .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; }
  /* Hide tooltip on mobile — not needed on touch devices */
  .whatsapp-tooltip { display: none; }
}

/* ── CATALOGUE BAND ── */
.catalogue-band {
  background: linear-gradient(135deg, #0f1f1c 0%, #1d4d44 60%, #0f1f1c 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.catalogue-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.catalogue-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,169,110,0.15); border: 2px solid rgba(200,169,110,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2.2rem; color: var(--accent);
}
.catalogue-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
  color: #fff; margin-bottom: 16px;
}
.catalogue-band p { color: rgba(255,255,255,0.78); font-size: 1.02rem; margin-bottom: 36px; line-height: 1.8; }
.catalogue-features {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
}
.catalogue-feat {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
}
.catalogue-feat i { color: var(--accent); font-size: 0.9rem; }
.btn-catalogue-dl {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: var(--accent);
  color: #fff; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem; transition: var(--tran);
  box-shadow: 0 8px 28px rgba(200,169,110,0.4);
}
.btn-catalogue-dl:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(200,169,110,0.5); }
@media (max-width: 768px) {
  .catalogue-band { padding: 56px 0; }
  .catalogue-features { gap: 14px; }
  .btn-catalogue-dl { padding: 14px 32px; font-size: 0.95rem; }
}

/* ── SKU PRODUCT CODES GRID (kota-blue.html) ── */
.sku-section { background: var(--light); }
.sku-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sku-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  transition: var(--tran); position: relative; overflow: hidden;
}
.sku-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sku-code {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  color: var(--accent); background: rgba(200,169,110,0.12);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.sku-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.sku-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.sku-finish-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--primary);
  background: rgba(42,107,95,0.1); padding: 4px 12px; border-radius: 100px;
}
@media (max-width: 900px) { .sku-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .sku-grid { grid-template-columns: 1fr; } }
