/* ═══════════════════════════════════════════════════
   INTERIOR NEAR ME — PREMIUM CSS
   Color Palette:
     Teal:       #189BA6
     Dark Teal:  #117880
     Red/Maroon: #981F1F
     Dark:       #222222
     Mid Gray:   #555555
     Light Gray: #F4F4F4
     White:      #FFFFFF
   Font: Lato, Playfair Display
═══════════════════════════════════════════════════ */

/* ─── CSS RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: #222; background: #fff; line-height: 1.7; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── UTILITIES ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 72px 0; }
.bg-white { background: #fff; }
.bg-light { background: #F4F4F4; }
.bg-teal  { background: #189BA6; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #222; margin-bottom: 12px; }
.section-title--white { color: #fff; }
.section-subtext { color: #555; font-size: 1rem; margin-bottom: 40px; max-width: 800px; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary { display: inline-block; background: var(--lakshi-btn-bg); color: var(--lakshi-btn-text); padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; transition: background 0.3s, color 0.3s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s; white-space: nowrap; box-shadow: 0 4px 15px rgba(24,155,166,0.2); position: relative; overflow: hidden; z-index: 1; }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); z-index: -1; animation: shimmer 3s infinite; }
.btn-primary:hover { background: var(--lakshi-btn-hover); color: var(--lakshi-btn-text); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(24,155,166,0.35); }
.btn-link { color: var(--lakshi-teal); font-weight: 700; font-size: 0.95rem; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.btn-link:hover { border-color: var(--lakshi-teal); }

/* ─── ANNOUNCEMENT BAR ─────────────────────────── */
#announcement-bar { background: var(--lakshi-red, #981F1F); color: #fff; text-align: center; padding: 10px 16px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.2px; position: relative; z-index: 1000; }
#announcement-bar .offer-link { color: #FFD700; font-weight: 800; margin-left: 8px; text-decoration: underline; transition: opacity 0.2s; }
#announcement-bar .offer-link:hover { opacity: 0.8; }

