/* ============================================================
   VARNA SPACE — styles.css  (Enhanced Edition)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

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

:root {
  /* Accent — warm amber/gold lifted from the building's illuminated panels */
  --gold:          #c8923a;
  --gold-light:    #e0ae62;
  --gold-dark:     #a5731f;
  --gold-subtle:   rgba(200,146,58,0.12);
  --font-display:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'Montserrat', 'Courier New', monospace;

  /* ── LIGHT MODE
     Inspired by the photo's overcast sky: crisp off-white with cool-blue undertones,
     steel-grey lines, amber accents. */
  --bg:            #f2f4f7;
  --bg-section:    #e6eaf0;
  --bg-card:       #ffffff;
  --bg-card-hover: #edf0f5;
  --nav-bg:        rgba(242,244,247,0.96);
  --nav-border:    rgba(30,40,60,0.08);
  --ink:           #1a1f2e;
  --ink-mid:       #3a4257;
  --ink-muted:     #1a1f2e;
  --ink-subtle:    #4a5270;
  --line:          rgba(200,146,58,0.22);
  --line-ink:      rgba(30,40,60,0.1);
  --hero-overlay:  linear-gradient(160deg, rgba(242,244,247,0.08) 0%, rgba(242,244,247,0.18) 55%, rgba(242,244,247,0.72) 100%);
  --marquee-text:  rgba(15,22,45,0.55);
  --logo-filter:   brightness(0);
  --footer-bg:     #e6eaf0;
  --cad-bg:        #edf0f5;
}

body.dark-mode {
  /* ── DARK MODE
     Inspired by the photo's deep indigo-charcoal tower facades and night sky.
     Rich steel-blue blacks, cool mid-tones, amber accents. */
  --bg:            #080c14;
  --bg-section:    #0d1220;
  --bg-card:       #0b1019;
  --bg-card-hover: #121826;
  --nav-bg:        rgba(8,12,20,0.97);
  --nav-border:    rgba(200,146,58,0.18);
  --ink:           #dce4f0;
  --ink-mid:       #a8b4cc;
  --ink-muted:     #6a7a99;
  --ink-subtle:    #3e4d6a;
  --line:          rgba(200,146,58,0.22);
  --line-ink:      rgba(200,146,58,0.14);
  --hero-overlay:  linear-gradient(160deg, rgba(8,12,20,0.45) 0%, rgba(8,12,20,0.68) 55%, rgba(8,12,20,0.93) 100%);
  --marquee-text:  rgba(220,228,240,0.12);
  --logo-filter:   brightness(0) invert(1);
  --footer-bg:     #0d1220;
  --cad-bg:        #080e1a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  transition: background 0.4s ease, color 0.4s ease;
}

/* ============================================================
   CURSORS
   ============================================================ */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor.hover { width: 6px; height: 6px; }
.cursor-follower {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(184,151,90,0.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower.hover { width: 52px; height: 52px; border-color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 8px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled { border-bottom-color: var(--nav-border); box-shadow: 0 1px 32px rgba(0,0,0,0.08); }
body.dark-mode nav { background: linear-gradient(to bottom, rgba(8,12,20,0.96) 0%, transparent 100%); }
body.dark-mode nav.scrolled { background: rgba(8,12,20,0.97); }

.nav-logo { display:flex; align-items:center; text-decoration:none; }
.nav-logo img { height:100px; width:auto; filter:var(--logo-filter); object-fit:contain; transition:filter 0.4s ease; margin:-25px 0; }

.nav-links { display:flex; align-items:center; gap:40px; list-style:none; }
.nav-links a {
  font-size:10px; font-weight:400; letter-spacing:3px;
  text-transform:uppercase; color:var(--ink-muted);
  text-decoration:none; position:relative; transition:color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold); transition:width 0.4s ease;
}
.nav-links a:hover { color:var(--ink); }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  color:var(--gold) !important; border:1px solid var(--line) !important;
  padding:10px 24px !important; transition:all 0.3s ease !important;
}
.nav-cta:hover { background:var(--gold) !important; color:#fff !important; }
.nav-cta::after { display:none !important; }

/* Hamburger */
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-hamburger span { display:block; width:22px; height:1px; background:var(--ink-muted); transition:all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position:fixed; top:0; left:0; right:0; bottom:0; z-index:999;
  background:var(--bg); display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:32px;
  transform:translateX(100%); transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform:translateX(0); }
.mobile-menu a {
  font-family:var(--font-display); font-size:36px; font-weight:300;
  color:var(--ink); text-decoration:none; letter-spacing:2px; font-style:italic;
  transition:color 0.3s;
}
.mobile-menu a:hover { color:var(--gold); }
.mobile-menu .mobile-cta {
  font-family:var(--font-body); font-size:11px; letter-spacing:4px;
  text-transform:uppercase; font-style:normal; font-weight:500;
  border:1px solid var(--gold); color:var(--gold); padding:14px 40px;
}

/* Theme toggle */
.theme-toggle {
  background:none; border:1px solid var(--line-ink); border-radius:20px;
  width:52px; height:28px; cursor:pointer; padding:3px;
  display:flex; align-items:center; transition:border-color 0.3s; flex-shrink:0;
}
.theme-toggle:hover { border-color:var(--gold); }
.theme-toggle-track { width:100%; height:100%; display:flex; align-items:center; }
.theme-toggle-knob {
  width:20px; height:20px; border-radius:50%; background:var(--gold);
  display:flex; align-items:center; justify-content:center;
  transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);
  font-size:10px; color:#fff; flex-shrink:0;
}
body.light-mode .theme-toggle-knob { transform:translateX(0); }
body.dark-mode  .theme-toggle-knob { transform:translateX(24px); }
.nav-links li:has(.theme-toggle) { display:flex; align-items:center; }

/* ============================================================
   HERO — Interactive Architectural Canvas
   ============================================================ */
.hero {
  height: 100vh; min-height: 640px; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg);
  /* Background photo */
  background-image: url('Images/Bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Photo overlay — light mode: translucent sky-blue-white wash */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(180,188,205,0.55) 0%,
    rgba(165,175,195,0.45) 40%,
    rgba(180,188,205,0.65) 75%,
    rgba(180,188,205,0.78) 100%
  );
  transition: background 0.4s ease;
}

