@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-black: #050505;
  --bg-card: #0f0f11;
  --bg-card-hover: #161619;
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(255, 107, 0, 0.35);
  
  --primary-orange: #ff6b00;
  --primary-orange-hover: #ff7d1a;
  --orange-glow: rgba(255, 107, 0, 0.28);
  --orange-btn-glow: 0 4px 20px rgba(255, 107, 0, 0.45);
  
  --text-white: #ffffff;
  --text-muted: #9496a1;
  --text-dim: #646672;
  
  --radius-full: 9999px;
  --radius-card: 20px;
  --radius-inner: 12px;
  --container-width: 1140px;
  
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-logo, .btn {
  font-family: var(--font-display);
}

.ambient-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 680px;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(ellipse 75% 55% at 50% -10%, var(--orange-glow), rgba(5, 5, 5, 0) 75%),
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
}

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

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #111114;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-inner);
  padding: 10px;
  width: 250px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 11px 24px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-orange {
  background: var(--primary-orange);
  color: #ffffff;
  box-shadow: var(--orange-btn-glow);
}

.btn-orange:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-1px);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-card);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon-circle {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.page-hero, .hero {
  padding: 80px 0 40px;
  text-align: center;
}

.badge-status, .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.page-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.text-gradient {
  background: linear-gradient(180deg, #ffffff 40%, #ff8533 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-orange { color: var(--primary-orange); }

.page-subtitle {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.showcase-wrapper {
  max-width: 980px;
  margin: 40px auto 0;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  background: #0d0d0f;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85);
}

.showcase-media {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.showcase-overlay-card {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(15, 15, 17, 0.88);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-inner);
  text-align: left;
  max-width: 260px;
}

.showcase-overlay-card .badge-top {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.showcase-overlay-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 4px 0 6px;
}

.section { padding: 70px 0; }

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-head h2 span { color: var(--primary-orange); }

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

.dark-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.25s ease;
}

.dark-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-3px);
}

.dark-card-body { padding: 26px; }

.card-step-badge {
  width: 28px;
  height: 28px;
  background: var(--primary-orange);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.rating-badge-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.rating-pill {
  background: #111114;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.rating-score {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.rating-stars {
  color: var(--primary-orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.google-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  border-left: 1px solid var(--border-card);
  padding-left: 20px;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.stat-pill-box {
  background: #111114;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-inner);
  padding: 20px;
  text-align: center;
}

.stat-pill-box h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.checklist-container {
  background: radial-gradient(circle at center, #201712 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 48px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #e4e4e7;
}

.checklist-item::before {
  content: "•";
  color: var(--primary-orange);
  font-size: 1.5rem;
  line-height: 0;
}

.split-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.split-card-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-inner);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon-circle {
  width: 24px;
  height: 24px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-content {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.open .faq-content {
  display: block;
}

.contact-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.contact-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 36px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  background: #08080a;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-inner);
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.map-embed-wrapper {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  height: 280px;
  overflow: hidden;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%);
}

.global-cta-section {
  padding: 50px 0 80px;
}

.cta-dark-card {
  background: radial-gradient(ellipse at center, #26160d 0%, #0f0f11 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 50px 24px;
  text-align: center;
}

.cta-dark-card h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0 8px;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.site-footer {
  background: #030304;
  border-top: 1px solid var(--border-card);
  padding: 60px 0 30px;
  font-size: 0.88rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-card);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ============================================================== */
/* EXACT DIAMOND SLIDER CSS */
/* ============================================================== */
.diamond-slider-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-black);
}

.diamond-viewport {
  position: relative;
  max-width: 1050px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-card {
  width: 360px;
  height: 360px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  position: absolute;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.95);
  background: var(--bg-card);
  transition: all 0.4s ease-in-out;
}

.diamond-card img {
  width: 155%;
  height: 155%;
  object-fit: cover;
  transform: rotate(-45deg) translate(-18%, -18%);
  transition: opacity 0.3s ease;
}

.diamond-card.left {
  left: 3%;
  top: 15%;
  z-index: 1;
}

.diamond-card.right {
  right: 3%;
  bottom: 15%;
  z-index: 1;
}

.diamond-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 480px;
  text-shadow: 0 4px 15px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,0.8);
}

.diamond-content .step {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.diamond-content h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.1;
}

.diamond-content p {
  font-size: 1.05rem;
  color: #e4e4e7;
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.slider-dot {
  width: 35px;
  height: 4px;
  background: #333;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--primary-orange);
}

@media (max-width: 992px) {
  .page-title { font-size: 2.6rem; }
  .grid-3, .split-card, .contact-split, .footer-main-grid, .stats-card-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .rating-pill { flex-direction: column; gap: 12px; }
  .google-btn-link { border-left: none; padding-left: 0; }
  
  .diamond-viewport {
    height: auto;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
  }
  .diamond-card {
    position: static;
    transform: none;
    width: 100%;
    height: 280px;
    border-radius: 16px;
  }
  .diamond-card img {
    width: 100%;
    height: 100%;
    transform: none;
  }
  .diamond-content {
    text-shadow: none;
    order: -1;
  }
  
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0d0d0f;
    border-bottom: 1px solid var(--border-card);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .main-nav.show { display: flex; }
}