/* ─── HEADER / NAVBAR ─────────────────────────── */
#main-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.04); transition: box-shadow 0.3s, background 0.3s; border-bottom: 1px solid rgba(255,255,255,0.3); }
.navbar { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo svg { width: 46px; height: 46px; display: block; }
.custom-logo-img { max-width: var(--lakshi-logo-width, 200px); max-height: 56px; height: auto; width: auto; display: block; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.2rem; font-weight: 900; color: #222; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; flex-wrap: wrap; }
.nav-links li { position: relative; }
.nav-links li > a { font-size: 0.9rem; font-weight: 600; color: #333; padding: 10px 12px; display: flex; align-items: center; gap: 3px; transition: color 0.3s, transform 0.2s; white-space: nowrap; }
.nav-links li > a:hover, .nav-links li > a.active { color: #189BA6; transform: translateY(-1px); }
.caret { font-size: 0.65rem; }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: #fff; border: 1px solid #e8e8e8; border-radius: 6px; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity 0.2s, transform 0.2s; z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 16px; font-size: 0.85rem; color: #444; transition: background 0.15s, color 0.15s; }
.dropdown a:hover { background: #f0fdfe; color: #189BA6; }
.nav-cta { flex-shrink: 0; margin-left: 20px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle { background: transparent; border: none; color: var(--lakshi-head-color); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 8px; border-radius: 50%; transition: background 0.3s, color 0.3s; }
.theme-toggle:hover { background: rgba(128,128,128,0.1); color: var(--lakshi-teal); }

/* Hamburger Menu */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: transform 0.3s; }

/* ─── HERO ─────────────────────────────────────── */
#hero { position: relative; height: 560px; overflow: hidden; }
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: all; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(255,255,255,0.88) 100%); }
.hero-content { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); text-align: right; max-width: 430px; animation: slideInRight 0.7s ease both; }
@keyframes slideInRight { from { opacity:0; transform: translateY(-50%) translateX(30px); } to { opacity:1; transform: translateY(-50%) translateX(0); } }
.hero-badge { margin-bottom: 8px; }
.badge-tag { display: inline-block; background: linear-gradient(135deg, #F59E0B, #DC6803); color: #fff; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; padding: 4px 14px; border-radius: 20px; }
.hero-headline { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: #1a1a1a; line-height: 1.2; margin-bottom: 12px; }
.highlight-teal { color: #189BA6; }
.hero-sub { font-size: 1rem; color: #333; margin-bottom: 20px; line-height: 1.6; }
.btn-hero { display: inline-block; background: linear-gradient(135deg, var(--lakshi-red, #c46049), var(--lakshi-teal, #189BA6)); color: #fff; padding: 16px 36px; border-radius: 50px; font-weight: 800; font-size: 1rem; letter-spacing: 0.5px; transition: background 0.3s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); position: relative; overflow: hidden; z-index: 1; }
.btn-hero::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); z-index: -1; animation: shimmer 3s infinite 1.5s; }
.btn-hero:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); }
@keyframes shimmer { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.hero-offer-end { font-size: 0.82rem; color: #555; margin-top: 10px; }
.hero-badges-row { display: flex; justify-content: flex-end; gap: 12px; margin-top: 16px; padding: 12px 0; border-top: 1px solid rgba(0,0,0,0.08); flex-wrap: wrap; }
.hero-badge-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: #333; background: rgba(255,255,255,0.88); border-radius: 8px; padding: 6px 10px; backdrop-filter: blur(4px); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); color: #333; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.dot.active { background: #fff; transform: scale(1.3); }

/* ─── HOW IT WORKS ─────────────────────────────── */
#how-it-works { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0 32px; }
.step-card { text-align: center; }
.step-img-wrap { aspect-ratio: 7/5; overflow: hidden; border-radius: 8px; margin-bottom: 14px; }
.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.step-card:hover .step-img-wrap img { transform: scale(1.05); }
.step-num { font-size: 1.1rem; font-weight: 900; color: #189BA6; display: inline-block; }
.step-label { font-size: 0.9rem; font-weight: 600; color: #333; margin-top: 4px; }
.steps-cta { display: flex; gap: 16px; align-items: center; margin-top: 8px; }

/* ─── PROJECTS ─────────────────────────────────── */
.projects-grid { margin: 40px 0 32px; display: flex; flex-direction: column; gap: 40px; }
.project-card { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(0,0,0,0.04); transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(0,0,0,0.02); }
.project-card:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
.project-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-img-wrap img { transform: scale(1.04); }
.project-info { display: flex; flex-direction: column; justify-content: center; padding: 40px; }
.project-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; color: #189BA6; margin-bottom: 10px; }
.project-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.project-loc { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.project-card--right .project-img-wrap { order: 2; }
.project-card--right .project-info { order: 1; }
.projects-cta { display: flex; gap: 16px; align-items: center; }

/* ─── GALLERY SLIDER ──────────────────────────── */
.gallery-slider-wrap { position: relative; display: flex; align-items: center; gap: 12px; margin: 32px 0; }
.gallery-slider { display: flex; gap: 20px; overflow: hidden; flex: 1; }
.gallery-item { flex: 0 0 calc(25% - 15px); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-label { font-size: 0.85rem; font-weight: 600; color: #333; margin-top: 10px; text-align: center; }
.slider-btn { background: #fff; border: 1px solid #ddd; width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; color: #444; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s, transform 0.15s; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.slider-btn:hover { background: #189BA6; color: #fff; border-color: #189BA6; transform: scale(1.08); }
.gallery-cta { text-align: center; margin-top: 8px; }

/* ─── OFFER BANNER STRIP ──────────────────────── */
.offer-banner-strip { background: linear-gradient(135deg, #fff9ec 0%, #fffbe8 100%); border-top: 3px solid #F59E0B; border-bottom: 3px solid #F59E0B; padding: 32px 0; }
.offer-banner-inner { display: flex; align-items: center; gap: 40px; justify-content: center; flex-wrap: wrap; }
.summer-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; background: linear-gradient(135deg, #189BA6, #117880); color: #fff; padding: 16px 20px; border-radius: 12px; font-weight: 800; text-align: center; }
.summer-star { font-size: 1rem; }
.summer-text { font-size: 0.85rem; letter-spacing: 1px; line-height: 1.3; }
.enjoy-tag { font-size: 0.85rem; color: #888; letter-spacing: 2px; margin-bottom: 2px; }
.offer-headline { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; color: #222; line-height: 1.1; }
.offer-sub { font-size: 0.95rem; color: #555; margin-top: 4px; }
.btn-offer { display: inline-block; background: var(--lakshi-red); color: #fff; padding: 14px 28px; border-radius: var(--lakshi-btn-radius); font-weight: 800; font-size: 0.95rem; transition: background 0.2s, transform 0.15s; }
.btn-offer:hover { filter: brightness(0.85); transform: translateY(-2px); }
.offer-hurry { font-size: 0.78rem; color: #444; margin-top: 8px; font-weight: 600; text-align: center; }
.offer-tc { font-size: 0.7rem; color: #888; margin-top: 2px; text-align: center; }

/* ─── WHY CHOOSE ──────────────────────────────── */
.why-tabs { display: flex; border-bottom: 2px solid #e8e8e8; margin: 32px 0 0; overflow-x: auto; }
.why-tab { padding: 12px 20px; font-size: 0.88rem; font-weight: 600; color: #666; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.why-tab.active { color: #189BA6; border-color: #189BA6; }
.why-tab:hover { color: #189BA6; }
.why-panels { margin-top: 0; }
.why-panel { display: none; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 48px 0; animation: fadeInUp 0.4s ease both; }
.why-panel.active { display: grid; }
@keyframes fadeInUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
.why-img { position: relative; border-radius: 12px; overflow: visible; }
.why-img > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.awards-badge { position: absolute; bottom: -20px; right: -20px; background: #fff; border: 3px solid #189BA6; border-radius: 12px; padding: 16px 20px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.award-num { display: block; font-size: 2rem; font-weight: 900; color: #189BA6; line-height: 1; }
.award-text { display: block; font-size: 0.72rem; color: #555; margin-top: 4px; line-height: 1.4; }
.why-content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.why-content p { color: #555; margin-bottom: 14px; font-size: 0.95rem; }
.why-content strong { color: #189BA6; }
.why-content .btn-primary { margin-top: 8px; }

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 32px; }
.testimonial-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.04); transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(0,0,0,0.02); }
.testimonial-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-6px); }
.testi-video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.testi-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #189BA6; cursor: pointer; transition: transform 0.2s, background 0.2s; }
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); background: #189BA6; color: #fff; }
.testi-tag { position: absolute; top: 10px; left: 10px; background: #189BA6; color: #fff; font-size: 0.65rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; max-width: 60%; line-height: 1.3; }
.testi-tag--red  { background: var(--lakshi-red, #981F1F); }
.testi-tag--teal { background: #189BA6; }
.testi-quote { padding: 20px 20px 4px; font-size: 0.88rem; color: #444; line-height: 1.6; }
.quote-mark { font-size: 2rem; color: #189BA6; line-height: 0.5; display: inline-block; transform: translateY(8px); margin-right: 4px; }
.testi-author { padding: 12px 20px 20px; display: flex; flex-direction: column; }
.testi-author strong { font-size: 0.9rem; color: #222; }
.testi-author span  { font-size: 0.78rem; color: #888; }
.testi-cta { text-align: center; margin-top: 16px; }

/* ─── SUPPLIERS ────────────────────────────────── */
.suppliers-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; margin-top: 40px; align-items: center; }
.supplier-intro { background: #222; color: #ccc; padding: 32px; border-radius: 12px; font-size: 0.9rem; line-height: 1.7; }
.supplier-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.supplier-logo-item { display: flex; align-items: center; justify-content: center; padding: 20px; border: 1px solid #e8e8e8; border-radius: 8px; aspect-ratio: 2/1; background: #fff; transition: box-shadow 0.2s; }
.supplier-logo-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.supplier-logo-item img { max-height: 48px; object-fit: contain; }
.logo-text-brand { font-weight: 900; font-size: 1.3rem; letter-spacing: 1px; }
.kessebohmer { color: #1A5276; }
.elica  { color: #E74C3C; font-style: italic; }
.faber  { color: #2C3E50; letter-spacing: 3px; }

/* ─── EXPERIENCE CENTRES ──────────────────────── */
.city-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.city-tab { background: rgba(255,255,255,0.15); color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.3); transition: background 0.2s; }
.city-tab.active { background: #fff; color: #189BA6; }
.city-tab:hover:not(.active) { background: rgba(255,255,255,0.25); }
.experience-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 32px; backdrop-filter: blur(8px); }
.exp-img img { width: 100%; border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; }
.exp-name  { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.exp-visit { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 16px; }
.exp-list li { color: rgba(255,255,255,0.9); font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 8px; }
.exp-list li::before { content: '✓'; color: #FFD700; font-weight: 700; }
.btn-directions { display: inline-block; background: #fff; color: #189BA6; padding: 12px 24px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; margin-top: 20px; transition: transform 0.15s, box-shadow 0.2s; }
.btn-directions:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ─── DESIGNERS ───────────────────────────────── */
.designers-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.designers-tagline { font-style: italic; color: #666; margin-bottom: 16px; }
.designers-text p { color: #555; font-size: 0.95rem; margin-bottom: 16px; }
.designers-text .btn-primary { margin-top: 8px; }
.designers-collage { position: relative; }
.designers-collage img { width: 100%; border-radius: 12px; }
.collage-badge { position: absolute; top: -16px; right: -16px; background: #189BA6; color: #fff; padding: 20px; border-radius: 12px; text-align: center; box-shadow: 0 8px 24px rgba(24,155,166,0.4); }
.collage-num   { display: block; font-size: 2rem; font-weight: 900; }
.collage-label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; }

/* ─── CALCULATOR BANNER ───────────────────────── */
.calculator-banner { position: relative; height: 280px; overflow: hidden; }
.calc-bg { position: absolute; inset: 0; }
.calc-bg img { width: 100%; height: 100%; object-fit: cover; }
.calc-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(24,155,166,0.85) 100%); }
.calc-content { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: flex-end; }
.calc-text { text-align: center; }
.calc-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.btn-calculate { display: inline-block; background: #189BA6; border: 3px solid #fff; color: #fff; padding: 16px 40px; border-radius: 4px; font-weight: 900; font-size: 1rem; letter-spacing: 1px; transition: background 0.2s, transform 0.15s; }
.btn-calculate:hover { background: #117880; transform: scale(1.04); }

/* ─── GUIDES ──────────────────────────────────── */
.guide-tabs { display: flex; border-bottom: 2px solid #e8e8e8; overflow-x: auto; margin-bottom: 32px; }
.guide-tab { padding: 12px 20px; font-size: 0.88rem; font-weight: 600; color: #666; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.guide-tab.active { color: #189BA6; border-color: #189BA6; }
.guide-tab:hover  { color: #189BA6; }
.guide-section-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.guide-section-sub   { color: #777; font-size: 0.9rem; margin-bottom: 24px; }
.guides-cards-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.guides-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; flex: 1; }
.guide-card { display: flex; gap: 16px; background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
.guide-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.guide-card-img { flex-shrink: 0; width: 120px; }
.guide-card-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-card-body { padding: 16px 16px 16px 4px; }
.guide-card-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.guide-card-body p  { font-size: 0.82rem; color: #666; margin-bottom: 10px; }
.guides-cta { text-align: center; margin-top: 20px; }

/* ─── FOUNDERS ────────────────────────────────── */
.founders-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.founders-text p { color: #555; font-size: 0.95rem; margin-bottom: 14px; }
.strengths-list  { margin-top: 20px; }
.strength-item { font-size: 0.9rem; color: #444; padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.check-arrow { color: #189BA6; font-size: 1rem; font-weight: 700; }
.founders-photo-wrap { position: relative; }
.founders-photo-wrap > img { width: 100%; border-radius: 12px; }
.founders-quote { position: absolute; bottom: -20px; left: -20px; background: #222; color: #fff; padding: 20px 24px; border-radius: 12px; max-width: 280px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.fq-mark { font-size: 2.5rem; color: #189BA6; display: block; line-height: 1; margin-bottom: 6px; }
.founders-quote p { font-size: 0.9rem; line-height: 1.5; margin-bottom: 10px; }
.fq-name  { display: block; font-size: 0.82rem; color: #189BA6; }
.fq-brand { display: block; font-size: 0.75rem; color: #888; margin-top: 2px; }

/* ─── CONTACT ─────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-text p { color: #777; margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.contact-item a { color: #333; transition: color 0.2s; }
.contact-item a:hover { color: #189BA6; }
.contact-icon { font-size: 1.1rem; }
.contact-form { background: #F9F9F9; padding: 36px; border-radius: 12px; border: 1px solid #e8e8e8; }
.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: #222; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #444; }
.form-group input, .form-group select { padding: 12px 14px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; font-size: 0.9rem; color: #333; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: #189BA6; box-shadow: 0 0 0 3px rgba(24,155,166,0.12); }
.btn-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; }
.form-disclaimer { font-size: 0.75rem; color: #888; margin-top: 12px; text-align: center; }
.form-disclaimer a { color: #189BA6; text-decoration: underline; }

/* CF7 overrides */
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-email, .wpcf7-form .wpcf7-tel, .wpcf7-form .wpcf7-select, .wpcf7-form .wpcf7-textarea { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; font-size: 0.9rem; margin-bottom: 16px; }
.wpcf7-form input[type=submit] { background: #189BA6; color: #fff; padding: 14px 28px; border-radius: 4px; font-weight: 700; font-size: 0.95rem; width: 100%; cursor: pointer; transition: background 0.2s; }
.wpcf7-form input[type=submit]:hover { background: #117880; }

/* ─── BLOGS ────────────────────────────────────── */
.blogs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; align-items: start; }
.blog-featured img { width: 100%; border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; }
.blog-featured-title { font-size: 1.2rem; font-weight: 700; margin: 8px 0; line-height: 1.4; }
.blog-excerpt { font-size: 0.9rem; color: #666; }
.blogs-list { display: flex; flex-direction: column; }
.blog-item { padding: 20px 0; border-bottom: 1px solid #e8e8e8; }
.blog-item:last-child { border-bottom: none; }
.blog-cat { font-size: 0.75rem; font-weight: 600; color: #189BA6; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.blog-item h4 { font-size: 0.95rem; font-weight: 700; line-height: 1.5; }
.blog-item h4 a, .blog-featured-title a { color: #222; transition: color 0.2s; }
.blog-item h4 a:hover, .blog-featured-title a:hover { color: #189BA6; }

/* ─── FOOTER ──────────────────────────────────── */
#main-footer { background: #1a1a2e; color: #ccc; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding: 60px 24px 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: #aaa; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #ccc; transition: background 0.2s, color 0.2s; }
.social-icon:hover { background: #189BA6; color: #fff; }
.footer-links-group h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links-group a { font-size: 0.82rem; color: #aaa; transition: color 0.2s; }
.footer-links-group a:hover { color: #189BA6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; font-size: 0.8rem; color: #777; text-align: center; }
.footer-bottom a { color: #aaa; transition: color 0.2s; }
.footer-bottom a:hover { color: #189BA6; }

/* ─── STICKY WIDGETS ──────────────────────────── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 900; background: #189BA6; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(24,155,166,0.5); transition: transform 0.2s, box-shadow 0.2s; }
.chat-widget:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(24,155,166,0.6); }
.back-to-top { position: fixed; bottom: 90px; right: 24px; z-index: 900; background: #222; color: #fff; width: 40px; height: 40px; border-radius: 8px; font-size: 1.1rem; display: none; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.back-to-top:hover { background: #189BA6; transform: translateY(-2px); }
.back-to-top.visible { display: flex; }

/* ─── TOAST ───────────────────────────────────── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: #1a1a2e; color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 8px 32px rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.3s, transform 0.4s; z-index: 9999; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── CUSTOM CURSOR (REMOVED) ───────────────────────────── */

/* ─── LIGHTBOX ────────────────────────────────── */
.lakshi-lightbox { position: fixed; inset: 0; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.lakshi-lightbox.active { opacity: 1; pointer-events: all; }
.lakshi-lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); object-fit: contain; }
.lakshi-lightbox.active .lakshi-lightbox-img { transform: scale(1); }
.lakshi-lightbox-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 3rem; cursor: pointer; transition: transform 0.3s, color 0.3s; }
.lakshi-lightbox-close:hover { transform: scale(1.1) rotate(90deg); color: #189BA6; }

/* ─── SCROLL ANIMATIONS ───────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SINGLE POST ─────────────────────────────── */
.single-featured-img img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 12px; }
.single-post-article { max-width: 900px; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .why-panel { gap: 32px; }
  .designers-container, .founders-container { gap: 32px; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card--right { grid-template-columns: 1fr; }
  .project-card--right .project-img-wrap { order: 0; }
  .project-card--right .project-info     { order: 0; }
  .why-panel { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .designers-container, .founders-container { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .experience-panel { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  #announcement-bar { display: none; }
  #main-header { top: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
  .navbar { min-height: 56px; padding-top: 8px; padding-bottom: 8px; gap: 12px; justify-content: space-between; }
  .nav-logo { min-width: 0; }
  .nav-logo svg { width: 38px; height: 38px; }
  .custom-logo-img { max-width: min(var(--lakshi-logo-width, 200px), 158px); max-height: 42px; height: auto; width: auto; object-fit: contain; }
  .logo-main { font-size: 1.02rem; }
  .hamburger, .theme-toggle, .nav-links { display: none !important; }
  .nav-actions { margin-left: auto; flex-shrink: 0; }
  .section-pad { padding: 48px 0; }
  .nav-cta { display: inline-flex !important; align-items: center; justify-content: center; z-index: 9999; font-size: 0.78rem; padding: 10px 14px; white-space: nowrap; margin-left: 0; }
  .nav-cta::after { display: none !important; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .hero-content { right: 0; left: 0; margin: 0 auto; text-align: center; width: 90%; }
  .hero-overlay { background: rgba(0,0,0,0.45); }
  .hero-headline { color: #fff; }
  .hero-sub { color: rgba(255,255,255,0.9); }
  .hero-badges-row { justify-content: center; }
  #hero { height: 520px; }
  .offer-banner-inner { flex-direction: column; text-align: center; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .guides-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .founders-quote { position: static; margin-top: 24px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 calc(90% - 10px); }
  .supplier-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   SCROLLYTELLING HERO — CANVAS SEQUENCE
═══════════════════════════════════════════════════ */

/* 400vh tall section creates the scroll distance */
.hero-seq-section {
  position: relative;
  height: 400vh;
  background: #f5f0eb; /* warm beige — matches frame edges */
}

/* Sticky wrapper — stays in viewport while section scrolls */
.hero-seq-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Canvas fills the sticky area */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Hero Video Styles ─── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: none; /* Default hidden */
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  pointer-events: none;
}

.hero-video.active {
  opacity: 1;
  visibility: visible;
}

/* ─── Responsive Media Toggles (Frames vs Video) ─── */

/* Desktop Display (min-width: 769px) */
@media (min-width: 769px) {
  .hero-seq-section.media-desk-video { height: 100vh; min-height: 600px; }
  .media-desk-video .hero-canvas-wrap,
  .media-desk-video .hero-scroll-hint,
  .media-desk-video .hero-progress-bar { display: none !important; }
  .media-desk-video .hero-video-wrap { display: block; }
}

/* Mobile Display (max-width: 768px) */
@media (max-width: 768px) {
  .hero-seq-section.media-mob-video { 
    height: auto; 
    min-height: calc(100vh - 60px); 
    background: #f5f0eb;
    display: flex;
    flex-direction: column;
  }
  
  /* Reset the sticky wrapper to normal flow for video mode */
  .media-mob-video .hero-seq-sticky {
    position: relative;
    height: auto;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    padding-top: 100vw; /* Creates a perfect square 1:1 space at the top */
    align-items: center;
    justify-content: flex-start;
  }

  .media-mob-video .hero-canvas-wrap,
  .media-mob-video .hero-scroll-hint,
  .media-mob-video .hero-progress-bar { display: none !important; }
  
  /* Make video square 1:1 at the top */
  .media-mob-video .hero-video-wrap { 
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vw; /* Square */
    z-index: 1;
  }

  /* Adjust the story text to sit below the square video */
  .media-mob-video .hero-story {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    padding: 0 20px !important;
    margin-top: -60px !important; /* Overlap with the video */
    display: block !important;
    height: auto !important;
  }

  .media-mob-video .hero-beat {
    opacity: 1 !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Only show the final message */
  .media-mob-video #beat-01,
  .media-mob-video #beat-02,
  .media-mob-video #beat-03 { display: none !important; }
  .media-mob-video #beat-04 { display: block !important; }

  /* Push tabs below the text */
  .media-mob-video .hero-tabs-wrap {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    z-index: 10 !important;
  }
  
  .hero-seq-section.media-mob-frames { height: 200vh; }

/* ═══════════════════════════════════════════════════
   MOBILE STICKY BOTTOM BAR
═══════════════════════════════════════════════════ */
.lakshi-mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .lakshi-mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom)); /* iPhone safe area */
  }
  
  .sticky-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #24292e;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
    border-right: 1px solid #eaeaea;
  }
  
  .sticky-bar-item:last-child {
    border-right: none;
  }
  
  .sticky-bar-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
  .sticky-bar-item.highlight {
    color: #189BA6;
  }
  
  /* Add padding to footer so content isn't hidden by sticky bar */
  #main-footer {
    padding-bottom: 70px;
  }
}

/* ═══════════════════════════════════════════════════
   END STYLES
═══════════════════════════════════════════════════ */
}

/* Soft vignette — blends frame edges into page bg */
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(245,240,235,0.45) 100%
  );
}

/* ── STORY BEATS LAYER ────────────────────────── */
.hero-story {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.hero-beat {
  position: absolute;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.hero-beat.beat-active {
  opacity: 1;
  pointer-events: auto;
}

/* Alignment positions */
.hero-beat[data-align="center"] {
  left: 50%;
  transform: translate(-50%, -50%) translateY(12px);
  text-align: center;
  max-width: min(440px, 90vw);
}
.hero-beat[data-align="center"].beat-active {
  transform: translate(-50%, -50%) translateY(0);
}

.hero-beat[data-align="left"] {
  left: clamp(16px, 7%, 100px);
  right: auto;
  transform: translateY(-50%) translateY(12px);
  text-align: left;
  max-width: min(380px, 85vw);
}
.hero-beat[data-align="left"].beat-active {
  transform: translateY(-50%) translateY(0);
}

.hero-beat[data-align="right"] {
  right: clamp(16px, 7%, 100px);
  left: auto;
  transform: translateY(-50%) translateY(12px);
  text-align: right;
  max-width: min(380px, 85vw);
}
.hero-beat[data-align="right"].beat-active {
  transform: translateY(-50%) translateY(0);
}

/* Glassmorphism card */
.beat-glass {
  background: rgba(245,240,235,0.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220,210,200,0.55);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 36px) clamp(24px, 4vw, 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

/* Beat counter */
.beat-counter {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a7d72;
  margin-bottom: 14px;
}

/* Beat headline */
.beat-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1a1410;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

/* Beat subtext */
.beat-sub {
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  line-height: 1.65;
  color: #6b6158;
  margin-bottom: 4px;
}

/* Beat CTA button */
.beat-cta {
  display: inline-block;
  margin-top: 20px;
  background: #189BA6;
  color: #fff;
  padding: 13px 28px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(24,155,166,0.3);
}
.beat-cta:hover {
  background: #117880;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24,155,166,0.4);
  color: #fff;
}

/* Badge strip in last beat */
.beat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  justify-content: center;
}
.beat-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  background: rgba(255,255,255,0.75);
  padding: 5px 10px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.beat-badges svg { width: 14px; height: 14px; }

/* ── SCROLL HINT ──────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a7d72;
}
.scroll-line-anim {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, #8a7d72);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ── SCROLL PROGRESS BAR ──────────────────────── */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(196,168,130,0.2);
  z-index: 20;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(to right, #c4a882, #189BA6);
  width: 0%;
  transition: width 0.05s linear;
  border-radius: 0 3px 3px 0;
}

/* ── LOADING SCREEN ───────────────────────────── */
.hero-loading {
  position: absolute;
  inset: 0;
  background: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero-loading.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.loading-brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8a7d72;
}
.loading-track {
  width: 160px;
  height: 1px;
  background: rgba(196,168,130,0.3);
  border-radius: 99px;
  overflow: hidden;
}
.loading-fill {
  height: 100%;
  background: #c4a882;
  border-radius: 99px;
  width: 0%;
  transition: width 0.3s ease;
}
.loading-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #8a7d72;
  animation: loadingPulse 1.8s ease-in-out infinite;
}
@keyframes loadingPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}

/* ═══════════════════════════════════════════════════
   SECTION REVEAL ANIMATIONS
   All sections below the hero slide up on scroll
═══════════════════════════════════════════════════ */

/* Base state — hidden and shifted down */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity  0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
[data-reveal-child] > *:nth-child(1) { transition-delay: 0ms;   }
[data-reveal-child] > *:nth-child(2) { transition-delay: 80ms;  }
[data-reveal-child] > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-child] > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-child] > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-child] > *:nth-child(6) { transition-delay: 400ms; }

[data-reveal-child] > * {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal-child].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in variant for cards */
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition:
    opacity   0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal="scale"].revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Fade-only variant */
[data-reveal="fade"] {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s ease;
}
[data-reveal="fade"].revealed { opacity: 1; }

/* Slide-left variant */
[data-reveal="slide-left"] {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity   0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal="slide-left"].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-right variant */
[data-reveal="slide-right"] {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity   0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal="slide-right"].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Section heading pull-up (tighter) ─────────── */
.section-title { transition: opacity 0.6s ease, transform 0.6s ease; }

/* ── Smooth parallax on section backgrounds ─────── */
@media (min-width: 768px) {
  .calculator-banner .calc-bg img {
    will-change: transform;
    transition: transform 0.1s linear;
  }
}

/* ── Hover lift on all cards ────────────────────── */
.step-card,
.testimonial-card,
.guide-card,
.service-card,
.blog-item {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s ease,
              opacity 0.65s ease;
}

/* ── Smooth image hover scale ────────────────────── */
.step-img-wrap img,
.project-img-wrap img,
.testi-video-thumb img,
.blog-featured img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover .step-img-wrap img { transform: scale(1.06); }
.project-card:hover .project-img-wrap img { transform: scale(1.04); }
.testimonial-card:hover .testi-video-thumb img { transform: scale(1.04); }

/* ── Number counter animation ───────────────────── */
.counter-animate {
  display: inline-block;
  transition: transform 0.4s ease;
}

/* ─── MOBILE RESPONSIVE — HERO SEQ ─────────────── */
@media (max-width: 768px) {
  .hero-seq-section { height: 380vh; }

  .beat-glass {
    padding: 18px 20px;
  }
  .beat-headline { font-size: clamp(1.2rem, 5vw, 1.7rem); }
  .beat-sub { font-size: 0.82rem; }

  .hero-beat[data-align="left"],
  .hero-beat[data-align="right"] {
    left: 50%;
    right: auto;
    transform: translate(-50%, calc(-50% + 12px));
    text-align: center;
    max-width: 85vw;
  }
  .hero-beat[data-align="left"].beat-active,
  .hero-beat[data-align="right"].beat-active {
    transform: translate(-50%, -50%);
  }
  .beat-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-seq-section { height: 350vh; }
}
}

/* ─── GALLERY ARCHIVE ─────────────── */
.gallery-archive-page { min-height: 80vh; }
.gallery-archive-header { background-color: #fafafa; border-bottom: 1px solid #eaeaea; }
.gallery-filters { margin-bottom: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.filter-btn {
    background: #fff; border: 1px solid #dcdcdc; color: #444;
    padding: 8px 20px; border-radius: 30px; font-weight: 500; font-size: 14px;
    cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--lakshi-teal); color: var(--lakshi-teal); }
.filter-btn.active { background: var(--lakshi-teal); border-color: var(--lakshi-teal); color: #fff; }

.gallery-archive-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.gallery-archive-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-archive-item.hide {
    display: none;
}
.g-item-inner {
    position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); aspect-ratio: 4/3;
}
.g-item-inner img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.g-item-inner:hover img { transform: scale(1.05); }

.g-item-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    opacity: 0; transition: opacity 0.3s ease; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px; color: #fff; pointer-events: none;
}
.g-item-inner:hover .g-item-overlay { opacity: 1; }
.g-item-title { font-size: 18px; margin: 0 0 5px 0; color: #fff; font-family: var(--lakshi-heading-font); }
.g-item-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

.gallery-pagination .page-numbers {
    display: inline-block; padding: 8px 16px; margin: 0 4px; border: 1px solid #dcdcdc;
    border-radius: 6px; color: #444; text-decoration: none; font-weight: 500;
}
.gallery-pagination .page-numbers.current { background: var(--lakshi-teal); color: #fff; border-color: var(--lakshi-teal); }
.gallery-pagination .page-numbers:hover:not(.current) { background: #f9f9f9; }

/* ─── PAGE TEMPLATES (ABOUT / CONTACT) ─────────────── */
.page-hero { padding-top: 80px; padding-bottom: 60px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── COST CALCULATOR APP ─────────────── */
.calc-step { transition: opacity 0.4s ease; }
.calc-step.hide { display: none; opacity: 0; }
.calc-step.active { display: block; opacity: 1; }

.bhk-btn { background: #f9f9f9; border: 1px solid var(--lakshi-border); padding: 10px 18px; border-radius: 8px; cursor: pointer; font-weight: 500; font-size: 0.9rem; transition: all 0.2s ease; }
.bhk-btn:hover { border-color: var(--lakshi-teal); }
.bhk-btn.active { background: var(--lakshi-teal); color: #fff; border-color: var(--lakshi-teal); }

.tier-card { display: flex; flex-direction: column; justify-content: space-between; }
.tier-card--popular { transform: translateY(-10px); }

.calc-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.calc-modal.hide { display: none; }
.calc-modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.calc-modal-content { position: relative; background: #fff; padding: 30px; border-radius: 12px; width: 90%; z-index: 10; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }

.req-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px dashed #eee; }
.req-row label { font-weight: 600; color: #444; }
.req-select { padding: 8px 12px; border: 1px solid #ccc; border-radius: 6px; outline: none; }
.counter-wrap { display: flex; align-items: center; gap: 10px; }
.counter-btn { width: 30px; height: 30px; background: #f0f0f0; border: none; border-radius: 50%; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.counter-btn:hover { background: #e0e0e0; }
.counter-wrap input { width: 40px; text-align: center; border: none; font-weight: 700; font-size: 1.1rem; pointer-events: none; }

/* ─── SWITCH & ACCORDION ─────────────── */
.lakshi-switch { position: relative; display: inline-block; width: 34px; height: 20px; }
.lakshi-switch input { opacity: 0; width: 0; height: 0; }
.lakshi-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.lakshi-slider:before { position: absolute; content: ""; height: 14px; width: 14px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
.lakshi-switch input:checked + .lakshi-slider { background-color: var(--lakshi-teal); }
.lakshi-switch input:checked + .lakshi-slider:before { transform: translateX(14px); }

.details-content { overflow: hidden; transition: max-height 0.3s ease; }
.details-content.hide { display: none; }

/* ── HERO TABS ── */
.hero-tabs-wrap { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 100; pointer-events: auto; }
.hero-tabs { display: flex; background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 6px; border-radius: 40px; gap: 4px; }
.hero-tab { background: transparent; color: #fff; border: none; padding: 10px 24px; border-radius: 30px; font-family: var(--lakshi-font-primary); font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
.hero-tab:hover { background: rgba(255, 255, 255, 0.1); }
.hero-tab.active { background: #fff; color: #000; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* ── MOBILE STICKY BOTTOM BAR ── */
.lakshi-mobile-sticky-bar { display: none; }

@media (max-width: 768px) {
  .hero-tabs-wrap { bottom: 60px; width: 100%; padding: 0 10px; display: flex; justify-content: center; }
  .hero-tabs { padding: 4px; flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .hero-tab { padding: 8px 12px; font-size: 0.75rem; flex: 1 1 auto; text-align: center; white-space: nowrap; }

  /* Bottom Bar */
  .lakshi-mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--lakshi-red), var(--lakshi-teal));
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
  }
  .sticky-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
    text-decoration: none;
  }
  .sticky-bar-item:last-child {
    border-right: none;
  }
  .sticky-bar-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
  .sticky-bar-item:hover, .sticky-bar-item:active {
    background: rgba(0,0,0,0.1);
  }

  /* Adjust body padding so footer doesn't overlap content */
  body { padding-bottom: 70px !important; }

  /* Header Button Pill */
  .nav-cta {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
    background: linear-gradient(135deg, var(--lakshi-red), var(--lakshi-teal)) !important;
    color: #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 10px rgba(152, 31, 31, 0.3) !important;
    border: none !important;
  }
  .nav-cta::after { display: none !important; } /* remove shimmer on mobile */
}

@media (max-width: 480px) {
  .nav-cta { display: inline-flex !important; padding: 9px 12px !important; font-size: 0.72rem !important; }
}

/* FINAL MOBILE HEADER + HERO FIXES */
html, body { cursor: auto; }
a, button, [role="button"], input[type="submit"] { cursor: pointer; }
input, textarea, select { cursor: auto; }

@media (max-width: 768px) {
  #announcement-bar,
  .hamburger,
  .theme-toggle,
  .nav-links {
    display: none !important;
    visibility: hidden !important;
  }

  #main-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .navbar,
  .navbar.container {
    width: 100%;
    max-width: 100%;
    min-height: 58px;
    padding: 8px 14px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 54vw;
  }

  .custom-logo-img {
    max-width: min(var(--lakshi-logo-width, 200px), 150px, 50vw) !important;
    max-height: 42px !important;
    height: auto;
    width: auto;
    object-fit: contain;
  }

  .nav-logo svg { width: 38px !important; height: 38px !important; }
  .logo-main { font-size: 1.02rem !important; }

  .nav-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    max-width: 46vw;
    margin-left: auto !important;
    gap: 0 !important;
  }

  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    max-width: 46vw;
    min-width: 132px;
    height: 44px;
    margin: 0 !important;
    padding: 0 14px !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.76rem !important;
    line-height: 1;
    border-radius: 999px !important;
  }

  .nav-cta::after { display: none !important; }

  .media-mob-video .hero-video-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(to top, rgba(0,0,0,0.62), rgba(0,0,0,0));
    z-index: 2;
    pointer-events: none;
  }

  .media-mob-video .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .media-mob-video .hero-tabs {
    width: min(100%, 360px);
    flex-wrap: nowrap !important;
    justify-content: center;
    background: rgba(20,20,20,0.72);
  }

  .media-mob-video .hero-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 9px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .navbar,
  .navbar.container { padding-inline: 10px !important; }
  .custom-logo-img { max-width: 138px !important; max-height: 36px !important; height: auto; width: auto; object-fit: contain; }
  .nav-cta {
    min-width: 116px;
    max-width: 43vw;
    padding-inline: 10px !important;
    font-size: 0.68rem !important;
  }
}

/* FINAL RICH MAROON CTA + FOOTER */
#main-footer {
  background: var(--lakshi-footer-bg, #4a0d0d) !important;
  color: var(--lakshi-footer-text, #f7e7e7) !important;
}

#main-footer .footer-desc,
#main-footer .footer-links-group a,
#main-footer .footer-bottom,
#main-footer .footer-bottom a {
  color: var(--lakshi-footer-text, #f7e7e7) !important;
}

.nav-cta,
#nav-cta-btn,
#form-submit-btn {
  background: linear-gradient(135deg, var(--lakshi-secondary-color, var(--lakshi-red, #8f1d1d)), var(--lakshi-primary-color, var(--lakshi-teal, #4a0d0d))) !important;
  color: var(--lakshi-btn-text, #fff) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !important;
  border-color: var(--lakshi-primary-color, var(--lakshi-teal, #4a0d0d)) !important;
}

.nav-cta:hover,
#nav-cta-btn:hover,
#form-submit-btn:hover {
  background: var(--lakshi-link-hover, var(--lakshi-btn-hover, #a32626)) !important;
  color: var(--lakshi-btn-text, #fff) !important;
}

.lakshi-mobile-sticky-bar {
  background: linear-gradient(135deg, var(--lakshi-secondary-color, var(--lakshi-red, #7a1515)), var(--lakshi-primary-color, var(--lakshi-teal, #4a0d0d))) !important;
  color: #fff !important;
}

.lakshi-mobile-sticky-bar .sticky-bar-item {
  color: #fff !important;
  border-right-color: rgba(255,255,255,0.18) !important;
}

/* FINAL DESKTOP HEADER WRAP FIX */
@media (min-width: 769px) {
  #main-header .navbar.container {
    max-width: 1280px;
  }

  #main-header .navbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
  }

  #main-header .nav-logo {
    flex: 0 0 auto;
    max-width: 220px;
  }

  #main-header .nav-links {
    display: flex !important;
    flex: 1 1 auto;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    margin: 0 10px !important;
  }

  #main-header .nav-links > li {
    flex: 0 0 auto;
  }

  #main-header .nav-links li > a {
    padding: 8px 9px;
    font-size: 0.86rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  #main-header .nav-actions {
    display: flex !important;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px !important;
    margin-left: 0 !important;
  }

  #main-header .nav-cta {
    margin-left: 6px !important;
    padding: 14px 28px;
    white-space: nowrap;
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  #main-header .nav-links li > a {
    padding-inline: 7px;
    font-size: 0.8rem;
  }

  #main-header .nav-cta {
    padding-inline: 22px;
    font-size: 0.86rem;
  }
}