/* Dark mode overlay: deep indigo-black wash letting photo glow through */
body.dark-mode .hero::after {
  background: linear-gradient(
    160deg,
    rgba(8,12,20,0.20) 0%,
    rgba(8,12,20,0.25) 40%,
    rgba(8,12,20,0.45) 75%,
    rgba(8,12,20,0.60) 100%
  );
}

/* Live canvas fills entire hero — sits above the photo overlay */
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 2;
  opacity: 0.55;
}

/* Floor-plan ghost SVG — centred, large, subtle */
.hero-floorplan-wrap {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 4vw;
  pointer-events: none;
  transition: transform 0.08s ease-out;
}
.hero-fp-svg {
  width: clamp(480px, 56vw, 860px);
  height: auto;
  opacity: 0.55;
}

/* SVG draw-on animations */
.fp-draw { }
.fp-label { }
@keyframes fpDraw1 { to { stroke-dashoffset: 0; } }
@keyframes fpDraw2 { to { stroke-dashoffset: 0; } }
@keyframes fpDraw3 { to { stroke-dashoffset: 0; } }
@keyframes fpDraw4 { to { stroke-dashoffset: 0; } }
@keyframes fpFade  { to { opacity: 0.55; } }

/* Floating annotation labels */
.hero-annotations {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
}
.anno {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.18s ease-out;
}
.anno-line {
  display: block; width: 32px; height: 1px;
  background: var(--gold); opacity: 1;
  flex-shrink: 0;
}
.anno-text {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 2px;
  color: var(--gold); opacity: 1; white-space: nowrap;
  text-transform: uppercase;
}
/* Annotation positions */
.anno-1 { top: 22%; right: 36%; }
.anno-2 { top: 36%; right: 20%; flex-direction: row-reverse; }
.anno-3 { top: 62%; right: 30%; }
.anno-4 { top: 74%; right: 16%; flex-direction: row-reverse; }

/* Hero copy — left side */
.hero-content {
  position: relative; z-index: 4;
  padding: 120px 64px 0; max-width: 580px;
}
.hero-tag {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
  animation: heroFadeUp 0.8s ease 0.3s both;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

/* Large stacked type */
.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-weight: 300; line-height: 0.92;
  color: var(--ink);
  margin-bottom: 0;
}
.hero-h1-line {
  display: block;
  font-size: clamp(68px, 9.5vw, 128px);
  animation: heroFadeUp 0.9s ease both;
  letter-spacing: -1px;
}
.hero-h1-line:nth-child(1) { animation-delay: 0.5s; }
.hero-h1-line:nth-child(2) { animation-delay: 0.65s; }
.hero-h1-line:nth-child(3) { animation-delay: 0.80s; }
.hero-h1-em {
  font-style: italic; color: var(--gold-light);
  margin-left: 0.12em;
}

.hero-desc {
  font-size: 12px; letter-spacing: 0.8px; line-height: 2.1;
  color: var(--ink-muted); max-width: 380px; margin: 36px 0 48px;
  animation: heroFadeUp 0.9s ease 1s both;
}
.hero-btns {
  display: flex; align-items: center; gap: 36px;
  animation: heroFadeUp 0.9s ease 1.15s both;
}

/* Crosshair tracker */
.hero-crosshair {
  position: absolute; z-index: 5; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.04s linear, top 0.04s linear;
}
.hc-h, .hc-v {
  position: absolute; background: rgba(200,146,58,0.35);
}
.hc-h { width: 22px; height: 1px; top: 0; left: -11px; }
.hc-v { height: 22px; width: 1px; left: 0; top: -11px; }
.hc-ring {
  position: absolute; width: 12px; height: 12px;
  border: 1px solid rgba(200,146,58,0.5); border-radius: 50%;
  top: -6px; left: -6px;
  animation: crosshairPulse 2s ease infinite;
}
.hc-coords {
  position: absolute; top: 14px; left: 10px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 1px;
  color: var(--gold); opacity: 0.6; white-space: nowrap;
}

