/* ===================================================
   SMARTMOD — Premium Modular Kitchens & Wardrobes
   style.css — Main Stylesheet
=================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand */
  --gold:        #509368;
  --gold-light:  #7ab894;
  --gold-dark:   #3a6e4e;
  --gold-glow:   rgba(80,147,104,0.12);
  --gold-border: rgba(60,61,61,0.25);

  /* Light Theme (default) */
  --bg:          #F7F4F0;
  --bg-2:        #EDEAE5;
  --bg-3:        #E4E0D8;
  --bg-4:        #D8D3CA;
  --text:        #000000;
  --text-sub:    rgba(26,26,26,0.72);
  --text-muted:  #666666;
  --border:      rgba(60,61,61,0.2);
  --glass:       rgba(0,0,0,0.035);
  --card-bg:     #EDEAE5;
  --nav-bg:      rgba(247,244,240,0.94);
  --overlay:     rgba(247,244,240,0.75);
  --form-bg:     rgba(0,0,0,0.04);
  --form-border: rgba(0,0,0,0.12);
  --input-placeholder: rgba(0,0,0,0.3);
  --shadow:      0 24px 60px rgba(0,0,0,0.12);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --dur:  0.4s;
}

/* ── Dark Theme ── */
[data-theme="dark"] {
  --bg:          #0D0D0D;
  --bg-2:        #161616;
  --bg-3:        #1E1E1E;
  --bg-4:        #2A2A2A;
  --text:        #F5F2EE;
  --text-sub:    rgba(245,242,238,0.72);
  --text-muted:  #888888;
  --border:      rgba(80,147,104,0.14);
  --glass:       rgba(255,255,255,0.035);
  --card-bg:     #161616;
  --nav-bg:      rgba(13,13,13,0.92);
  --overlay:     rgba(13,13,13,0.7);
  --form-bg:     rgba(255,255,255,0.04);
  --form-border: rgba(255,255,255,0.10);
  --input-placeholder: rgba(255,255,255,0.25);
  --shadow:      0 24px 60px rgba(0,0,0,0.5);
  --gold-border: rgba(80,147,104,0.18);
  --gold-glow:   rgba(80,147,104,0.18);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
/* ── CSS Variables ── */

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.3s, height 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.2s var(--ease);
  opacity: 0.55;
}
.cursor-grow { transform: translate(-50%, -50%) scale(1.9); opacity: 0.3; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--dur) var(--ease);
}

nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 60px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  cursor: none;
  user-select: none;
}

.nav-logo img{
  width: clamp(150px, 20vw, 180px);
  height: auto;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  font-size: 0.80rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  cursor: none;
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* @media (max-width: 768px){
  .nav-right{
    display: none;
  }
} */

/* ── Theme Toggle ── */
.theme-toggle {
  width: 44px; height: 24px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: none;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.theme-toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
[data-theme="light"] .theme-toggle-thumb { transform: translateX(20px); }
.theme-toggle-icons {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  pointer-events: none;
}
.theme-toggle-icons svg { width: 9px; height: 9px; }

.btn-nav {
  background: var(--gold);
  color: #ffffff;
  border: none;
  padding: 10px 26px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Mobile Nav ── */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;

  background: var(--nav-bg);
  backdrop-filter: blur(20px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 34px;

  transform: translateX(100%);
  transition: transform 0.45s var(--ease), opacity .3s;

  opacity: 0;
}

/* Open state */
.mobile-nav.open {
  transform: translateX(0);
  opacity: 1;
}

/* ── Nav Links ── */
.mobile-nav a {
  position: relative;

  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;

  color: var(--text);

  transition: color .25s ease, transform .25s ease;

  opacity: 0;
  transform: translateY(20px);
}

/* Animate links when menu opens */
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: .1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: .18s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .26s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .34s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .42s; }

/* Hover underline animation */
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--gold);
  transition: width .3s ease;
}

.mobile-nav a:hover::after {
  width: 100%;
}

.mobile-nav a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Close Button ── */
.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: var(--bg-3);
  border: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.1rem;
  color: var(--text);

  cursor: none;
  transition: all .3s ease;
}

.mobile-nav-close:hover {
  background: var(--gold);
  color: #0D0D0D;
  transform: rotate(90deg);
}

/* ── Theme Toggle Row ── */
.mobile-theme-row {
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 14px;

  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: var(--text-muted);
}

