*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: #464646; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
@media (max-width: 768px) { .container { padding: 0 16px; } }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 16px; font-weight: 500; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background: #A4896D; color: #fff; }
.btn-primary:hover { background: #8E7A5C; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #A4896D; background: #A4896D; }
.section { padding: 100px 0; }
.section-dark { background: #202714; color: #fff; }
.text-center { text-align: center; }
.section-title { font-size: 42px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { font-size: 18px; color: #808285; max-width: 600px; margin-bottom: 48px; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section-divider { width: 48px; height: 2px; background: #C7B19A; margin: 0 auto 16px; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s; }
.header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; color: #464646; transition: color 0.2s; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #A4896D; transition: width 0.2s; }
.nav a:hover, .nav a.active { color: #A4896D; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta { background: #A4896D; color: #fff !important; padding: 10px 24px; border-radius: 6px; font-weight: 600; }
.nav-cta:hover { background: #8E7A5C; color: #fff !important; }
.nav-cta::after { display: none !important; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { width: 24px; height: 2px; background: #202714; border-radius: 2px; transition: all 0.3s; }
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
}

.hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; background: #1a1a1a; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('../assets/img/hero-bg.jpg') center/cover no-repeat; opacity: 0.5; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; display: flex; flex-direction: column; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(164,137,109,0.15); color: #C7B19A; padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; margin-bottom: 24px; border: 1px solid rgba(164,137,109,0.25); }
.hero-title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; max-width: 720px; }
.hero-title span { color: #C7B19A; }
.hero-text { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 640px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: #fff; border: 1px solid rgba(0,0,0,0.04); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px -20px rgba(0,0,0,0.15); }
.service-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.service-icon img { width: 72px; height: 72px; object-fit: contain; }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: #202714; }
.service-card p { font-size: 15px; color: #808285; line-height: 1.65; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 992px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: #fff; border: 1px solid rgba(0,0,0,0.04); border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s; color: #202714; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px -20px rgba(0,0,0,0.15); }
.why-card .icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: #f2f2f2; border-radius: 14px; margin: 0 auto 16px; font-size: 22px; color: #A4896D; }
.why-card h4 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 15px; color: #808285; line-height: 1.6; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; }
.stats-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(0,0,0,0.06); }
.stats-item:last-child { border-right: none; }
.stats-number { font-size: 40px; font-weight: 700; color: #202714; }
.stats-label { font-size: 14px; color: #808285; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.section-dark .stats-number { color: #C7B19A; }
.section-dark .stats-label { color: rgba(255,255,255,0.6); }
.section-dark .stats-item { border-color: rgba(255,255,255,0.08); }
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; } .stats-item:nth-child(2) { border-right: none; } .stats-number { font-size: 30px; } }

.image-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.image-grid-2 img { border-radius: 12px; width: 100%; height: 400px; object-fit: cover; }
@media (max-width: 768px) { .image-grid-2 { grid-template-columns: 1fr; gap: 16px; } .image-grid-2 img { height: 280px; } }

.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 24px; }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; gap: 32px; } }
.testimonial-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); text-align: center; }
.testimonial-text { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-name { font-size: 16px; font-weight: 600; color: #202714; }
.testimonial-stars { color: #f59e0b; margin-bottom: 12px; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-img { border-radius: 12px; width: 100%; height: auto; }
.accordion { background: #f5f5f5; border-radius: 0; margin-bottom: 8px; box-shadow: 0 3px 12px rgba(0,0,0,0.04); }
.accordion-header { padding: 16px 16px 16px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 16px; color: #202714; gap: 12px; }
.accordion-header i { transition: transform 0.3s; font-size: 14px; color: #808285; flex-shrink: 0; }
.accordion.active .accordion-header i { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.accordion.active .accordion-body { max-height: 300px; }
.accordion-body-inner { padding: 0 20px 16px; font-size: 15px; color: #666; line-height: 1.6; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: '+'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(32,39,20,0.5); color: #fff; font-size: 40px; font-weight: 300; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }

.cta-section { background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../assets/img/cta-bg.jpg') center/cover no-repeat; padding: 120px 0; text-align: center; }
.cta-section h2 { font-size: 42px; color: #fff; margin-bottom: 24px; }

.page-hero { position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/img/page-hero-bg.jpg') center/cover no-repeat; padding-top: 80px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); color: #fff; font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.7; }

.footer { background: #202714; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; transition: color 0.2s; }
.footer ul li a:hover { color: #C7B19A; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: rgba(255,255,255,0.6); }
.footer-social a:hover { border-color: #A4896D; background: #A4896D; color: #fff; }

.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 24px; font-weight: 600; margin-bottom: 16px; color: #202714; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: #f2f2f2; display: flex; align-items: center; justify-content: center; color: #A4896D; font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: #202714; }
.contact-info-item p { font-size: 15px; color: #808285; line-height: 1.5; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #202714; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid #e2e2e2; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color 0.2s; color: #464646; background: #fff; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #A4896D; box-shadow: 0 0 0 3px rgba(164,137,109,0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
.service-page-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s; }
.service-page-card:hover { transform: translateY(-4px); }
.service-page-card img { width: 100%; height: 240px; object-fit: cover; }
.service-page-card-body { padding: 24px; }
.service-page-card-body h3 { font-size: 22px; font-weight: 600; color: #202714; margin-bottom: 8px; }
.service-page-card-body p { font-size: 15px; color: #808285; line-height: 1.65; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .hero { min-height: 100vh; padding: 100px 24px 60px; }
  .hero-content { padding: 0; }
}