/* Status bar */
.hero-statusbar {
  position: absolute; top: 84px; right: 60px; z-index: 4;
  display: flex; align-items: center; gap: 24px;
  pointer-events: none;
  animation: heroFadeUp 0.7s ease 1.4s both;
}
.hsb-item {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 2px;
  color: var(--ink-subtle); text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.hsb-dot { width: 5px; height: 5px; border-radius: 50%; }
.hsb-dot-green { background: #4caf82; animation: dotBlink 2.4s ease infinite; }

.hero-scroll {
  position: absolute; bottom: 44px; right: 60px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll-text {
  font-size: 8px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--ink-muted); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes crosshairPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.6); opacity: 0.2; }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Light/dark adjustments for hero text */
body.dark-mode .hero-h1 { color: #f0ebe0; }
body.dark-mode .hero-desc { color: rgba(200,194,184,0.7); }

/* ── Shared buttons ── */
.btn-primary {
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 42px; text-decoration: none; display: inline-block;
  position: relative; overflow: hidden; transition: color 0.3s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light); transform: translateX(-101%); transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-size: 10px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: none;
  display: flex; align-items: center; gap: 12px; transition: color 0.3s;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost-arrow { width: 28px; height: 1px; background: currentColor; position: relative; transition: width 0.3s; }
.btn-ghost:hover .btn-ghost-arrow { width: 44px; }
.btn-ghost-arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding:40px 0; overflow:hidden;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg);
}
.marquee-track { display:flex; animation:marquee 22s linear infinite; white-space:nowrap; }
.marquee-track.reverse { animation-direction:reverse; }
.marquee-item {
  display:inline-flex; align-items:center; gap:40px; padding:0 40px;
  font-family:var(--font-display); font-size:22px; font-weight:300; font-style:italic;
  color:var(--marquee-text); flex-shrink:0;
}
.marquee-dot {
  display:inline-block; width:5px; height:5px;
  border-radius:50%; background:var(--gold); opacity:0.4; flex-shrink:0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding:140px 60px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:100px; align-items:center; position:relative;
}
.about::before {
  content:''; position:absolute; top:0; left:60px; right:60px;
  height:1px; background:var(--line);
}
.about-number {
  position:absolute; left:60px; top:140px;
  font-family:var(--font-display); font-size:180px; font-weight:300;
  color:var(--line); line-height:1;
  pointer-events:none; user-select:none;
}
.about-left { position:relative; }

.section-label {
  font-size:9px; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold-dark); margin-bottom:28px;
  display:flex; align-items:center; gap:16px;
}
.section-label::before { content:''; width:24px; height:1px; background:var(--gold); }

.about-h2 {
  font-family:var(--font-display);
  font-size:clamp(40px,5vw,64px); font-weight:300;
  line-height:1.1; color:var(--ink); margin-bottom:36px;
}
.about-h2 em { font-style:italic; color:var(--gold-light); }

.about-text {
  font-size:17px; font-weight: 500; letter-spacing:0.4px; line-height:2.3;
  color:var(--ink-muted); margin-bottom:20px;
}

.about-stats {
  display:flex; gap:40px;
  margin-top:48px; padding-top:48px; border-top:1px solid var(--line);
}
.stat-item {}
.stat-num {
  font-family:var(--font-display); font-size:52px;
  font-weight:300; color:var(--gold); line-height:1;
}
.stat-label {
  font-size:9px; letter-spacing:2px; text-transform:uppercase;
  color:var(--ink-muted); margin-top:8px;
}

/* About image */
.about-right { position:relative; }
.about-img-frame {
  width:100%; aspect-ratio:3/4; border:1px solid var(--line);
  overflow:hidden; position:relative;
}
.about-img-frame::before {
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(135deg, rgba(184,151,90,0.08) 0%, transparent 50%, rgba(184,151,90,0.05) 100%);
  pointer-events:none;
}
.about-img-inner { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:#1a1814; }
.about-img-inner img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.7s ease; filter:brightness(0.88) contrast(1.05); }
.about-img-frame:hover .about-img-inner img { transform:scale(1.04); }

/* CAD overlay on about image */
.about-cad-overlay {
  position:absolute; inset:0; z-index:2; pointer-events:none;
}
.about-cad-overlay svg { width:100%; height:100%; }

.about-img-decor { position:absolute; top:-18px; right:-18px; width:110px; height:110px; border:1px solid var(--line); z-index:-1; }
.about-img-corner { position:absolute; bottom:-18px; left:-18px; width:80px; height:80px; border:1px solid rgba(184,151,90,0.12); z-index:-1; }
.about-img-frame::after {
  content:''; position:absolute; left:0; top:20%; bottom:20%;
  width:3px; background:linear-gradient(to bottom, transparent, var(--gold), transparent); z-index:2;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding:120px 60px; background:var(--bg-section); position:relative; }
.services::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:var(--line); }
.services-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:80px; }
.services-h2 {
  font-family:var(--font-display); font-size:clamp(40px,5vw,64px);
  font-weight:300; color:var(--ink); line-height:1.1; max-width:480px;
}
.services-h2 em { font-style:italic; color:var(--gold-light); }
.services-subtitle { font-size:11px; letter-spacing:0.5px; line-height:2; color:var(--ink-muted); max-width:280px; text-align:right; }

.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.service-card {
  background:var(--bg-card); padding:52px 44px;
  position:relative; overflow:hidden; transition:background 0.5s ease; cursor:none;
}
.service-card::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--gold); transition:width 0.5s ease; }
.service-card:hover::after { width:100%; }
.service-card:hover { background:var(--bg-card-hover); }
.service-num { font-family:var(--font-display); font-size:13px; color:var(--gold); letter-spacing:3px; margin-bottom:32px; opacity:0.5; }
.service-icon { width:48px; height:48px; margin-bottom:28px; opacity:0.65; transition:opacity 0.3s; }
.service-card:hover .service-icon { opacity:1; }
.service-title { font-family:var(--font-display); font-size:23px; font-weight:300; color:var(--ink); margin-bottom:14px; line-height:1.2; }
.service-desc { font-size:16px; letter-spacing:0.5px; line-height:1.9; color:var(--ink-muted); font-weight:400; }
.service-link {
  display:inline-flex; align-items:center; gap:10px;
  margin-top:36px; font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); text-decoration:none;
  opacity:0; transform:translateY(8px); transition:all 0.3s ease;
}
.service-card:hover .service-link { opacity:1; transform:translateY(0); }

/* ============================================================
   PROJECT GALLERY — Masonry Grid + Slider
   ============================================================ */