/* subtle divider above theme switch */
.mobile-theme-row::before {
  content: "";
  position: absolute;

  width: 120px;
  height: 1px;

  background: var(--border);

  transform: translateY(-30px);
}

/* ── Buttons ── */
.btn-primary {
  background: var(--gold);
  color: #ffffff;
  border: none;
  padding: 16px 38px;
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--gold-glow); }
.btn-primary:hover::after { opacity: 0.1; }

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 16px 38px;
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; color: white; transform: translateY(-2px); }

[data-theme="light"] .btn-outline { border-color: white; }

/* ── Section Basics ── */
section { padding: 120px 60px; }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.section-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.82;
  max-width: 540px;
}

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 70px 10px;
  border-radius: 30px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 9s ease;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(60,61,61,0.88) 0%,
    rgba(60,61,61,0.55) 55%,
    rgba(80,147,104,0.08) 100%
  );
}
[data-theme="light"] .hero-bg::after {
  background: linear-gradient(
    135deg,
    rgba(40,41,41,0.82) 0%,
    rgba(40,41,41,0.5) 60%,
    transparent 100%
  );
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(80,147,104,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,147,104,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.70rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  border: 1px solid var(--gold-border);
  padding: 9px 22px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.42s forwards;
}
.hero-h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(245,242,238,0.68);
  max-width: 500px;
  margin: 0 auto 52px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.62s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.82s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STATS ── */
#stats {
  padding: 64px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 8px;
}

/* ── 3D TOUR ── */
#tour { background: var(--bg-2); }
.tour-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tour-visual {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  cursor: none;
}
.tour-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease;
  transform-origin: center center;
  will-change: transform;
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60,61,61,0.25), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: black;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 60px rgba(80,147,104,0.4);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 80px rgba(80,147,104,0.6); }
.play-btn svg { width: 28px; height: 28px; fill: #ffffff; margin-left: 4px; }
.tour-hint {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── SPECIALIZATIONS ── */
#specializations { background: var(--bg); }
.spec-header { text-align: center; max-width: 600px; margin: 0 auto; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.spec-card {
  background: var(--card-bg);
  padding: 52px 40px;
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}
.spec-card:hover { border-color: rgba(80,147,104,0.45); transform: translateY(-5px); box-shadow: var(--shadow); }
.spec-card:hover::before { opacity: 1; }
.spec-icon { width: 48px; height: 48px; margin-bottom: 26px; color: var(--gold); }
.spec-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
}
.spec-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}
.spec-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }
 
/* ── GALLERY ── */

.container{
max-width:1200px;
margin:auto;
padding:70px 20px;
}

.title{
text-align:center;
letter-spacing:3px;
margin-bottom:20px;
}

.desc{
text-align:center;
color:#666;
margin-bottom:40px;
}

.filters{
display:flex;
justify-content:center;
gap:25px;
margin-bottom:40px;
font-size:13px;
}

.filters span{
cursor:pointer;
color:#777;
}

.filters span.active{
color:#3C3D3D;
font-weight:600;
border-bottom:2px solid #3C3D3D;
}

/* MASONRY GRID */

.gallery{

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

}

.card{

overflow:hidden;
border-radius:6px;

}

.card img{

width:100%;
height:100%;
object-fit:cover;
transition:.4s;

}

.card:hover img{
transform:scale(1.05);
}

/* RANDOM SIZE CLASSES */

.large{
grid-column:span 2;
grid-row:span 2;
}

.wide{
grid-column:span 2;
}

.tall{
grid-row:span 2;
}

.hide{
display:none;
}

/* MOBILE */

@media(max-width:768px){

.large,
.wide,
.tall{
grid-column:span 1;
grid-row:span 1;
}

}


#gallery { background: var(--bg-3); }
.gallery-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.gallery-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.gallery-tab {
  padding: 9px 22px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: none;
  transition: all 0.3s;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: none;
  background: var(--bg-4);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60,61,61,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #F5F2EE;
  letter-spacing: 0.04em;
}

/* TOP ROW */
.gi-1 {
  grid-column: span 8;
  height: 430px;
}

.gi-2 {
  grid-column: span 4;
  height: 430px;
}

/* SECOND ROW */
.gi-3 {
  grid-column: span 4;
  height: 300px;
}

.gi-4 {
  grid-column: span 4;
  height: 300px;
}

.gi-5 {
  grid-column: span 4;
  height: 300px;
}

/* THIRD ROW */
.gi-6 {
  grid-column: span 6;
  height: 280px;
}

