/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f0e0b;
  --bg-light: #1a1815;
  --bg-secondary: #141310;
  --gold: #c9a84c;
  --gold-light: #dbc278;
  --gold-dark: #a68632;
  --ivory: #e8e0cc;
  --ivory-muted: #8a7e6a;
  --border: #2a2620;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(26, 24, 21, 0.6);
  --glass-border: rgba(201, 168, 76, 0.15);
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold); }

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 200px;
  margin: 2rem auto 0;
}

.mini-divider {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(201, 168, 76, 0.05);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}

.btn-full { width: 100%; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(232, 224, 204, 0.7);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s;
}

.nav-cta:hover {
  filter: brightness(1.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1rem;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(15,14,11,0.85), rgba(15,14,11,0.5));
}

.hero-content {
  position: relative;
  width: 100%;
  padding: 8rem 1.5rem 4rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 1200px;
    padding: 8rem 1.5rem 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(232, 224, 204, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(232, 224, 204, 0.4);
}

.hero-location svg { color: var(--gold); }

/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: rgba(232, 224, 204, 0.55);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  padding: 5rem 0 6rem;
  background: var(--bg-secondary);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

.service-card:last-child { margin-bottom: 0; }

.service-image {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-image:hover img { transform: scale(1.05); }

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-content p {
  color: rgba(232, 224, 204, 0.65);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .service-card {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .service-card--reverse { flex-direction: row-reverse; }
  .service-image img { height: 380px; }
  .service-image, .service-content { flex: 1; }
}

/* ===== WHY US ===== */
.why-us {
  padding: 5rem 0 6rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }

.reason-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.5s ease;
}

.reason-card:hover { box-shadow: var(--shadow-gold); }

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.reason-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: rgba(232, 224, 204, 0.55);
  font-size: 0.875rem;
}

.outcall-advantage {
  margin-top: 4rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

@media (min-width: 1024px) { .outcall-advantage { padding: 3rem; } }

.outcall-advantage h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.outcall-advantage p {
  color: rgba(232, 224, 204, 0.65);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ===== TRUST ===== */
.trust {
  padding: 5rem 0 6rem;
  background: var(--bg-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
}

.trust-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.trust-card p {
  color: rgba(232, 224, 204, 0.65);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) { .trust-badges { grid-template-columns: repeat(4, 1fr); } }

.trust-badge {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--gold);
}

.trust-badge svg { margin: 0 auto 0.75rem; }

.trust-badge span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(232, 224, 204, 0.75);
}

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-intro {
  color: rgba(232, 224, 204, 0.55);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s;
}

.contact-item:hover .contact-item-icon { background: rgba(201, 168, 76, 0.2); }

.contact-item strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.contact-item span {
  font-size: 0.875rem;
  color: rgba(232, 224, 204, 0.55);
}

.contact-highlight {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 1.1rem !important;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* Glass Form */
.glass-form {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.glass-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: rgba(232, 224, 204, 0.45);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(232, 224, 204, 0.75);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 14, 11, 0.5);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-grid h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-grid h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid li {
  color: rgba(232, 224, 204, 0.45);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li { margin-bottom: 0.5rem; }

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

.footer-grid svg {
  display: inline;
  vertical-align: middle;
  color: var(--gold);
  margin-right: 0.5rem;
}

.footer-copy {
  text-align: center;
  color: rgba(232, 224, 204, 0.25);
  font-size: 0.75rem;
  margin-top: 2rem;
}

/* ===== STICKY CALL (MOBILE) ===== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(201, 168, 76, 0.3);
}

@media (max-width: 768px) { .sticky-call { display: flex; } }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 80;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover { background: rgba(201, 168, 76, 0.25); }

@media (min-width: 769px) { .scroll-top { bottom: 2rem; } }

/* ===== MOBILE PADDING FOR STICKY ===== */
@media (max-width: 768px) {
  .contact { padding-bottom: 8rem; }
  .site-footer { padding-bottom: 5rem; }
}
