/* ============================================================
   OLYMPIA — PREMIUM UPGRADE LAYER
   Full cinematic, luxury-contractor design system
   ============================================================ */

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

/* ─── PREMIUM VARIABLES ─── */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c46e;
  --gold-dark: #9a7b2e;
  --gold-glow: rgba(201,168,76,0.18);
  --gold-glow-strong: rgba(201,168,76,0.32);
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --white: #ffffff;
  --off-white: #f0ece4;
  --gray: #6e6e6e;
  --gray-light: #b0b0b0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
  --spring: cubic-bezier(0.16,1,0.3,1);
}

/* ─── GLOBAL BACKGROUND TEXTURE ─── */
body {
  background: var(--black);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201,168,76,0.03) 0%, transparent 50%);
}

/* ─── PREMIUM SECTION HEADER SYSTEM ─── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-label::before { right: calc(100% + 10px); }
.section-label::after  { left:  calc(100% + 10px); }

.gold-line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 24px;
  transition: width 1.2s var(--spring);
}
.gold-line.visible, .section-header.visible .gold-line { width: 56px; }
.gold-line:not(.centered) { margin-left: 0; }

/* h2 reveal */
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, #fff 0%, rgba(240,236,228,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  clip-path: inset(0 0 0 0);
}
.section-header p {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.75;
}

/* ─── SCROLL REVEAL SYSTEM ─── */
.fade-up   { opacity: 0; transform: translateY(48px); transition: opacity 0.8s var(--spring), transform 0.8s var(--spring); }
.fade-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.8s var(--spring), transform 0.8s var(--spring); }
.fade-right{ opacity: 0; transform: translateX(48px);  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring); }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.65s !important; }

/* ─── PREMIUM SERVICE CARDS — full redesign ─── */
.services-overview { background: var(--dark); position: relative; overflow: hidden; }
.services-overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.service-card {
  background: var(--dark2);
  padding: 40px 28px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.4s var(--spring);
  cursor: default;
  display: flex;
  flex-direction: column;
}
/* Top gold accent line — draws across on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--spring);
}
.service-card:hover::after { transform: scaleX(1); }

/* Bottom diagonal shine on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--dark3); transform: translateY(-4px); }

/* Card number */
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.2); }

/* Icon */
.service-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  background: rgba(201,168,76,0.05);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 16px rgba(201,168,76,0.2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

/* Gold link at bottom */
.service-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.service-card:hover .service-card-link { color: var(--gold); gap: 10px; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}

/* ─── WHY OLYMPIA — PREMIUM ─── */
.why-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.5) 50%, rgba(201,168,76,0.3) 70%, transparent 100%);
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.5) 50%, rgba(201,168,76,0.3) 70%, transparent 100%);
}
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.why-image-stack { position: relative; display: block; }
.why-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.9) contrast(1.05);
}
.why-accent-img {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.why-badge {
  position: absolute;
  top: -16px; left: -16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  padding: 18px 20px;
  border-radius: 2px;
  text-align: center;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
}
.why-badge .big {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.02);
  transition: all 0.35s ease;
}
.why-point:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  transform: translateX(6px);
}
.why-point-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1px;
}
.why-point-text h4 { font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; color: var(--white); margin-bottom: 3px; }
.why-point-text p { font-size: 0.83rem; color: var(--gray); line-height: 1.55; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-stack { display: none; }
}

/* ─── FEATURED PROJECTS — PREMIUM ─── */
.featured-projects { background: var(--dark2); position: relative; overflow: hidden; }
.featured-projects::before {
  content: 'WORK';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.featured-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--dark3);
}
.featured-item:nth-child(1) { grid-column: span 7; }
.featured-item:nth-child(2) { grid-column: span 5; }
.featured-item:nth-child(3) { grid-column: span 4; }
.featured-item:nth-child(4) { grid-column: span 4; }
.featured-item:nth-child(5) { grid-column: span 4; }

.featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s var(--spring), filter 0.5s ease;
  filter: brightness(0.88);
}
.featured-item:nth-child(1) .featured-img { height: 420px; }
.featured-item:hover .featured-img { transform: scale(1.06); filter: brightness(0.95); }

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 45%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.featured-item:hover .featured-overlay { opacity: 1; }

.featured-label {
  background: var(--gold);
  color: var(--black);
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .featured-item:nth-child(1) { grid-column: span 2; }
  .featured-item:nth-child(2), .featured-item:nth-child(3),
  .featured-item:nth-child(4), .featured-item:nth-child(5) { grid-column: span 1; }
  .featured-img, .featured-item:nth-child(1) .featured-img { height: 200px; }
}
@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-item:nth-child(1) { grid-column: span 1; }
}