.gi-7 {
  grid-column: span 3;
  height: 280px;
}

.gi-8 {
  grid-column: span 3;
  height: 280px;
}

/* FOURTH ROW */
.gi-9 {
  grid-column: span 4;
  height: 260px;
}

.gi-10 {
  grid-column: span 4;
  height: 260px;
}

.gi-11 {
  grid-column: span 4;
  height: 260px;
}

/* FIFTH ROW */
.gi-12 {
  grid-column: span 6;
  height: 300px;
}

.gi-13 {
  grid-column: span 3;
  height: 300px;
}

.gi-14 {
  grid-column: span 3;
  height: 300px;
}

/* LAST ROW */
.gi-15 {
  grid-column: span 12;
  height: 340px;
}

@media (max-width: 600px) {

  .grid-container {
    grid-template-columns: 1fr;
  }

  .gi-1,
  .gi-2,
  .gi-3,
  .gi-4,
  .gi-5,
  .gi-6,
  .gi-7,
  .gi-8,
  .gi-9,
  .gi-10,
  .gi-11,
  .gi-12,
  .gi-13,
  .gi-14,
  .gi-15 {
    grid-column: span 1;
    height: auto;
  }
}

/* ── WHY SMARTMOD ── */
#why { background: var(--bg); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.why-visual-wrap { position: relative; }
.why-img-main { width: 100%; height: 580px; object-fit: cover; display: block; }
.why-badge {
  position: absolute;
  bottom: 30px;
  right: -24px;
  background: var(--gold);
  padding: 22px 28px;
  color: #ffffff;
}
.why-badge-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}
.why-badge-text {
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.why-feat { display: flex; gap: 14px; align-items: flex-start; }
.why-feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.why-feat-icon svg { width: 18px; height: 18px; }
.why-feat-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.why-feat-desc { font-size: 0.80rem; color: var(--text-muted); line-height: 1.65; }

/* ── PROCESS ── */
#process { background: var(--bg-2); overflow: hidden; }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
.process-step:hover .process-step-num { background: var(--gold); color: #ffffff; }
.process-step-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}
.process-step-desc { font-size: 0.80rem; color: var(--text-muted); line-height: 1.65; }

/* ── STORAGE IDEAS ── */
#storage { background: var(--bg); }
.storage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.storage-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: none;
  transition: all var(--dur) var(--ease);
}
.storage-card:hover { border-color: rgba(80,147,104,0.4); transform: translateY(-6px); box-shadow: var(--shadow); }
.storage-card-img { height: 220px; overflow: hidden; }
.storage-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.storage-card:hover .storage-card-img img { transform: scale(1.08); }
.storage-card-body { padding: 28px; }
.storage-tag {
  display: inline-block;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 12px;
  margin-bottom: 14px;
  font-weight: 500;
}
.storage-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; color: var(--text); }
.storage-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.68; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg-3); }
.testi-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.testi-slide { min-width: 100%; padding: 0 60px; }
.testi-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  position: relative;
}
.testi-quote {
  position: absolute;
  top: -24px; left: 52px;
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.28;
}
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 36px;
  font-style: italic;
}
.testi-meta { display: flex; align-items: center; gap: 18px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; color: var(--text); }
.testi-loc { font-size: 0.78rem; color: var(--text-muted); }
.testi-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; margin-top: 4px; }
.testi-controls { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.testi-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s;
}
.testi-btn:hover { background: var(--gold); border-color: var(--gold); color: #ffffff; }
.testi-dots { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 20px; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bg-4); transition: all 0.3s; cursor: none; }
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

/* ── CONSULTATION ── */
#consult{
  position: relative;
  background: linear-gradient(140deg,#0f1f1a,#142c25);
  padding:120px 20px;
  overflow:hidden;
}

#consult::before{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 20%,rgba(80,147,104,0.08),transparent 50%),
              radial-gradient(circle at 80% 70%,rgba(80,147,104,0.06),transparent 50%);
  pointer-events:none;
}

.consult-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:1;
}

/* FORM CARD */

.consult-form{
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
  padding:56px;
  border-radius:14px;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition:all .35s ease;
}

.consult-form:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.45),
    0 0 20px rgba(80,147,104,0.08);
}

/* GRID ROW */

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  margin-bottom:20px;
}

/* LABEL */

