/* =========================================================
   SURE FUTURE MODULES — LUXURY INTERIORS DESIGN SYSTEM
   Palette: Architect Navy, Vibrant Orange, Warm Amber,
            Walnut Brown, Architectural Warm Cream & Crisp White.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --cream:        #FAF6EE;
  --cream-2:      #F2EBDC;
  --cream-3:      #E8DFC8;
  --surface:      #FFFFFF;
  --navy:         #14213D;
  --navy-2:       #1D2E54;
  --navy-dark:    #0C1527;
  --orange:       #E15A25;
  --orange-2:     #F0763F;
  --orange-light: rgba(225, 90, 37, 0.09);
  --amber:        #E8A93B;
  --amber-light:  rgba(232, 169, 59, 0.15);
  --walnut:       #3B2A1F;
  --ink:          #1F1A14;
  --ink-soft:     #5C5349;
  --ink-muted:    #857A6F;
  --line:         rgba(31, 26, 20, 0.12);
  --line-strong:  rgba(31, 26, 20, 0.22);
  --cream-line:   rgba(250, 246, 238, 0.22);
  --shadow-sm:    0 2px 8px rgba(20, 33, 61, 0.06);
  --shadow-md:    0 8px 24px rgba(20, 33, 61, 0.08);
  --shadow-lg:    0 16px 40px rgba(20, 33, 61, 0.12);
  --shadow-xl:    0 24px 60px rgba(20, 33, 61, 0.16);

  --display:      "Fraunces", "Times New Roman", serif;
  --body:         "Plus Jakarta Sans", -apple-system, sans-serif;
  --mono:         "Space Mono", monospace;

  --wrap:         1200px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --transition:   all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

p {
  color: var(--ink-soft);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* -------------------- TYPOGRAPHY & LABELS -------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.eyebrow.cream {
  color: var(--amber);
}
.eyebrow.cream::before {
  background: var(--amber);
}

.hero-tag {
  font-family: var(--display);
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--orange);
  font-weight: 500;
  margin: 14px 0 18px;
}

.hero-tag em {
  font-style: italic;
  color: var(--navy);
}

.underline-rule {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 18px 0 0;
  border-radius: 2px;
}

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(225, 90, 37, 0.28);
}
.btn-primary:hover {
  background: var(--orange-2);
  box-shadow: 0 6px 20px rgba(225, 90, 37, 0.38);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-navy {
  background: var(--navy);
  color: #ffffff;
}
.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-light {
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
}
.btn-whatsapp:hover {
  background: #20BA57;
  transform: translateY(-2px);
  color: #ffffff;
}

/* -------------------- HEADER / NAVIGATION -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand:hover .site-logo {
  transform: scale(1.03);
}

.footer-brand .footer-logo-wrap {
  display: inline-block;
  background: var(--cream);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.footer-brand .footer-logo-wrap:hover {
  transform: scale(1.02);
}

.footer-logo {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 3px 0;
}
.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* -------------------- FULL BACKGROUND HERO BANNER -------------------- */
.hero-fullscreen {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 64px 0 32px;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.08);
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Luxury Multi-layer Gradient Vignette */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(12, 21, 39, 0.94) 0%,
    rgba(12, 21, 39, 0.84) 48%,
    rgba(12, 21, 39, 0.52) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-copy-full {
  max-width: 650px;
}

.hero-copy-full h1 {
  color: #ffffff;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-copy-full .hero-tag {
  color: var(--amber);
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 10px 0 16px;
}

.hero-copy-full .hero-tag em {
  color: #ffffff;
  font-style: italic;
}

.hero-copy-full .hero-body {
  color: rgba(250, 246, 238, 0.9);
  font-size: 16.5px;
  line-height: 1.7;
}

.hero-copy-full .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-copy-full .hero-stats b {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}

.hero-copy-full .hero-stats span {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}

/* Hero Slide Info Glass Card */
.hero-slide-glass-card {
  background: rgba(20, 33, 61, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-current-slide-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}

.hero-current-slide-info .badge-label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-current-slide-info h3 {
  color: #ffffff;
  font-size: 22px;
  margin-top: 6px;
  line-height: 1.3;
}

.hero-glass-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-glass-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(250, 246, 238, 0.9);
}

.hero-glass-feat svg {
  color: var(--orange);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Bottom Bar: Quick Tabs, Indicators, and Arrows */
.hero-bottom-controls {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--wrap);
  margin: 40px auto 0;
  padding: 20px 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-bg-quick-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-bg-tab-pill {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(250, 246, 238, 0.85);
  cursor: pointer;
  transition: var(--transition);
}

.hero-bg-tab-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: var(--orange);
}

.hero-bg-tab-pill.active {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(225, 90, 37, 0.4);
}

.hero-slider-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-bg-indicators {
  display: flex;
  gap: 7px;
}

.hero-bg-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-bg-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(232, 169, 59, 0.8);
}

.hero-bg-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.hero-bg-arrow-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.hero-bg-arrow-btn svg {
  width: 18px;
  height: 18px;
}

