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

:root {
  --gold: #D4A017;
  --gold-dark: #B8860B;
  --gold-light: #F0C040;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,160,23,0.35); }
.btn-primary.btn-large { font-size: 1.1rem; padding: 16px 36px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.popup-overlay.hidden { display: none; }

.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: slideUp 0.35s ease;
}

.popup-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.popup-box h2 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}
.popup-box h2 span { color: var(--gold); }
.popup-box p { color: var(--gray); margin-bottom: 28px; font-size: 1rem; }

.btn-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 8px;
  width: 100%;
  transition: var(--transition);
}
.btn-popup svg { width: 22px; height: 22px; }
.btn-popup:hover { background: var(--gold-dark); transform: translateY(-2px); }

.popup-sub { font-size: 0.8rem; color: var(--gray); margin-top: 14px; margin-bottom: 0; }

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-light);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.popup-close:hover { background: #e5e7eb; color: var(--dark); }

/* ── FLOAT BUTTON ── */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 30px rgba(212,160,23,0.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.float-call svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-call:hover { background: var(--gold-dark); transform: translateY(-3px); animation: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  padding: 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
}
.nav-logo svg { width: 28px; height: 28px; fill: var(--gold); flex-shrink: 0; }
.nav-logo strong { font-weight: 800; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 9px 18px !important;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.12) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 28px;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }
.stat strong { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── WHY STRIP ── */
.why-strip {
  background: var(--dark);
  padding: 28px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.why-item:last-child { border-right: none; }
.why-item svg { width: 32px; height: 32px; fill: var(--gold); flex-shrink: 0; }
.why-item div { display: flex; flex-direction: column; }
.why-item strong { color: var(--white); font-size: 0.9rem; font-weight: 700; }
.why-item span { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 2px; }

/* ── SECTION ── */
.section { padding: 88px 0; }
.section-alt { background: var(--gray-light); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-header p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; }

/* ── SERVICES ── */
.services-category { margin-bottom: 60px; }
.services-category:last-child { margin-bottom: 0; }

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-light);
}
.category-title svg { width: 26px; height: 26px; fill: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212,160,23,0.15);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}
.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-cta {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-cta:hover { color: var(--dark); gap: 8px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1208 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,160,23,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ── SERVICE AREA ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}
.area-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.area-item:hover { border-color: var(--gold); background: rgba(212,160,23,0.04); }

/* ── HOURS ── */
.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hours-info .section-tag { margin-bottom: 16px; display: inline-block; }
.hours-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.hours-info p { color: var(--gray); margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }

.hours-table {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.day { font-weight: 600; color: var(--dark); }
.time { color: var(--gray); font-weight: 500; }
.time.open { color: #16a34a; font-weight: 700; }

/* ── FOOTER ── */
.footer {
  background: var(--dark-2);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  text-align: center;
}
.footer-bottom a { color: var(--gold); }

/* ── HERO IMAGE LAYOUT ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(212,160,23,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}
.hero-img-badge svg { width: 18px; height: 18px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(212,160,23,0.5); }
  50% { box-shadow: 0 6px 44px rgba(212,160,23,0.75); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--large { grid-column: span 2; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--large { grid-column: span 2; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-cta { text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 16px; padding: 16px; }
  .stat { padding: 0 12px; }
  .stat-divider { display: none; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hours-layout { grid-template-columns: 1fr; gap: 36px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }

  .float-call span { display: none; }
  .float-call { padding: 16px; border-radius: 50%; width: 58px; height: 58px; justify-content: center; }

  .popup-box { padding: 40px 24px 32px; }
  .popup-box h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item--large { grid-column: span 2; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
}