.form-label{
  display:block;
  font-size:0.70rem;
  letter-spacing:0.20em;
  text-transform:uppercase;
  color:#509368;
  margin-bottom:8px;
  font-weight:600;
}

/* INPUTS */

.form-input,
.form-select,
.form-textarea{

  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  color:#f5f2ee;

  padding:14px 16px;

  font-size:0.9rem;

  border-radius:6px;

  outline:none;

  transition:all .3s ease;
}

/* INPUT FOCUS */

.form-input:focus,
.form-select:focus,
.form-textarea:focus{

  border-color:#509368;

  background:rgba(255,255,255,0.07);

  box-shadow:0 0 0 1px rgba(80,147,104,0.25);

}

/* PLACEHOLDER */

.form-input::placeholder,
.form-textarea::placeholder{
  color:rgba(255,255,255,0.45);
  font-size:0.85rem;
}

/* TEXTAREA */

.form-textarea{
  resize:none;
  height:110px;
}

/* SELECT */

.form-select option{
  background:#3C3D3D;
  color:#fff;
}

/* SUBMIT BUTTON */

.form-submit{

  width:100%;

  margin-top:14px;

  padding:18px;

  border:none;

  background:linear-gradient(135deg,#509368,#7ab894);

  color:#ffffff;

  font-weight:700;

  letter-spacing:0.14em;

  text-transform:uppercase;

  font-size:0.82rem;

  border-radius:6px;

  cursor:pointer;

  transition:all .35s ease;
}

.form-submit:hover{

  transform:translateY(-2px);

  box-shadow:0 10px 30px rgba(80,147,104,0.35);

}

.form-submit.success{

  background:#27ae60;

  color:#fff;

}

/* PROMISE LIST */

.consult-promise{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:44px;
}

.promise-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

/* CHECK ICON */

.promise-check{

  width:30px;
  height:30px;

  flex-shrink:0;

  background:rgba(80,147,104,0.08);

  border:1px solid rgba(80,147,104,0.35);

  border-radius:6px;

  display:flex;

  align-items:center;

  justify-content:center;

  color:#509368;

  font-size:0.9rem;

}

/* TEXT */

.promise-text{

  font-size:0.9rem;

  color:white;

  line-height:1.65;

}

/* ── LOCATION ── */
#location { padding: 0; margin-top: 30px; }
.location-inner { display: grid; grid-template-columns: 1fr 2fr; }
.location-info {
  padding: 80px 56px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.location-map { height: 620px; position: relative; overflow: hidden; }
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.25) contrast(1.15) brightness(0.65);
}
[data-theme="light"] .location-map iframe {
  filter: saturate(0.6) contrast(1.1) brightness(0.85);
}
.location-detail { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; }
.location-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.location-detail-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  cursor: none;
}
.directions-btn:hover { background: var(--gold); color: #ffffff; }

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual-wrap { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 220px; height: 280px;
  object-fit: cover;
  display: block;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow);
}
.about-tagline {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin: 22px 0;
  line-height: 1.3;
}
.about-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 88px 60px 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { font-size: 2rem; margin-bottom: 16px; display: block; cursor: default; }
.footer-tagline { font-size: 0.84rem; color: var(--text-muted); font-style: italic; margin-bottom: 28px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  cursor: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.84rem; transition: color 0.3s; cursor: none; }
.footer-links a:hover { color: var(--text); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.76rem; color: rgba(136,136,136,0.55); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.76rem; color: rgba(136,136,136,0.55); transition: color 0.3s; cursor: none; }
.footer-legal a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: all 0.3s;
  cursor: none;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 14px 44px rgba(37,211,102,0.5); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--bg-3);
  color: var(--text);
  padding: 8px 16px;
  font-size: 0.76rem;
  font-family: var(--font-sans);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--border);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ── TOUR MODAL ── */