/* ─── TRUST CARDS — PREMIUM ─── */
.trust-section { background: var(--dark); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.06); }
.trust-card {
  background: var(--dark2);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.4s ease, transform 0.4s var(--spring);
  position: relative;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--spring);
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-card:hover { background: var(--dark3); transform: translateY(-4px); }
.trust-card .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.05);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: all 0.4s ease;
}
.trust-card:hover .icon-wrap {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 24px rgba(201,168,76,0.2);
}
.trust-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; letter-spacing: 0.02em; }
.trust-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.65; }

@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

/* ─── CTA SECTION — PREMIUM ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
  background: var(--dark2);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(201,168,76,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 55%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { max-width: 480px; margin: 0 auto 44px; font-size: 1.05rem; color: var(--gray-light); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 10px; margin-top: 28px; justify-content: center; flex-wrap: wrap; }
.cta-phone a { color: rgba(201,168,76,0.8); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.3s ease; }
.cta-phone a:hover { color: var(--gold); }
.cta-phone .sep { color: rgba(255,255,255,0.15); }

/* ─── FOOTER — PREMIUM ─── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 56px; margin-bottom: 18px; object-fit: contain; border-radius: 4px; }
.footer-brand p { font-size: 0.85rem; color: var(--gray); max-width: 240px; line-height: 1.75; }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--gray); transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.85rem; color: var(--gray); transition: color 0.3s ease; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(201,168,76,0.6); transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ─── CHAT WIDGET — PREMIUM REDESIGN ─── */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.chat-popup {
  width: 300px;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.45s var(--spring);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.08);
}
.chat-popup.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.chat-popup-header {
  background: linear-gradient(135deg, #101010 0%, #1a1a14 100%);
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.chat-popup-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}
.chat-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--black);
  padding: 4px;
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.chat-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #5edf8b;
  letter-spacing: 0.03em;
}
.chat-online-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5edf8b;
  box-shadow: 0 0 6px #5edf8b;
  animation: onlinePulse 2.5s ease-in-out infinite;
}
@keyframes onlinePulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.chat-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: var(--gray-light);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.chat-close:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); color: var(--gold); }

.chat-popup-body { padding: 16px; }
.chat-message {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px 8px 8px 3px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gray-light);
}
.chat-message strong { color: var(--white); }
.chat-actions { display: flex; flex-direction: column; gap: 7px; }
.chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.chat-btn:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.35); color: var(--white); }
.chat-btn-icon { font-size: 1rem; flex-shrink: 0; }

.chat-toggle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--black);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.2);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  animation: chatRing 4s ease-in-out 16s infinite;
}
@keyframes chatRing {
  0%,100%{box-shadow: 0 8px 28px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0)}
  50%{box-shadow: 0 8px 28px rgba(201,168,76,0.5), 0 0 0 10px rgba(201,168,76,0)}
}
.chat-toggle:hover { transform: scale(1.08) rotate(-8deg); box-shadow: 0 12px 36px rgba(201,168,76,0.6); }

@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 14px; }
  .chat-popup { width: calc(100vw - 28px); max-width: 320px; border-radius: 10px; }
  .chat-toggle { width: 50px; height: 50px; }
}

/* ─── GALLERY PAGE — PREMIUM ─── */
.gallery-page { background: var(--black); }
.gallery-filters {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--gray-light); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--spring), filter 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.95) saturate(1.05); }
.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 6px;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-item-label {
  background: var(--gold);
  color: var(--black);
  padding: 4px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  align-self: flex-start;
}
.gallery-zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.8);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ─── LIGHTBOX — PREMIUM ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.9);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ─── CONTACT FORM — PREMIUM ─── */
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group select option { background: var(--dark2); }
.form-submit {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.4); transform: translateY(-2px); }

.contact-info-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
  padding: 36px 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.contact-info-card:hover { border-color: rgba(201,168,76,0.25); }
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 2px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-info-item:hover .info-icon { background: rgba(201,168,76,0.12); box-shadow: 0 0 16px rgba(201,168,76,0.2); }
.info-text h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(201,168,76,0.7); margin-bottom: 4px; }
.info-text a, .info-text p { font-size: 0.9rem; color: var(--gray-light); display: block; transition: color 0.3s ease; }
.info-text a:hover { color: var(--gold); }

/* ─── NAVBAR — PREMIUM ─── */
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 4px 24px rgba(0,0,0,0.4);
}
.nav-links a { font-size: 0.78rem; letter-spacing: 0.14em; }

