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

:root {
  --gold: #c9a227;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #666666;
  --accent: #c9a227;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* ===== BUTTONS ===== */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
}
.cta-btn:hover { background: #e0b830; transform: translateY(-2px); }

.cta-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.cta-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid-gray);
  margin-bottom: 2.5rem;
}

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  gap: 1rem;
}

.header-logo {
  height: 56px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

.header-cta { font-size: 0.9rem; padding: 0.6rem 1.3rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--charcoal);
  padding: 1rem 1.5rem;
}
.mobile-nav ul { list-style: none; }
.mobile-nav li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-nav .cta-btn { display: inline-block; margin-top: 0.5rem; }
.mobile-nav.open { display: block; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
}

/* Subtle texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 3rem 1.5rem;
}

.hero-logo {
  width: min(320px, 80vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICES ===== */
#services {
  padding: 5rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-card.featured {
  border-left-color: var(--gold);
  background: var(--dark);
  color: var(--white);
}
.service-card.featured p { color: rgba(255,255,255,0.75); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ===== ABOUT / WHY CHOOSE US ===== */
#about {
  padding: 5rem 0;
  background: var(--light-gray);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-logo img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* ===== OUR WORK ===== */
#work {
  padding: 5rem 0;
  background: var(--dark);
  color: var(--white);
}

#work .section-title { color: var(--white); }
#work .section-sub { color: rgba(255,255,255,0.6); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  grid-column: 1 / -1;
  background: var(--charcoal);
  border-radius: 12px;
  border: 2px dashed rgba(201,162,39,0.4);
  padding: 4rem 2rem;
  text-align: center;
}

.placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.play-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.7;
}

.video-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

/* ===== CONTACT ===== */
#contact {
  padding: 5rem 0;
  background: var(--white);
}

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

.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.contact-list a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-list a:hover { color: var(--dark); }

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.map-wrap iframe { display: block; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  height: 70px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.85rem;
}
.footer-copy a { color: var(--gold); }

/* ===== GOOGLE REVIEWS ===== */
#reviews {
  padding: 5rem 0;
  background: var(--light-gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-cta {
  background: var(--dark);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.reviews-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.reviews-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-dark {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.cta-dark:hover { background: var(--gold); color: var(--dark); }

/* ===== SERVICE AREAS ===== */
#service-areas {
  padding: 4rem 0;
  background: var(--dark);
  color: var(--white);
}

#service-areas .section-title { color: var(--white); }
#service-areas .section-sub { color: rgba(255,255,255,0.6); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.area-chip {
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
}

.areas-note {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}

.areas-note a {
  color: var(--gold);
  font-weight: 600;
}

/* ===== FAQ ===== */
#faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover { background: var(--light-gray); }
.faq-question[aria-expanded="true"] { background: var(--light-gray); color: var(--gold); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.97rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FAQ DEDICATED PAGE ===== */
#faq-hero {
  background: var(--dark);
  padding: 4rem 0 3rem;
  text-align: center;
}

.faq-hero-inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.faq-hero-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-hero-inner a {
  color: var(--gold);
  font-weight: 600;
}

#faq-page {
  padding: 4rem 0 5rem;
  background: var(--light-gray);
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-cat-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201,162,39,0.25);
}

.faq-page-cta {
  background: var(--dark);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
  color: var(--white);
}

.faq-page-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.faq-page-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.faq-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-outline-dark {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.cta-outline-dark:hover { background: var(--gold); color: var(--dark); }

/* ===== CHATBOT ===== */
#chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

#chat-bubble {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
}
#chat-bubble:hover { background: #e0b830; transform: translateY(-3px); }

#chat-bubble-icon { font-size: 1.2rem; }

#chat-window {
  width: 340px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 520px;
}

#chat-header {
  background: var(--dark);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-logo {
  height: 36px;
  width: auto;
  border-radius: 6px;
}

.chat-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.chat-status {
  font-size: 0.75rem;
  color: #4caf50;
  letter-spacing: 0.03em;
}

#chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.2s;
}
#chat-close:hover { color: var(--white); }

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f9f9f9;
}

.chat-msg {
  max-width: 88%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.chat-msg.bot {
  background: var(--dark);
  color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--gold);
  color: var(--dark);
  align-self: flex-end;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

#chat-footer {
  padding: 0.75rem;
  background: var(--white);
  border-top: 1px solid #eee;
}

#chat-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-opt-btn {
  background: var(--light-gray);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
  display: block;
}
.chat-opt-btn:hover { background: #ececec; border-color: var(--gold); }

.chat-opt-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.chat-opt-cta:hover { background: #e0b830; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-logo { order: -1; }
  .about-logo img { max-width: 300px; }
}

@media (max-width: 700px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: block; }

  #hero { min-height: 80vh; }

  .services-grid { grid-template-columns: 1fr; }

  .video-grid { grid-template-columns: 1fr; }
}