.tour-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
.tour-modal.open { display: flex; }
.tour-modal-inner {
  max-width: 920px;
  width: 95%;
  position: relative;
}
.tour-modal-close {
  position: absolute;
  top: -50px; right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
}
.tour-modal-body {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 52px;
  text-align: center;
}
.tour-modal-canvas {
  height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 28px;
  background: var(--bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-modal-canvas img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.tour-modal-canvas-content { position: relative; z-index: 1; text-align: center; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { height: 52px; opacity: 1; }
  50%      { height: 28px; opacity: 0.3; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  section { padding: 100px 40px; }
  nav, nav.scrolled { padding-left: 40px; padding-right: 40px; }
  footer { padding: 72px 40px 40px; }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  section { padding: 80px 24px; }
  footer { padding: 64px 24px 36px; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .tour-inner, .why-inner, .consult-inner, .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { height: 340px; }
  .why-badge { right: 0; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(6,1fr); }
  .gi-1, .gi-2 { grid-column: span 6; height: 260px; }
  .gi-3, .gi-4, .gi-5 { grid-column: span 3; height: 200px; }
  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-steps::before { display: none; }
  .process-step { width: calc(33% - 20px); padding-bottom: 32px; }
  .storage-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .testi-slide { padding: 0 24px; }
  .why-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .spec-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5 { grid-column: span 1; height: 220px; }
  .storage-grid { grid-template-columns: 1fr; }
  .process-step { width: 100%; }
  .testi-card { padding: 32px 24px; }
  .consult-form { padding: 32px 20px; }
  .location-info { padding: 48px 24px; }
}

#consult {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1600&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
 
#consult::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(20, 14, 10, 0.97) 36%,
    rgba(20, 14, 10, 0.84) 58%,
    rgba(20, 14, 10, 0.55) 100%
  );
}
 
/* ──────────────────────────────────────────────────────
   LAYOUT
────────────────────────────────────────────────────── */
.consult-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 3rem;
  width: 100%;
  align-items: start;
}
 
/* ──────────────────────────────────────────────────────
   LEFT COLUMN – COPY
────────────────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
 
.section-title-c {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 500;
  color: white;
  line-height: 1.04;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
 
.section-title-c em {
  color: var(--gold);
  font-style: italic;
}
 
.section-sub {
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2.6rem;
}
 
/* Promise list */
.consult-promise {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
 
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
 
.promise-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(80, 147, 104, 0.12);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--gold);
  margin-top: 1px;
  font-weight: 500;
}
 
.promise-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.58;
}
 
/* ──────────────────────────────────────────────────────
   RIGHT COLUMN – FORM CARD
────────────────────────────────────────────────────── */
.consult-form {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 2.6rem;
}
 
/* ──────────────────────────────────────────────────────
   FORM ELEMENTS
────────────────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
 
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1rem;
}
 
.form-label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3C3D3D;
  font-weight: 500;
}
 
.form-input,
.form-select,
.form-textarea {
  background: #faf9f7;
  border: 1px solid #e4ddd6;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #3C3D3D;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
}
 
.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb0a4;
}
 
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
 
/* Select arrow */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23509368' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
 
.form-select option,
.form-select optgroup {
  background: #fff;
  color: #3C3D3D;
}
 
/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.65;
}
 
/* Submit button */
.form-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.4rem;
  transition: background var(--transition), transform 0.1s;
}
 
.form-submit:hover:not(:disabled) {
  background: var(--gold-light);
}
 
.form-submit:active:not(:disabled) {
  transform: scale(0.99);
}
 
.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
 
/* ──────────────────────────────────────────────────────
   TOAST NOTIFICATION
────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #fff;
  color: #3C3D3D;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
 
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
 
.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 600;
}
 
.toast.success .toast-icon {
  background: #d4edda;
  color: #1a6b35;
}
 
.toast.error .toast-icon {
  background: #f8d7da;
  color: #721c24;
}
 
/* ──────────────────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────────────────── */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
.reveal-left  { animation: fadeInLeft  0.72s ease both; }
.reveal-right { animation: fadeInRight 0.72s 0.14s ease both; }
 
/* ──────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .consult-inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    padding: 3.5rem 2rem;
  }
 
  .section-sub { max-width: 100%; }
}
 
@media (max-width: 560px) {
  .consult-inner { padding: 3rem 1.25rem; }
  .form-row      { grid-template-columns: 1fr; }
  .consult-form  { padding: 1.75rem 1.25rem; }
 
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1.25rem;
    max-width: 100%;
  }
}


/* ===================================================
   SPEC CARD POPUP MODAL
=================================================== */
 
/* ── Clickable card cursor ── */
.spec-card { cursor: none; }
 
/* ── Modal Backdrop ── */
.spec-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(60,61,61,0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.4,0,0.2,1);
}
.spec-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
 
/* ── Modal Box ── */
.spec-modal {
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(40px) scale(0.97);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(80,147,104,0.08);
}
.spec-modal-backdrop.open .spec-modal {
  transform: translateY(0) scale(1);
}
 