/* ─── PAGE HERO — INNER PAGES ─── */
.page-hero {
  position: relative;
  height: 42vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  animation: heroKen 14s ease-out both;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 60%, rgba(8,8,8,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 56px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .section-label { margin-bottom: 10px; }
.page-hero-content h1 { margin-bottom: 10px; }
.page-hero-content p { font-size: 1rem; max-width: 480px; color: rgba(255,255,255,0.65); }

/* ─── PROCESS STEPS — PREMIUM ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.process-step {
  background: var(--dark2);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}
.process-step:hover { background: var(--dark3); }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.12);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step-icon { font-size: 1.4rem; margin-bottom: 12px; }
.process-step h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: 0.02em; }
.process-step p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; }

@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; } }

/* ─── SERVICE DETAIL — PREMIUM ─── */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.service-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}
.service-section:last-child::before { display: none; }
.service-section.reverse { direction: rtl; }
.service-section.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.9);
  transition: filter 0.4s ease;
}
.service-section:hover .service-detail-img { filter: brightness(0.95); }
.service-detail-text h2 { margin-bottom: 18px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.service-detail-text p { margin-bottom: 24px; font-size: 0.93rem; line-height: 1.75; }

@media (max-width: 768px) {
  .service-section { grid-template-columns: 1fr; gap: 32px; }
  .service-section.reverse { direction: ltr; }
}

/* ─── AREAS TAGS — PREMIUM ─── */
.area-tag {
  padding: 7px 16px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 1px;
  font-size: 0.8rem;
  color: var(--gray-light);
  cursor: default;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

/* ─── VIDEO SECTION — PREMIUM ─── */
.video-section { background: var(--dark2); position: relative; overflow: hidden; }
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.12);
}
.video-wrapper video { width: 100%; display: block; aspect-ratio: 9/16; max-height: 70vh; object-fit: cover; background: var(--dark2); }
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}
.video-play-overlay:hover { background: rgba(8,8,8,0.1); }
.video-play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
  transition: transform 0.35s var(--spring);
}
.video-play-overlay:hover .play-btn { transform: scale(1.1); }

/* ─── FAQ — PREMIUM ─── */
.faq-item { transition: background 0.3s ease; }
.faq-q { transition: color 0.3s ease; }
.faq-q:hover { color: rgba(255,255,255,0.9); }
.faq-icon { transition: transform 0.35s var(--spring); }
.faq-a { transition: max-height 0.45s var(--spring); }

/* ─── BEFORE/AFTER ─── */
.before-after-section { background: var(--dark2); }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-item { position: relative; overflow: hidden; border-radius: 2px; }
.ba-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.88); transition: filter 0.4s ease; }
.ba-item:hover .ba-img { filter: brightness(0.95); }
.ba-label {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
}
.ba-label.before { background: rgba(0,0,0,0.6); color: var(--gray-light); border: 1px solid rgba(255,255,255,0.15); }
.ba-label.after  { background: var(--gold); color: var(--black); }

@media (max-width: 540px) { .before-after-grid { grid-template-columns: 1fr; } }

/* ─── STATS NUMBERS ─── */
.stat-number {
  font-feature-settings: 'tnum';
  letter-spacing: -0.02em;
}

/* ─── GLOBAL GOLD DIVIDER ─── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
  margin: 0;
}

/* ─── STAGGER UTILITY ─── */
.stagger-children > * { opacity: 0; transform: translateY(32px); }
.stagger-children.visible > *:nth-child(1) { animation: fadeStagger 0.7s var(--spring) 0.05s both; }
.stagger-children.visible > *:nth-child(2) { animation: fadeStagger 0.7s var(--spring) 0.15s both; }
.stagger-children.visible > *:nth-child(3) { animation: fadeStagger 0.7s var(--spring) 0.25s both; }
.stagger-children.visible > *:nth-child(4) { animation: fadeStagger 0.7s var(--spring) 0.35s both; }
.stagger-children.visible > *:nth-child(5) { animation: fadeStagger 0.7s var(--spring) 0.45s both; }
.stagger-children.visible > *:nth-child(6) { animation: fadeStagger 0.7s var(--spring) 0.55s both; }
.stagger-children.visible > *:nth-child(7) { animation: fadeStagger 0.7s var(--spring) 0.65s both; }
.stagger-children.visible > *:nth-child(8) { animation: fadeStagger 0.7s var(--spring) 0.75s both; }
@keyframes fadeStagger { to { opacity: 1; transform: translateY(0); } }

/* ─── SECTION BG ALTERNATION ─── */
section.bg-dark  { background: var(--dark) !important; }
section.bg-dark2 { background: var(--dark2) !important; }
section.bg-black { background: var(--black) !important; }

/* ─── RESPONSIVE CLEANUP ─── */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
  .cta-section { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: 1fr; gap: 1px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
}
