/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #18191C;
  color: #FFFFFF;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', sans-serif; font-weight: 700; line-height: 1.3; }
a { color: #C47A52; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #AD6541; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(24, 25, 28, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 122, 82, 0.15);
  padding: 0 20px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo a {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}
.logo span { color: #C47A52; }
.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.85rem;
}
.header-contact a {
  color: #F5F5F3;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-contact a:hover { color: #C47A52; }
.header-contact svg { width: 16px; height: 16px; fill: #C47A52; }

/* ===== NAVIGATION ===== */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 10px 16px;
  color: #F5F5F3;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a {
  background: rgba(196, 122, 82, 0.12);
  color: #C47A52;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #26282C;
  border: 1px solid rgba(196, 122, 82, 0.2);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-list > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { opacity: 0; transform: translateX(-8px); animation: dropdownItem 0.3s ease forwards; }
.dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(7) { animation-delay: 0.35s; }
.dropdown-menu li:nth-child(8) { animation-delay: 0.4s; }
.dropdown-menu li:nth-child(9) { animation-delay: 0.45s; }
.dropdown-menu li:nth-child(10) { animation-delay: 0.5s; }
.dropdown-menu li:nth-child(11) { animation-delay: 0.55s; }
@keyframes dropdownItem {
  to { opacity: 1; transform: translateX(0); }
}
.nav-list > li:not(:hover) > .dropdown-menu li { animation: none; opacity: 0; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #F5F5F3;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(196, 122, 82, 0.1);
  color: #C47A52;
  padding-left: 26px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F5F3;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  height: 100vh;
  background: #1E1F23;
  z-index: 2000;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav-overlay.active {
  display: flex;
  transform: translateX(0);
}
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.mobile-nav-backdrop.active { display: block; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close svg { width: 24px; height: 24px; stroke: #F5F5F3; }
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-list > li > a {
  display: block;
  padding: 14px 16px;
  color: #F5F5F3;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-align: left;
  transition: background 0.2s;
}
.mobile-nav-list > li > a:hover { background: rgba(196, 122, 82, 0.12); color: #C47A52; }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  color: #F5F5F3;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  text-align: left;
  transition: background 0.2s;
}
.mobile-dropdown-toggle:hover { background: rgba(196, 122, 82, 0.12); color: #C47A52; }
.mobile-dropdown-toggle svg {
  width: 16px; height: 16px;
  stroke: #C47A52;
  transition: transform 0.3s;
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-sub-menu {
  display: none;
  padding-left: 16px;
  flex-direction: column;
  gap: 2px;
}
.mobile-sub-menu.open { display: flex; }
.mobile-sub-menu a {
  display: block;
  padding: 10px 16px;
  color: #aaa;
  font-size: 0.9rem;
  border-radius: 6px;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}
.mobile-sub-menu a:hover { color: #C47A52; background: rgba(196, 122, 82, 0.08); }
.mobile-nav-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-contact a {
  color: #F5F5F3;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-contact svg { width: 16px; height: 16px; fill: #C47A52; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(24,25,28,0.85) 0%, rgba(24,25,28,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text h1 span { color: #C47A52; }
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 500px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: #C47A52;
  color: #18191C;
}
.btn-primary:hover {
  background: #AD6541;
  color: #18191C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 122, 82, 0.3);
}
.btn-outline {
  background: transparent;
  color: #C47A52;
  border: 2px solid #C47A52;
}
.btn-outline:hover {
  background: #C47A52;
  color: #18191C;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section-dark { background: #18191C; }
.section-alt { background: #26282C; }
.section-light { background: #F5F5F3; color: #202327; }
.section-light h2, .section-light h3 { color: #202327; }
.section-light p { color: #3a3d42; }
.section-light a { color: #C47A52; }
.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
}
.section-light .section-subtitle { color: #555; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== CARDS ===== */
.card {
  background: #26282C;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.section-light .card {
  background: #FFFFFF;
  border: 1px solid #e8e8e6;
}
.section-light .card p { color: #555; }

/* ===== FORM STYLES ===== */
.feedback-form-container {
  background: #26282C;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(196, 122, 82, 0.2);
}
.feedback-form-container h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #FFFFFF;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 0; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #18191C;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C47A52;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 16px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-submit { margin-top: 8px; }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #C47A52;
  color: #18191C;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover {
  background: #AD6541;
  transform: translateY(-2px);
}
#form-success {
  text-align: center;
  padding: 30px;
}
#form-success p {
  color: #C47A52;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ===== MAP ===== */
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(196, 122, 82, 0.2);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== CTA BLOCKS ===== */
.cta-block {
  background: linear-gradient(135deg, #26282C 0%, #1E1F23 100%);
  border: 1px solid rgba(196, 122, 82, 0.2);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111214;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(196, 122, 82, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 12px; }
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #C47A52;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-col ul li a:hover { color: #C47A52; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: 16px 28px;
  background: #C47A52;
  color: #18191C;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(196, 122, 82, 0.4);
  transition: background 0.3s, transform 0.2s;
}
.sticky-quote-btn:hover {
  background: #AD6541;
  transform: translateY(-3px);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #1E1F23;
  border-radius: 16px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(196, 122, 82, 0.2);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg { width: 20px; height: 20px; stroke: #F5F5F3; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1E1F23 0%, #18191C 100%);
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== CONTENT BLOCKS ===== */
.content-block { margin-bottom: 48px; }
.content-block h2 { font-size: 1.8rem; margin-bottom: 16px; color: #FFFFFF; }
.content-block h3 { font-size: 1.3rem; margin-bottom: 12px; color: #C47A52; }
.content-block p { color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.content-block ul, .content-block ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.content-block ul li, .content-block ol li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  padding-left: 8px;
}
.content-block ul li::before {
  content: "▪";
  color: #C47A52;
  margin-right: 8px;
}
.content-block ol { list-style: decimal; }
.content-block ol li { list-style: decimal; }

.section-light .content-block h2 { color: #202327; }
.section-light .content-block h3 { color: #C47A52; }
.section-light .content-block p { color: #3a3d42; }
.section-light .content-block ul li,
.section-light .content-block ol li { color: #3a3d42; }

/* ===== FAQ ===== */
.faq-item {
  background: #26282C;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: #C47A52;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ===== AREAS LIST ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.area-link {
  display: block;
  padding: 14px 18px;
  background: #26282C;
  border-radius: 8px;
  color: #F5F5F3;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, color 0.3s;
  text-align: center;
}
.area-link:hover { border-color: #C47A52; color: #C47A52; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 30px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-list { display: none; }
  .mobile-toggle { display: block; }
  .header-contact { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 40px; }
  .page-hero h1 { font-size: 2rem; }
  .sticky-quote-btn {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-3px); }
  .mobile-nav-overlay { width: 70%; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .mobile-nav-overlay { width: 80%; }
  .feedback-form-container { padding: 24px; }
}