/* ── Close Button ── */
.spec-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(60,61,61,0.75);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: 0.25s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.spec-modal-close:hover {
  background: var(--gold);
  color: #ffffff;
  transform: rotate(90deg);
}
.spec-modal-close svg { width: 16px; height: 16px; }
 
/* ── Carousel Wrapper ── */
.spec-modal-carousel {
  position: relative;
  width: 100%;
  height: 360px;
  flex-shrink: 0;
  background: var(--bg-4);
  overflow: hidden;
}
 
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
 
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 24px;
  background: linear-gradient(to top, rgba(60,61,61,0.88) 0%, transparent 100%);
  font-size: 0.78rem;
  color: rgba(245,242,238,0.75);
  letter-spacing: 0.06em;
}
 
/* Prev / Next arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  background: rgba(60,61,61,0.6);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: 0.25s;
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover { background: var(--gold); color: #ffffff; }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-arrow svg { width: 18px; height: 18px; }
 
/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: none;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}
 
/* Counter badge */
.carousel-counter {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(60,61,61,0.65);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
}
 
/* ── Modal Body ── */
.spec-modal-body {
  padding: 32px 36px 36px;
  overflow-y: auto;
  flex: 1;
}
.spec-modal-body::-webkit-scrollbar { width: 3px; }
.spec-modal-body::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
 
/* Header row */
.spec-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.spec-modal-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  margin-bottom: 8px;
  font-weight: 600;
}
.spec-modal-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}
 
/* Price block */
.spec-modal-price-block {
  text-align: right;
  flex-shrink: 0;
}
.spec-modal-price-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.spec-modal-price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.spec-modal-price-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-style: italic;
}
 
/* Divider */
.spec-modal-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
 
/* Description */
.spec-modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 24px;
}
 
/* Features grid */
.spec-modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.spec-modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.5;
}
.spec-modal-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
 
/* Packages row */
.spec-modal-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.spec-pkg {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 16px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: none;
}
.spec-pkg:hover, .spec-pkg.selected {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.spec-pkg.selected { background: rgba(80,147,104,0.07); }
.spec-pkg-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.spec-pkg-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.spec-pkg-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
 
/* CTA row */
.spec-modal-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.spec-modal-cta .btn-primary { flex: 1; text-align: center; padding: 14px 20px; }
.spec-modal-cta .btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
  text-decoration: none;
}
.spec-modal-cta .btn-wa:hover { background: #1ebe5d; }
.spec-modal-cta .btn-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
 
/* ── Touch swipe support ── */
.carousel-track { touch-action: pan-y; }
 
/* ── Responsive modal ── */
@media (max-width: 680px) {
  .spec-modal-carousel { height: 240px; }
  .spec-modal-body { padding: 24px 20px 28px; }
  .spec-modal-header { flex-direction: column; gap: 14px; }
  .spec-modal-price-block { text-align: left; }
  .spec-modal-features { grid-template-columns: 1fr; }
  .spec-modal-packages { grid-template-columns: 1fr; }
  .spec-modal-title { font-size: 1.5rem; }
}


.lightbox-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(13,13,13,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox-backdrop.open { display: flex; }

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-track-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
    position: relative; /* add this */
}

.lightbox-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  touch-action: pan-y;
}

.lightbox-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-slide img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.lightbox-caption {
  margin-top: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.6);
  text-align: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.lightbox-arrow:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-arrow.prev { left: 0; }
.lightbox-arrow.next { right: 0; }
.lightbox-arrow svg { width: 20px; height: 20px; }

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 4001;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-close svg { width: 14px; height: 14px; }

.lightbox-counter {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 4001;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
}

.lightbox-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 5;
  
}

.lightbox-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.lightbox-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

.gallery-item { cursor: pointer; }

@media (max-width: 768px) {
  .lightbox-backdrop {
    align-items: flex-start;
  }

  .lightbox-inner {
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
  }

  .lightbox-track-wrap {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
  }

  .lightbox-track {
    height: 100%;
  }

  .lightbox-slide {
    height: 100dvh;
    justify-content: center;
  }

  .lightbox-slide img {
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    object-fit: cover;
    border-radius: 0;
  }

  .lightbox-caption {
    position: fixed;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    z-index: 4002;
  }

  .lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4002;
    width: 40px;
    height: 40px;
  }

  .lightbox-arrow.prev { left: 12px; }
  .lightbox-arrow.next { right: 12px; }

  .lightbox-dots {
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 4002;
  }
}