* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Times New Roman", serif;
  color: #f5f1e8;
  background: #050505;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28);
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 42%);
  z-index: -1;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  width: min(1280px, 94%);
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
}

.center-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.center-nav a {
  color: #f3e7c2;
  font-size: 15px;
  letter-spacing: 0.7px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.center-nav a:hover {
  color: #d4af37;
  transform: translateY(-1px);
}

.nav-logo-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d4af37;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.nav-sub-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.nav-sub {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #f5f1e8;
}

.top-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px 80px;
}

.hero-box {
  width: min(900px, 94%);
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 18px 60px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.hero-title-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  letter-spacing: 8px;
  color: #d4af37;
  line-height: 1;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.14);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.hero-divider span {
  width: 100px;
  max-width: 20vw;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.hero-divider h2 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  letter-spacing: 6px;
  font-weight: 400;
  color: #f4ead0;
}

.hero-tagline {
  margin-top: 24px;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #f8f3e8;
}

section {
  width: min(1280px, 94%);
  margin: 0 auto 34px;
}

.services-section,
.owner-section,
.trust-section,
.reviews-section,
.contact-section {
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 24px;
  padding: 58px 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.section-title,
.services-heading {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  color: #d4af37;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 55%);
}

.service-content {
  padding: 28px 24px 26px;
}

.service-content h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.service-content p {
  color: #f5f0e7;
  margin-bottom: 16px;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.service-content li {
  margin-bottom: 8px;
  color: #efe7d6;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f1d17a);
  color: #111;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.service-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.24);
}

.btn-icon {
  font-size: 1rem;
  line-height: 1;
}

.owner-box {
  width: 100%;
}

.owner-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.owner-profile-photo {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.owner-bio {
  color: #f5f0e7;
}

.owner-name-heading {
  font-family: Georgia, "Times New Roman", serif;
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 6px;
}

.owner-role-line {
  color: #f0dfb0;
  font-style: italic;
  margin-bottom: 18px;
}

.owner-bio p {
  margin-bottom: 16px;
}

.owner-subtitle {
  color: #d4af37;
  font-size: 1.1rem;
  margin: 22px 0 12px;
  letter-spacing: 0.5px;
}

.brand-statement {
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid #d4af37;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 0 16px 16px 0;
  color: #f7f1e4;
  font-size: 1.08rem;
}

.trust-box,
.lead-form-wrap,
.review-card {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.93), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.trust-box {
  max-width: 950px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 28px 24px;
  text-align: center;
}

.review-stars {
  font-size: 1.4rem;
  color: #d4af37;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.review-card p {
  color: #f6f0e3;
  margin-bottom: 14px;
}

.review-name {
  color: #ebd89c;
  font-size: 0.95rem;
}

.reviews-action {
  text-align: center;
  margin-top: 28px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.lead-form-wrap {
  max-width: 1000px;
  margin: 0 auto 28px;
  padding: 32px 26px;
}

.lead-form-title {
  color: #d4af37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
  text-align: center;
}

.lead-form-subtitle {
  text-align: center;
  color: #f4ecdc;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  margin-bottom: 8px;
  color: #f0dfb0;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.bottom-contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
  color: #f7edd2;
  font-size: 1rem;
}

.bottom-contact-bar a {
  color: #f7edd2;
  transition: color 0.3s ease;
}

.bottom-contact-bar a:hover {
  color: #d4af37;
}

.business-address-wrap {
  margin-top: 14px;
  text-align: center;
}

.business-address {
  display: inline-block;
  color: #d4af37;
  font-size: 0.98rem;
  line-height: 1.75;
  letter-spacing: 0.4px;
  padding: 10px 18px;
  border-radius: 14px;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.business-address:hover {
  color: #f5d97a;
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.contact-note {
  text-align: center;
  margin-top: 18px;
  color: #dfd4ba;
  font-size: 0.98rem;
}

@media (max-width: 1100px) {
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .owner-layout {
    grid-template-columns: 1fr;
  }

  .owner-profile-photo {
    max-width: 380px;
    margin: 0 auto;
  }

  .nav-container {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
  }

  .center-nav {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    min-height: 70vh;
  }

  .hero-box,
  .services-section,
  .owner-section,
  .trust-section,
  .reviews-section,
  .contact-section {
    padding: 36px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-main {
    letter-spacing: 5px;
  }

  .nav-main {
    font-size: 1.7rem;
  }

  .top-logo {
    height: 56px;
  }

  .center-nav a {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .hero-divider {
    gap: 10px;
  }

  .hero-divider span {
    width: 55px;
  }

  .service-content {
    padding: 24px 18px 22px;
  }

  .bottom-contact-bar {
    flex-direction: column;
    gap: 6px;
  }

  .bottom-contact-bar span {
    display: none;
  }

  .business-address {
    font-size: 0.93rem;
    padding: 8px 10px;
  }
}