/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #2A2D31; background: #F3EEE6; line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', sans-serif; line-height: 1.3; }
a { color: inherit; text-decoration: none; }
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 { background: #202224; padding: 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #3a3d41; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.header-logo a { font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 700; color: #F7F4EE; letter-spacing: -0.5px; }
.header-logo span { color: #BE9B68; }
.header-contact { display: flex; align-items: center; gap: 20px; }
.header-contact a { color: #F7F4EE; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.header-contact a:hover { color: #BE9B68; }
.header-contact svg { width: 16px; height: 16px; fill: #BE9B68; }

/* Navigation */
.main-nav { background: #2D3135; border-top: 1px solid #3a3d41; }
.nav-list { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; gap: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 14px 18px; color: #F7F4EE; font-size: 0.92rem; font-weight: 500; transition: color 0.3s, background 0.3s; }
.nav-list > li > a:hover, .nav-list > li.active > a { color: #BE9B68; background: rgba(190,155,104,0.08); }

/* Dropdown */
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 240px; background: #202224; border: 1px solid #3a3d41; border-radius: 0 0 8px 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.3s ease; z-index: 100; padding: 8px 0; box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.nav-list > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { opacity: 0; transform: translateX(-10px); transition: opacity 0.3s ease, transform 0.3s ease; }
.nav-list > li:hover .dropdown-menu li { opacity: 1; transform: translateX(0); }
.nav-list > li:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.nav-list > li:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.nav-list > li:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.nav-list > li:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.nav-list > li:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.nav-list > li:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.3s; }
.nav-list > li:hover .dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
.nav-list > li:hover .dropdown-menu li:nth-child(8) { transition-delay: 0.4s; }
.nav-list > li:hover .dropdown-menu li:nth-child(9) { transition-delay: 0.45s; }
.nav-list > li:hover .dropdown-menu li:nth-child(10) { transition-delay: 0.5s; }
.dropdown-menu a { display: block; padding: 10px 20px; color: #F7F4EE; font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.dropdown-menu a:hover { color: #BE9B68; padding-left: 26px; }

/* Dropdown arrow */
.has-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid #BE9B68; margin-left: 6px; vertical-align: middle; transition: transform 0.3s; }
.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Mobile Menu Toggle */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: #F7F4EE; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.mobile-close-btn { display: none; }
.mobile-nav-contact { display: none; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(32,34,36,0.88) 0%, rgba(32,34,36,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: 2.8rem; color: #F7F4EE; margin-bottom: 20px; font-weight: 800; }
.hero-text h1 span { color: #BE9B68; }
.hero-text p { color: rgba(247,244,238,0.85); font-size: 1.1rem; margin-bottom: 30px; max-width: 520px; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; background: #BE9B68; color: #202224; padding: 16px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; }
.hero-cta svg { width: 20px; height: 20px; flex-shrink: 0; fill: #202224; }
.hero-cta:hover { background: #A98756; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(190,155,104,0.3); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: #202224; color: #F7F4EE; }
.section-alt { background: #2D3135; color: #F7F4EE; }
.section-light { background: #F3EEE6; color: #2A2D31; }
.section-title { font-size: 2rem; margin-bottom: 16px; font-weight: 700; }
.section-subtitle { font-size: 1.05rem; opacity: 0.8; margin-bottom: 40px; max-width: 600px; }
.section-title span { color: #BE9B68; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: #2D3135; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #3a3d41; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; color: #F7F4EE; }
.card-body p { font-size: 0.92rem; color: rgba(247,244,238,0.7); margin-bottom: 16px; }
.card-link { color: #BE9B68; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s; }
.card-link:hover { gap: 8px; }

/* Light card variant */
.card-light { background: #fff; border: 1px solid #e8e3dc; }
.card-light .card-body h3 { color: #2A2D31; }
.card-light .card-body p { color: #555; }

/* ===== CTA BLOCKS ===== */
.cta-block { background: #BE9B68; padding: 40px; border-radius: 12px; text-align: center; margin: 40px 0; }
.cta-block h3 { color: #202224; font-size: 1.5rem; margin-bottom: 12px; }
.cta-block p { color: #2A2D31; margin-bottom: 20px; }
.cta-block .btn { background: #202224; color: #F7F4EE; padding: 14px 28px; border-radius: 10px; font-weight: 600; display: inline-block; transition: background 0.3s, transform 0.2s; }
.cta-block .btn:hover { background: #2D3135; transform: translateY(-2px); }

/* ===== FORM ===== */
.feedback-form-container { background: #2D3135; padding: 36px; border-radius: 12px; border: 1px solid #3a3d41; max-width: 520px; }
.feedback-form-container h3 { color: #F7F4EE; font-size: 1.4rem; margin-bottom: 20px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; background: #202224; border: 1px solid #3a3d41; border-radius: 8px; color: #F7F4EE; font-size: 0.92rem; font-family: 'Inter', sans-serif; transition: border-color 0.3s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(247,244,238,0.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #BE9B68; }
.contact-form textarea { min-height: 100px; resize: vertical; }
.form-submit { text-align: center; margin-top: 8px; }
.submit-btn { background: #BE9B68; color: #202224; border: none; padding: 15px 40px; border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; font-family: 'Inter', sans-serif; }
.submit-btn:hover { background: #A98756; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(190,155,104,0.3); }
#form-success { text-align: center; padding: 30px; }
#form-success p { color: #BE9B68; font-size: 1.1rem; font-weight: 500; }
#form-success-modal { text-align: center; padding: 30px; }
#form-success-modal p { color: #BE9B68; font-size: 1.1rem; font-weight: 500; }

/* ===== MAP ===== */
.map-container { border-radius: 12px; overflow: hidden; border: 1px solid #3a3d41; margin-top: 30px; }
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== FOOTER ===== */
.site-footer { background: #202224; border-top: 1px solid #3a3d41; padding: 60px 0 30px; color: #F7F4EE; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(247,244,238,0.7); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-col h4 { color: #BE9B68; font-size: 0.95rem; margin-bottom: 16px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(247,244,238,0.7); font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: #BE9B68; }
.footer-bottom { border-top: 1px solid #3a3d41; padding-top: 24px; text-align: center; color: rgba(247,244,238,0.5); font-size: 0.85rem; }

/* ===== STICKY BUTTON ===== */
.sticky-quote-btn { position: fixed; bottom: 24px; right: 24px; background: #BE9B68; color: #202224; padding: 16px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; box-shadow: 0 8px 32px rgba(190,155,104,0.4); z-index: 999; transition: background 0.3s, transform 0.2s; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.sticky-quote-btn:hover { background: #A98756; transform: translateY(-3px); }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-content { position: relative; max-width: 560px; width: 100%; animation: modalIn 0.3s ease; }
.modal-close { position: absolute; top: -12px; right: -12px; width: 36px; height: 36px; background: #BE9B68; color: #202224; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: background 0.3s; z-index: 10; }
.modal-close:hover { background: #A98756; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { position: relative; padding: 100px 0 60px; background: #202224; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; opacity: 0.3; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #F7F4EE; font-size: 2.4rem; margin-bottom: 12px; }
.page-hero p { color: rgba(247,244,238,0.8); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; }
.breadcrumb a { color: #BE9B68; }
.breadcrumb span { color: rgba(247,244,238,0.5); }

/* ===== CONTENT BLOCKS ===== */
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.6rem; margin-bottom: 16px; color: #2A2D31; }
.content-section h3 { font-size: 1.25rem; margin-bottom: 12px; color: #2A2D31; }
.content-section p { margin-bottom: 16px; color: #444; }
.content-section ul, .content-section ol { margin-bottom: 16px; padding-left: 20px; }
.content-section ul li, .content-section ol li { margin-bottom: 8px; color: #444; list-style: disc; }
.content-section ol li { list-style: decimal; }
.section-dark .content-section h2 { color: #F7F4EE; }
.section-dark .content-section p { color: rgba(247,244,238,0.8); }

/* FAQ */
.faq-item { background: #2D3135; border: 1px solid #3a3d41; border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #F7F4EE; font-weight: 600; font-size: 1rem; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: #BE9B68; transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: rgba(247,244,238,0.75); font-size: 0.92rem; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: #2D3135; border-radius: 12px; padding: 30px; border: 1px solid #3a3d41; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-item svg { width: 22px; height: 22px; fill: #BE9B68; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { color: #F7F4EE; font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: rgba(247,244,238,0.7); font-size: 0.9rem; }
.contact-info-item a:hover { color: #BE9B68; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-img { border-radius: 12px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }

/* ===== SERVICE AREAS LIST ===== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.area-card { background: #2D3135; border: 1px solid #3a3d41; border-radius: 10px; padding: 20px; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.area-card:hover { transform: translateY(-4px); border-color: #BE9B68; }
.area-card h3 { color: #F7F4EE; font-size: 1rem; margin-bottom: 6px; }
.area-card p { color: rgba(247,244,238,0.6); font-size: 0.82rem; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-top { padding: 10px 16px; }
  .header-contact { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Mobile nav */
  .main-nav { position: fixed; top: 0; right: -100%; width: 50%; height: 100vh; background: #202224; z-index: 9999; transition: right 0.4s ease; overflow-y: auto; padding: 60px 0 30px; border-left: 1px solid #3a3d41; }
  .main-nav.active { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 0; gap: 0; }
  .nav-list > li > a { padding: 16px 24px; border-bottom: 1px solid #3a3d41; text-align: left; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; border: none; border-radius: 0; box-shadow: none; background: #2D3135; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0; }
  .nav-list > li.dropdown-open .dropdown-menu { max-height: 600px; padding: 8px 0; }
  .dropdown-menu li { opacity: 1; transform: none; }
  .dropdown-menu a { padding: 12px 24px 12px 36px; text-align: left; }
  .has-dropdown > a::after { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
  .nav-list > li { position: relative; }
  
  /* Mobile close button */
  .mobile-close-btn { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: #BE9B68; border: none; border-radius: 50%; color: #202224; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; }
  
  /* Mobile contact info in nav */
  .mobile-nav-contact { display: block; padding: 20px 24px; border-top: 1px solid #3a3d41; margin-top: 20px; }
  .mobile-nav-contact a { display: flex; align-items: center; gap: 10px; color: #F7F4EE; font-size: 0.9rem; margin-bottom: 12px; }
  .mobile-nav-contact svg { width: 16px; height: 16px; min-width: 16px; min-height: 16px; max-width: 16px; max-height: 16px; fill: #BE9B68; }
  
  .hero { min-height: 70vh; }
  .hero-text h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .sticky-quote-btn { bottom: 16px; right: 50%; transform: translateX(50%); }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-3px); }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .feedback-form-container { padding: 24px 16px; }
}

/* Mobile overlay */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; display: none; }
.mobile-overlay.active { display: block; }
