:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --gold: #f0a830;
  --gold-2: #d99a1f;
  --silver: #c9cdd1;
  --text: #f5f5f2;
  --text-dim: #b9b9b4;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

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

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

h1, h2, h3, .brand-word {
  font-family: 'Anton', 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gold { color: var(--gold); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(240,168,48,0.25);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-logo img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.topbar-logo span {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.topbar-actions {
  display: flex;
  gap: 10px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(240,168,48,0.5);
  color: var(--gold);
  transition: transform 0.15s ease, background 0.15s ease;
}

.icon-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.icon-btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 60px 48px;
  background:
    radial-gradient(ellipse at top left, rgba(240,168,48,0.08), transparent 55%),
    var(--black);
}

.hero-logo {
  width: 220px;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dim);
  max-width: 360px;
  line-height: 1.5;
}

.hero-tagline b { color: var(--text); }
.hero-tagline .gold { font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(240,168,48,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.35);
}

.hero-right {
  position: relative;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 5%, rgba(0,0,0,0.1) 45%);
}

.hero-caption {
  position: absolute;
  left: 8%;
  bottom: 36px;
  z-index: 2;
  max-width: 420px;
}

.hero-caption h2 {
  font-size: 2.1rem;
  line-height: 1.05;
  color: var(--text);
}

.hero-caption h2 .gold { display: block; font-size: 2.3rem; }

.hero-caption p {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  color: var(--silver);
  margin-top: 6px;
  font-size: 1.05rem;
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--black);
}

.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ---------- Services ---------- */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: rgba(240,168,48,0.4);
  border: 1px solid rgba(240,168,48,0.4);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--black-2);
  padding: 30px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease;
}

.service-card:hover { background: var(--black-3); }

.service-card svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 0.95rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ---------- Why us ---------- */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.02rem;
}

.why-list svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.why-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--black-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(240,168,48,0.25);
}

.why-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.why-card-text {
  padding: 14px 12px 18px;
}

.why-card-text h4 {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.why-card-text p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ---------- Contact bar ---------- */
.contact-bar {
  background: var(--black-2);
  border-top: 1px solid rgba(240,168,48,0.25);
  border-bottom: 1px solid rgba(240,168,48,0.25);
  padding: 28px 0;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  max-width: 100%;
  min-width: 0;
}

.contact-link > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-link .circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #1a1200;
  flex-shrink: 0;
}

.contact-link .circle svg { width: 20px; height: 20px; }

.contact-link small {
  display: block;
  font-weight: 400;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.contact-link:hover .circle { transform: scale(1.08); }

/* ---------- Bottom CTA ---------- */
.bottom-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  padding: 22px 0;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.bottom-cta p {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
}

.bottom-cta a {
  background: #1a1200;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  padding: 12px 30px;
  border-radius: 50px;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: transform 0.15s ease;
}

.bottom-cta a:hover { transform: translateY(-2px); }

footer {
  text-align: center;
  padding: 18px;
  font-size: 0.75rem;
  color: var(--text-dim);
  background: var(--black);
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 60;
  animation: pulse 2.2s infinite;
}

.float-wa svg { width: 30px; height: 30px; color: #fff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { clip-path: none; }
  .hero-right img { min-height: 340px; }
  .hero-left { padding: 44px 24px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-wrap { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img:nth-child(3) { display: none; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-photos { grid-template-columns: 1fr; }
  .hero-caption h2 { font-size: 1.6rem; }
  .hero-caption h2 .gold { font-size: 1.8rem; }
  .contact-inner { gap: 18px; flex-direction: column; align-items: stretch; padding-left: 0; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img:nth-child(3) { display: block; }
  .topbar-inner { padding: 8px 14px; }
  .topbar-logo { gap: 6px; min-width: 0; }
  .topbar-logo span { font-size: 0.85rem; white-space: nowrap; }
  .topbar-logo img { height: 34px; width: 34px; }
  .topbar-actions { gap: 6px; flex-shrink: 0; }
  .icon-btn { width: 32px; height: 32px; }
  .icon-btn svg { width: 15px; height: 15px; }
  .hero-cta .btn { padding: 11px 18px; font-size: 0.85rem; }
}