.gallery { background:var(--bg); position:relative; }
.gallery::before { content:''; position:absolute; top:0; left:60px; right:60px; height:1px; background:var(--line); }
.gallery-header { padding:80px 60px 48px; }
.gallery-h2 {
  font-family:var(--font-display); font-size:clamp(40px,5vw,64px);
  font-weight:300; color:var(--ink); line-height:1.1; margin-top:16px;
}
.gallery-h2 em { font-style:italic; color:var(--gold-light); }
.gallery-sub { font-size:11px; color:var(--ink-muted); letter-spacing:0.5px; margin-top:12px; line-height:1.8; }

/* Masonry Grid */
.gallery-masonry {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:280px;
  grid-auto-flow:dense;
  gap:4px;
  padding:0 0 4px;
}
.gm-item { position:relative; overflow:hidden; cursor:pointer; }
.gm-wide { grid-column:span 2; }
.gm-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transition:transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.gm-item:hover .gm-img { transform:scale(1.06); }

.gm-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,12,20,0.82) 0%, rgba(8,12,20,0.18) 55%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:24px 26px; opacity:0; transition:opacity 0.4s ease;
}
.gm-item:hover .gm-overlay { opacity:1; }

.gm-tag {
  font-size:8px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); margin-bottom:7px; font-family:var(--font-body);
}
.gm-title { font-family:var(--font-display); font-size:20px; font-weight:300; color:#fff; line-height:1.2; }
.gm-loc { display:none; }

/* Gallery slider label */
.gallery-slider-label {
  padding:48px 60px 24px;
  font-size:9px; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold-dark); display:flex; align-items:center; gap:16px;
}
.gallery-slider-label::after { content:''; flex:1; height:1px; background:var(--line); }

/* Project Slider */
.proj-slider {
  position:relative; width:100%; height:78vh; min-height:500px; overflow:hidden;
}
.proj-slide { position:absolute; inset:0; opacity:0; transition:opacity 0.9s cubic-bezier(0.4,0,0.2,1); pointer-events:none; }
.proj-slide.active { opacity:1; pointer-events:auto; }
.proj-img { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 8s ease; }
.proj-slide.active .proj-img { transform:scale(1.04); }
.proj-slide::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(5,4,3,0.12) 0%, rgba(5,4,3,0.38) 55%, rgba(5,4,3,0.72) 100%);
}
.proj-title-overlay {
  position:absolute; inset:0; z-index:2;
  display:flex; flex-direction:column;
  justify-content:center; padding-left:6vw; padding-top:40px;
  pointer-events:none;
}
.pto-word {
  display:block; font-family:var(--font-display);
  font-size:clamp(60px,11vw,160px); font-weight:300; line-height:0.88;
  color:rgba(255,255,255,0.11); letter-spacing:-1px;
  transform:rotate(-6deg); white-space:nowrap; user-select:none;
}
.pto-w2 { color:rgba(184,151,90,0.14); margin-left:6vw; }
.proj-meta { position:absolute; bottom:40px; left:60px; z-index:3; display:flex; gap:32px; align-items:center; }
.proj-num { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); font-family:var(--font-body); }
.proj-type { font-family:var(--font-display); font-size:15px; font-weight:300; font-style:italic; color:rgba(255,255,255,0.65); }
.proj-nav {
  position:absolute; top:50%; z-index:4; transform:translateY(-50%);
  background:transparent; border:1px solid rgba(255,255,255,0.25); color:#fff;
  cursor:pointer; width:52px; height:52px;
  display:flex; align-items:center; justify-content:center; transition:all 0.3s ease;
}
.proj-nav:hover { background:var(--gold); border-color:var(--gold); }
.proj-prev { left:32px; }
.proj-next { right:32px; }
.proj-dots { position:absolute; bottom:44px; right:60px; z-index:4; display:flex; gap:10px; align-items:center; }
.proj-dot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.3); cursor:pointer; transition:all 0.3s; }
.proj-dot.active { background:var(--gold); transform:scale(1.3); }

/* ============================================================
   CAD BLUEPRINT SECTION — Animated GIF Effect
   ============================================================ */
.cad-section {
  background:var(--cad-bg);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:72px 0 56px;
  overflow:hidden; position:relative;
}
.cad-section::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(184,151,90,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,151,90,0.03) 1px, transparent 1px);
  background-size:30px 30px;
  pointer-events:none;
}

.cad-banner-label {
  font-size:8px; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold); text-align:center; margin-bottom:36px;
  display:flex; align-items:center; justify-content:center; gap:16px;
  font-family:var(--font-mono);
}
.cad-banner-label::before,
.cad-banner-label::after { content:''; width:40px; height:1px; background:var(--gold); opacity:0.4; }

.cad-canvas-wrap { width:100%; overflow:hidden; position:relative; }
.cad-svg { width:100%; height:auto; display:block; }

/* Phased CAD draw animations */
.cad-p1 { animation:cadDraw 2.2s ease forwards; }
.cad-p2 { animation:cadDraw2 1.8s ease 1s forwards; }
.cad-p3 { animation:cadDraw3 1.4s ease 1.8s forwards; }
.cad-p4 { animation:cadDraw4 1s ease 2.6s forwards; }
.cad-label { animation:cadFade 0.8s ease 3.2s forwards; }

/* Animated scan line */
.cad-scan-line { animation:cadScan 4s linear infinite; }

@keyframes cadDraw   { to { stroke-dashoffset: 0; } }
@keyframes cadDraw2  { to { stroke-dashoffset: 0; } }
@keyframes cadDraw3  { to { stroke-dashoffset: 0; } }
@keyframes cadDraw4  { to { stroke-dashoffset: 0; } }
@keyframes cadFade   { to { opacity: 0.55; } }