.floating-badge {
  position: absolute;
  background: rgba(20, 33, 61, 0.92);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.floating-badge.bottom-left {
  bottom: -24px;
  left: -20px;
}

.floating-badge.top-right {
  top: -18px;
  right: -18px;
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-badge b {
  font-family: var(--display);
  font-size: 16px;
  display: block;
  line-height: 1.2;
}

.floating-badge span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
}
.floating-badge.top-right span {
  color: var(--ink-soft);
}

/* -------------------- SECTION GENERAL -------------------- */
section {
  padding: 80px 0;
  position: relative;
}

.bg-cream-2 {
  background: var(--cream-2);
}
.bg-navy {
  background: var(--navy);
  color: var(--cream);
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 {
  color: #ffffff;
}
.bg-navy p {
  color: rgba(250, 246, 238, 0.8);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 12px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* -------------------- SERVICE CARDS WITH IMAGES -------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(225, 90, 37, 0.3);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 33, 61, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.service-card-link:hover svg {
  transform: translateX(4px);
}

/* -------------------- INTERACTIVE COST ESTIMATOR -------------------- */
.estimator-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 42px;
  margin-top: 36px;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.estimator-controls h4 {
  font-size: 18px;
  margin-bottom: 14px;
}

.calc-group {
  margin-bottom: 26px;
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: var(--transition);
}

.calc-pill:hover {
  border-color: var(--orange);
}

.calc-pill.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.addon-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
}

.addon-label:hover {
  border-color: var(--orange);
}

.addon-label input {
  accent-color: var(--orange);
  width: 17px;
  height: 17px;
}

.estimator-result {
  background: var(--navy);
  color: #ffffff;
  padding: 34px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.estimator-result h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 8px;
}

.estimate-price-box {
  margin: 24px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.estimate-price-box span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.estimate-price-box .price-range {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

.estimator-specs {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* -------------------- PROCESS STEPS -------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--surface);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.step-no {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.85;
  display: block;
  margin-bottom: 14px;
}

.process-step h4 {
  font-size: 19px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
}

/* -------------------- GALLERY GRID & LIGHTBOX -------------------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-btn.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 90, 37, 0.3);
}

.gallery-thumb-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}

.gallery-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-thumb-box img {
  transform: scale(1.08);
}

.gallery-overlay-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 33, 61, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay-badge {
  opacity: 1;
  transform: translateY(0);
}

.gallery-meta {
  padding: 22px;
}

.gallery-meta .tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 6px;
}

.gallery-meta h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.gallery-meta p {
  font-size: 13.5px;
  line-height: 1.5;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 21, 39, 0.94);
  backdrop-filter: blur(12px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.lightbox-content {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 70vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox-info {
  padding: 24px 30px;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lightbox-info h3 {
  font-size: 20px;
  color: var(--navy);
}
.lightbox-info p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
  z-index: 20;
}
.lightbox-close:hover {
  background: var(--orange);
  transform: scale(1.1);
}

/* -------------------- TESTIMONIALS -------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  background: var(--surface);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 90, 37, 0.3);
}

.testi-stars {
  color: #F5A623;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--display);
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.testi-role {
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* -------------------- SEAM PANEL CTA -------------------- */
.seam-panel {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.seam-slice {
  position: absolute;
  top: -50%;
  width: 80px;
  height: 200%;
  background: rgba(225, 90, 37, 0.15);
  transform: rotate(var(--seam, 14deg));
}
.seam-slice.amber {
  background: rgba(232, 169, 59, 0.12);
}

.page-hero {
  padding: 64px 0 72px;
}

/* -------------------- TWO COLUMNS -------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}

.image-frame-rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.image-frame-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-frame-rounded:hover img {
  transform: scale(1.04);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-cell {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-cell b {
  font-family: var(--display);
  font-size: 32px;
  color: var(--navy);
  display: block;
}
.stat-cell span {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
  display: block;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.value-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13.5px;
  line-height: 1.6;
}

/* -------------------- FAQ ACCORDION -------------------- */
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item h4 {
  padding: 20px 24px;
  font-size: 17px;
  font-family: var(--body);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item h4 span {
  color: var(--orange);
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.open h4 span {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.65;
}

/* -------------------- CONTACT SECTION -------------------- */
.contact-card {
  background: var(--navy);
  color: #ffffff;
  padding: 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 6px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  margin-top: 18px;
  line-height: 1.5;
}

.contact-line svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-line .wa {
  color: #25D366;
  font-weight: 700;
  font-size: 12px;
  margin-left: 6px;
}

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

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px var(--orange-light);
}

.map-frame {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  height: 380px;
  background: var(--cream-2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------- FLOATING QUICK ACTIONS -------------------- */
.floating-quick-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
}

.fab-btn svg {
  width: 24px;
  height: 24px;
}

.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp:hover {
  background: #20BA57;
  transform: scale(1.1);
}

.fab-call {
  background: var(--navy);
}
.fab-call:hover {
  background: var(--navy-2);
  transform: scale(1.1);
}

.fab-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid inherit;
  animation: pulseRing 2s infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* -------------------- FOOTER -------------------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .brand-word {
  font-size: 24px;
  color: #ffffff;
}

.footer-brand p {
  color: rgba(250, 246, 238, 0.65);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(250, 246, 238, 0.7);
  margin-bottom: 12px;
}
.footer-col a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-col .contact-line {
  color: rgba(250, 246, 238, 0.8);
  font-size: 13.5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(250, 246, 238, 0.5);
}

/* -------------------- ANIMATIONS -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* -------------------- RESPONSIVE MEDIA QUERIES -------------------- */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 36px 24px 48px;
  }
  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .service-grid, .testi-grid, .estimator-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-logo {
    height: 38px;
    max-width: 180px;
  }
  .hero-bottom-controls {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-slider-actions {
    width: 100%;
    justify-content: space-between;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--line);
    gap: 18px;
    align-items: flex-start;
  }
  .nav-toggle {
    display: flex;
  }
  .wrap {
    padding: 0 20px;
  }
  .value-list, .addons-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .estimator-card {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .floating-badge.bottom-left, .floating-badge.top-right {
    position: static;
    margin-top: 14px;
  }
}