.cad-tagline {
  text-align:center; padding:36px 60px 0;
  font-family:var(--font-display); font-size:18px;
  font-style:italic; font-weight:300; color:var(--gold-light); letter-spacing:0.5px;
}
.cad-cta-row {
  display:flex; justify-content:center; margin-top:40px;
}
.cad-enquire-btn { font-size:11px; padding:18px 56px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding:120px 60px; background:var(--bg-section); position:relative; overflow:hidden;
}
.testimonials::before { content:''; position:absolute; top:0; left:60px; right:60px; height:1px; background:var(--line); }

/* Big watermark word */
.testi-bg-text {
  position:absolute; right:-30px; top:60px;
  font-family:var(--font-display); font-size:clamp(100px,16vw,220px);
  font-weight:300; letter-spacing:-4px; line-height:1;
  color:var(--line); pointer-events:none; user-select:none;
  white-space:nowrap;
}

.testi-header { margin-bottom:48px; position:relative; }
.testimonials-h2 {
  font-family:var(--font-display); font-size:clamp(40px,5vw,64px);
  font-weight:300; color:var(--ink); line-height:1.1; margin-top:16px;
}
.testimonials-h2 em { font-style:italic; color:var(--gold-light); }

/* Google Rating Bar */
.google-rating-bar { margin-bottom:64px; }
.google-rating-inner {
  display:flex; align-items:center; gap:28px;
  padding:28px 36px; border:1px solid var(--line);
  background:var(--bg-card); display:inline-flex;
  flex-wrap:wrap;
}
.gr-score-block { display:flex; flex-direction:column; align-items:center; gap:4px; }
.gr-number { font-family:var(--font-display); font-size:42px; font-weight:300; color:var(--ink); line-height:1; }
.gr-stars { color:#fbbc04; font-size:16px; letter-spacing:2px; }
.gr-divider { width:1px; height:64px; background:var(--line); }
.gr-summary { display:flex; flex-direction:column; gap:2px; }
.gr-count { font-size:11px; letter-spacing:1px; color:var(--ink-muted); margin-bottom:8px; }
.gr-bar-wrap { display:flex; flex-direction:column; gap:4px; }
.gr-bar-row { display:flex; align-items:center; gap:8px; font-size:9px; color:var(--ink-muted); letter-spacing:1px; }
.gr-bar { width:100px; height:5px; background:var(--line); border-radius:2px; }
.gr-fill { height:100%; background:var(--gold); border-radius:2px; }
.gr-bar-row span:last-child { min-width:14px; text-align:right; }
.gr-write-btn {
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); text-decoration:none; border:1px solid var(--line);
  padding:12px 24px; transition:all 0.3s ease; white-space:nowrap;
}
.gr-write-btn:hover { background:var(--gold); color:#fff; border-color:var(--gold); }

/* Testimonial Cards */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-bottom:56px; }
.testi-card {
  background:var(--bg-card); padding:44px 40px;
  position:relative; transition:background 0.4s ease;
}
.testi-card::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--gold); transition:width 0.5s ease; }
.testi-card:hover::after { width:100%; }
.testi-card:hover { background:var(--bg-card-hover); }

.testi-google-badge {
  display:flex; align-items:center; gap:6px;
  margin-bottom:20px;
}
.testi-google-badge span { font-size:8px; letter-spacing:2px; color:var(--ink-subtle); text-transform:uppercase; font-family:var(--font-mono); }

.testi-stars { color:#fbbc04; font-size:14px; letter-spacing:2px; margin-bottom:20px; }
.testi-text {
  font-family:var(--font-display); font-size:16px;
  font-weight:300; font-style:italic; line-height:1.8;
  color:var(--ink-mid); margin-bottom:32px;
}
.testi-text::before { content:'\201C'; color:var(--gold); font-size:40px; line-height:0; vertical-align:-14px; margin-right:4px; opacity:0.4; }

.testi-author { display:flex; align-items:center; gap:16px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  color:#fff; font-size:13px; font-weight:500;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; letter-spacing:0.5px;
}
.testi-name { font-size:12px; font-weight:400; color:var(--ink); letter-spacing:0.5px; }
.testi-meta { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--ink-muted); margin-top:3px; }
.testi-date { font-size:8px; letter-spacing:1px; color:var(--ink-subtle); margin-top:2px; font-family:var(--font-mono); }

.testi-cta { display:flex; justify-content:center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding:140px 60px;
  display:grid; grid-template-columns:1fr 0.7fr 1fr;
  gap:60px; align-items:start; position:relative;
}
.contact::before { content:''; position:absolute; top:0; left:60px; right:60px; height:1px; background:var(--line); }

.contact-h2 {
  font-family:var(--font-display); font-size:clamp(36px,4vw,58px);
  font-weight:300; line-height:1.05; color:var(--ink); margin-bottom:28px;
}
.contact-h2 em { font-style:italic; color:var(--gold-light); }

.contact-info { margin-top:48px; display:flex; flex-direction:column; gap:0; }
.contact-info-item {
  display:flex; align-items:flex-start; gap:18px; padding:22px 0;
  border-bottom:1px solid var(--line); transition:background 0.2s;
}
.contact-icon-wrap {
  width:42px; height:42px; flex-shrink:0;
  border:1px solid var(--line-ink); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:14px; transition:background 0.3s, border-color 0.3s;
}
.contact-info-item:hover .contact-icon-wrap { background:var(--gold); color:#fff; border-color:var(--gold); }
.contact-info-text { display:flex; flex-direction:column; gap:4px; }
.contact-info-label { font-size:8px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); font-weight:600; }
.contact-info-val { font-family:var(--font-display); font-size:15px; font-weight:400; color:var(--ink); }
.contact-info-val a { color:var(--ink); text-decoration:none; transition:color 0.3s; }
.contact-info-val a:hover { color:var(--gold); }

.contact-social { display:flex; gap:14px; margin-top:40px; }
.social-btn {
  width:44px; height:44px; border:1px solid var(--line-ink); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--ink-mid); font-size:15px; text-decoration:none; transition:all 0.3s ease;
}
.social-btn:hover { background:var(--gold); border-color:var(--gold); color:#fff; transform:translateY(-3px); }

/* ── CAD Blueprint Column ── */
.contact-cad {
  display:flex; flex-direction:column; align-items:center;
  gap:16px; position:sticky; top:100px;
}
.contact-cad-label {
  font-size:7px; letter-spacing:4px; text-transform:uppercase;
  color:var(--gold); font-family:var(--font-body); font-weight:600;
}
.contact-cad-svg {
  width:100%; max-width:300px;
  color:var(--gold);
  opacity:0.75;
  filter:drop-shadow(0 0 12px rgba(200,146,58,0.18));
}
body.dark-mode .contact-cad-svg { opacity:0.9; filter:drop-shadow(0 0 18px rgba(200,146,58,0.28)); }
.contact-cad-tag {
  font-size:7px; letter-spacing:3px; text-transform:uppercase;
  color:var(--ink-muted); font-family:var(--font-mono);
}

/* CAD draw animations */
.ccad-draw  { animation:cadStroke1 2.2s ease 0.4s forwards; }
.ccad-draw2 { animation:cadStroke1 1.4s ease 1.2s forwards; }
.ccad-draw3 { animation:cadStroke1 0.9s ease 2s forwards; }
.ccad-label { animation:cadFade 0.6s ease 2.6s forwards; }
@keyframes cadStroke1 { to { stroke-dashoffset:0; } }
@keyframes cadFade    { to { opacity:0.7; } }

/* ── Form Column ── */
.contact-form { padding-top:8px; display:flex; flex-direction:column; }
.form-group { position:relative; margin-bottom:32px; }
.form-input {
  width:100%; background:transparent; border:none;
  border-bottom:1.5px solid var(--line-ink);
  padding:16px 0; font-family:var(--font-body);
  font-size:13px; font-weight:400; color:var(--ink);
  letter-spacing:0.5px; outline:none; transition:border-color 0.3s;
}
.form-input:focus { border-color:var(--gold); }
.form-input::placeholder { color:transparent; }
.form-label {
  position:absolute; top:16px; left:0;
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:var(--ink-mid); font-weight:500;
  transition:all 0.3s ease; pointer-events:none;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label { top:-8px; font-size:8px; color:var(--gold); }
.form-textarea { resize:none; min-height:100px; }

.btn-submit {
  align-self:flex-start; background:transparent;
  border:1px solid var(--ink-mid); color:var(--ink);
  font-family:var(--font-body); font-size:10px; font-weight:600;
  letter-spacing:3px; text-transform:uppercase; padding:18px 48px;
  cursor:none; position:relative; overflow:hidden;
  transition:color 0.4s ease, border-color 0.4s ease; margin-top:16px;
}
.btn-submit::before { content:''; position:absolute; inset:0; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform 0.4s ease; }
.btn-submit:hover::before { transform:scaleX(1); }
.btn-submit:hover { color:#fff; border-color:var(--gold); }
.btn-submit span { position:relative; z-index:1; }

.form-note { margin-top:12px; font-size:9px; letter-spacing:1px; color:var(--ink-mid); display:flex; align-items:center; gap:8px; font-weight:500; }
.form-note i { color:#25D366; font-size:13px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding:56px 60px; background:var(--footer-bg);
  border-top:1px solid var(--line-ink);
  display:flex; align-items:center; justify-content:space-between;
}
.footer-logo img { height:120px; width:auto; filter:var(--logo-filter); opacity:0.75; object-fit:contain; transition:filter 0.4s ease; margin-top: -45px; margin-left: -40px; margin-bottom: 0; }
.footer-center { font-family:var(--font-display); font-style:italic; font-size:16px; color:rgba(184,151,90,0.4); letter-spacing:1px; }
.footer-right { font-size:9px; letter-spacing:2px; color:var(--ink-muted); text-align:right; line-height:1.9; }
.footer-social { display:flex; gap:12px; justify-content:flex-end; margin-bottom:12px; }
.footer-social a {
  width:36px; height:36px; border:1px solid var(--line-ink); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--ink-muted); font-size:13px; text-decoration:none; transition:all 0.3s ease;
}
.footer-social a:hover { background:var(--gold); border-color:var(--gold); color:#fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.js-ready .reveal { opacity:0; transform:translateY(28px); transition:opacity 0.8s ease, transform 0.8s ease; }
.js-ready .reveal.visible { opacity:1; transform:translateY(0); }
.js-ready .reveal-delay-1 { transition-delay:0.15s; }
.js-ready .reveal-delay-2 { transition-delay:0.30s; }
.js-ready .reveal-delay-3 { transition-delay:0.45s; }

/* ============================================================
   SMOOTH TRANSITIONS
   ============================================================ */
.services, .marquee-section, .about, .contact, footer,
.service-card, .contact-form, .hero-desc, .contact-h2, .about-h2,
.testi-card, .gm-item { transition:background 0.4s ease, color 0.4s ease, border-color 0.4s ease; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes scrollPulse {
  0%, 100% { opacity:0.3; }
  50%       { opacity:1; }
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes cadScan {
  from { opacity: 0.2; }
  50%  { opacity: 0.5; }
  to   { opacity: 0.2; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-masonry { grid-template-columns:repeat(2,1fr); }
  .gm-wide { grid-column:span 2; }
  .testimonials-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 768px) {
  nav { padding:16px 24px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }

  .hero-content { padding:0 24px 80px; }
  .hero-scroll { right:24px; }

  .about { grid-template-columns:1fr; padding:80px 24px; gap:48px; }
  .about-number { display:none; }
  .about-right { display:none; }
  .about-stats { gap:24px; }

  .services { padding:80px 24px; }
  .services-header { flex-direction:column; align-items:flex-start; gap:16px; }
  .services-subtitle { text-align:left; }
  .services-grid { grid-template-columns:1fr; }

  .gallery-header { padding:60px 24px 32px; }
  .gallery-masonry { grid-template-columns:1fr 1fr; grid-auto-rows:200px; }
  .gm-wide { grid-column:span 2; }
  .gallery-slider-label { padding:32px 24px 16px; }

  .cad-section { padding:48px 0 40px; }

  .testimonials { padding:80px 24px; }
  .testi-bg-text { display:none; }
  .testimonials-grid { grid-template-columns:1fr; }
  .google-rating-inner { flex-direction:column; align-items:flex-start; gap:16px; }
  .gr-divider { display:none; }

  .contact { grid-template-columns:1fr; padding:80px 24px; gap:56px; }
  .contact-cad { display:none; }

  footer { flex-direction:column; gap:24px; text-align:center; padding:40px 24px; }
  .footer-right { text-align:center; }
  .footer-social { justify-content:center; }

  .proj-meta { left:24px; bottom:24px; }
  .proj-prev { left:12px; }
  .proj-next { right:12px; }
}

/* ============================================================
   NEW FOOTER
   ============================================================ */

/* =========================
   FOOTER
========================= */

/* ============================================================
   SITE FOOTER — 4-column layout matching reference design
   ============================================================ */
.site-footer {
    background: #0d1628;
    padding: 64px 60px 0;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.1fr 1.4fr;
    gap: 48px;
    align-items: flex-start;
    padding-bottom: 48px;
}

.footer-col {
    min-width: 0;
}

/* ── Col 1: Brand ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 4px;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footer-tagline {
    color: #9ba7b8;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: -40px;
    margin-bottom: 0px;
    line-height: 1.7;
}

/* App Store Badges */
.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
}

.footer-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-badge-img {
    height: 34px;
    width: 140px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-badge-img:hover { opacity: 1; }

.footer-badge-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #d6dce6;
    transition: background 0.2s;
}

.footer-badge-fallback:hover { background: rgba(255,255,255,0.14); }
.footer-badge-fallback i { font-size: 16px; color: #fff; }

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 60px;
}

.footer-social a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover { color: var(--gold); }

/* ── Col headings ── */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 22px;
    color: #fff;
}

/* ── Col 2: Quick Links ── */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #9ba7b8;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.25s;
}

.footer-links ul li a:hover { color: #fff; }

/* ── Col 3: Location ── */
.footer-location p {
    color: #9ba7b8;
    font-size: 13.5px;
    line-height: 1.9;
}

.footer-location p strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

/* ── Col 4: Find Us / Map ── */
.footer-findus {}

.footer-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
    width: 100%;
    height: 190px;
    border: none;
    display: block;
}

/* ── Footer Bottom bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    color: #5a6478;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ── Mobile ── */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 48px 24px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-map {
        max-width: 100%;
    }
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section {
  padding: 80px 40px;
  background: var(--bg-section, #f9f9f9);
}
.packages-header {
  text-align: center;
  margin-bottom: 50px;
}
.packages-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
  margin-bottom: 12px;
}
.packages-header p {
  color: var(--ink-muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}
.packages-divider {
  width: 60px;
  height: 3px;
  background: #C9A84C;
  margin: 20px auto 0;
  border-radius: 2px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.package-card {
  background: var(--bg, #fff);
  border: 2px solid #c8923a;
  box-shadow: 0 8px 32px rgba(200,146,58,0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  border-color: #c8923a;
  box-shadow: 0 4px 24px rgba(200,146,58,0.15);
}
.package-title {
  background: linear-gradient(135deg, #c8923a 0%, #a0721e 100%);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.package-card.featured .package-title { background: linear-gradient(135deg, #c8923a 0%, #a0721e 100%); color: #1a1608; }
.package-body {
  flex: 1;
  padding: 0;
}
.pkg-category {
  border-bottom: 1px solid #eee;
}
.pkg-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 13px;
  color: #00bcd4;
  cursor: pointer;
  font-weight: 500;
  user-select: none;
}
.pkg-cat-header:hover { background: #f0fbfc; }
.pkg-list {
  display: none;
  padding: 0 20px 14px;
  margin: 0;
  list-style: none;
}
.pkg-list.show { display: block; }
.pkg-list li {
  font-size: 12px;
  color: var(--ink-muted, #555);
  padding: 4px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.6;
}
/* ============================================================
   SERVICES IMAGE GRID
   ============================================================ */
.svc-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 60px 80px;
}
.svc-img-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.svc-img-card:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.svc-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 0;
  background: var(--bg-section);
  border-bottom: 1px solid var(--line-ink);
}
.svc-img-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}
.svc-img-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 16px 10px;
  flex: 1;
}
.svc-num-tag {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: 2px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 3px 6px;
  white-space: nowrap;
  margin-top: 2px;
}
.svc-img-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.svc-img-desc {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.svc-img-btn {
  display: block;
  padding: 12px 16px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-top: 1px solid var(--line-ink);
  transition: background 0.3s, color 0.3s;
  font-family: var(--font-body);
}
.svc-img-btn:hover {
  background: var(--gold);
  color: #fff;
}
@media(max-width:1100px) { .svc-img-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 60px; } }
@media(max-width:600px)  { .svc-img-grid { grid-template-columns: 1fr; padding: 0 16px 40px; } }

/* ============================================================
   COMMITMENTS SECTION
   ============================================================ */
.commitments-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px;
  background: var(--bg-section);
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.commit-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--ink);
  margin: 12px 0 36px;
  line-height: 1.1;
}
.commit-h2 em { font-style: italic; color: var(--gold-light); }
.commit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-ink);
}
.commit-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.commit-hash {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  margin-top: -4px;
  flex-shrink: 0;
}
.commit-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.commit-desc {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.8;
}
.commit-svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line-ink);
}
@media(max-width:900px) {
  .commitments-section { grid-template-columns: 1fr; padding: 60px 24px; }
  .commitments-right { display: none; }
}

/* ============================================================
   PACKAGES SECTION — themed to Varna Space
   ============================================================ */
.packages-section {
  padding: 80px 60px;
  background: var(--bg);
}
.packages-header {
  text-align: center;
  margin-bottom: 56px;
}
.packages-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--ink);
  margin: 12px 0 14px;
  line-height: 1.1;
}
.packages-header h2 em { font-style: italic; color: var(--gold-light); }
.packages-header p { font-size: 13px; color: var(--ink-muted); letter-spacing: 0.5px; }
.packages-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.package-card {
  background: var(--bg-card);
  border: 2px solid #c8923a;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(200,146,58,0.15);
}
.pkg-badge {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--ink-muted);
  padding: 10px 20px 0;
  font-weight: 500;
}
.pkg-badge.popular {
  color: var(--gold);
  font-weight: 600;
}
.pkg-badge.premium {
  color: var(--gold-dark);
  font-weight: 600;
}
.package-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  padding: 8px 20px 16px;
  border-bottom: 1px solid var(--line-ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.pkg-price {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-body);
}
.pkg-price small { font-size: 11px; color: #ffffff; font-weight: 300; }
.package-body { flex: 1; }
.pkg-category { border-bottom: 1px solid var(--line-ink); }
.pkg-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-mid);
  cursor: pointer;
  font-weight: 500;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.pkg-cat-header i { color: var(--gold); font-size: 10px; flex-shrink: 0; }
.pkg-cat-header:hover { background: var(--gold-subtle); color: var(--gold); }
.pkg-toggle {
  font-size: 16px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: auto;
}
.pkg-list {
  display: none;
  padding: 4px 20px 12px 36px;
  margin: 0;
  list-style: none;
}
.pkg-list.show { display: block; }
.pkg-list li {
  font-size: 11px;
  color: var(--ink-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--line-ink);
  line-height: 1.5;
  position: relative;
}
.pkg-list li::before {
  content: '·';
  color: var(--gold);
  position: absolute;
  left: -14px;
}
.btn-pkg {
  display: block;
  background: linear-gradient(135deg, #c8923a 0%, #a0721e 100%);
  color: #1a1608;
  text-align: center;
  padding: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-family: var(--font-body);
  text-transform: uppercase;
  margin-top: auto;
}
.btn-pkg:hover { background: linear-gradient(135deg, #a0721e 0%, #7a5210 100%); color: #fff; }
.btn-pkg.gold { background: var(--gold); color: #fff; }
.btn-pkg.gold:hover { background: var(--gold-dark); }
body.dark-mode .btn-pkg { background: var(--gold-subtle); color: var(--gold); border-top: 1px solid var(--gold); }
body.dark-mode .btn-pkg:hover { background: var(--gold); color: #fff; }
body.light-mode .btn-pkg { background: linear-gradient(135deg, #c8923a 0%, #a0721e 100%); color: #1a1608; }
body.light-mode .btn-pkg:hover { background: linear-gradient(135deg, #a0721e 0%, #7a5210 100%); color: #fff; }
@media(max-width:900px) { .packages-grid { grid-template-columns: 1fr; max-width: 480px; } .packages-section { padding: 60px 20px; } }

/* ============================================================
   ESTIMATE CALCULATOR IN CONTACT
   ============================================================ */
.estimate-box {
  background: var(--bg-section);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 24px;
  margin-bottom: 28px;
}
.estimate-box-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.est-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}
.est-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.est-field input,
.est-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-ink);
  background: var(--bg-card);
  color: var(--ink);
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
  border-radius: 2px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.est-field input:focus,
.est-field select:focus { border-color: var(--gold); }
.est-result {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold);
  border-radius: 2px;
  margin-top: 8px;
}
.est-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: var(--font-body);
  white-space: nowrap;
}
.est-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  font-weight: 500;
}
.est-note {
  font-size: 9px;
  color: var(--ink-subtle);
  letter-spacing: 0.5px;
  flex: 1;
  min-width: 120px;
}
.form-select {
  appearance: none;
  cursor: pointer;
  color-scheme: light;
}
.form-select option,
.form-select optgroup {
  background-color: #ffffff;
  color: #1a1a1a;
}
.form-label-select {
  top: 14px !important;
}
@media(max-width:600px) { .est-row { grid-template-columns: 1fr; } }

/* duplicate footer block removed — see .site-footer above */
.architect-profile {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  gap: 60px;
  padding:  40px 60px;
  background: var(--bg-section);
  border: 1px solid var(--line);
}
.founder-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.architect-info {
  flex: 1;
}
.architect-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
}

.architect-img-wrap {
  width: 340px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.architect-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.architect-role {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.architect-profile .section-label {
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.architect-imgs {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.architect-img-name {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 8px;
  letter-spacing: 1px;
}