/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #333; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; text-align: center; margin-bottom: 16px; color: #1a1a2e; }
.section-subtitle { text-align: center; color: #666; font-size: 1.1rem; max-width: 600px; margin: 0 auto 48px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 1rem; transition: all 0.3s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: #c8a35a; color: #fff; border-color: #c8a35a; }
.btn-primary:hover { background: #b8933a; border-color: #b8933a; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #1a1a2e; }
.btn-nav { padding: 10px 24px; background: #c8a35a; color: #fff; border-radius: 6px; }
.btn-nav:hover { background: #b8933a; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* Header */
.header { background: #1a1a2e; padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; }
.logo-accent { color: #c8a35a; }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a { color: #ccc; font-weight: 500; transition: color 0.3s; }
.nav-list a:hover, .nav-list a.active { color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c8a35a" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom; background-size: cover; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.hero p { color: #ccc; font-size: 1.2rem; margin-bottom: 32px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Services */
.services { background: #f9f9f9; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.service-card { background: #fff; padding: 32px; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: #1a1a2e; }
.service-card p { color: #666; font-size: 0.95rem; }
.services-list { background: #fff; padding: 32px; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.services-list h3 { font-size: 1.3rem; margin-bottom: 20px; color: #1a1a2e; text-align: center; }
.services-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.services-columns ul { list-style: none; }
.services-columns li { padding: 6px 0; color: #555; position: relative; padding-left: 20px; }
.services-columns li::before { content: '✓'; position: absolute; left: 0; color: #c8a35a; font-weight: bold; }

/* Process */
.process-preview { background: #1a1a2e; color: #fff; }
.process-preview .section-title { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.process-step { text-align: center; padding: 32px; }
.step-number { width: 60px; height: 60px; background: #c8a35a; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; }
.process-step h3 { margin-bottom: 12px; font-size: 1.2rem; }
.process-step p { color: #aaa; font-size: 0.95rem; }

/* Testimonials */
.testimonials { background: #f9f9f9; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial { background: #fff; padding: 32px; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); border-left: 4px solid #c8a35a; }
.testimonial p { color: #555; font-style: italic; line-height: 1.8; }

/* CTA */
.cta { background: linear-gradient(135deg, #c8a35a, #b8933a); color: #fff; text-align: center; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 12px; }
.cta p { font-size: 1.1rem; margin-bottom: 32px; opacity: 0.9; }
.cta .btn-primary { background: #1a1a2e; border-color: #1a1a2e; }
.cta .btn-primary:hover { background: #2d2d44; border-color: #2d2d44; }
.cta .btn-outline { border-color: #fff; color: #fff; }
.cta .btn-outline:hover { background: #fff; color: #c8a35a; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: #1a1a2e; color: #aaa; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col .logo-text { display: block; margin-bottom: 16px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a:hover { color: #c8a35a; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #1a1a2e; padding: 20px; gap: 16px; }
  .nav-list.open { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero { min-height: 450px; }
  .services-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .services-columns { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 2rem; }
  .section { padding: 60px 0; }
}

/* Page Hero */
.page-hero { background: #1a1a2e; padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #fff; margin-bottom: 12px; }
.page-hero p { color: #aaa; font-size: 1.1rem; }

/* About */
.about-content { max-width: 800px; margin: 0 auto; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #1a1a2e; margin: 32px 0 16px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: #555; margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; }
.about-features { margin-top: 20px; }
.about-features li { padding: 10px 0 10px 28px; position: relative; color: #555; font-size: 1.05rem; }
.about-features li::before { content: '✓'; position: absolute; left: 0; color: #c8a35a; font-weight: bold; font-size: 1.2rem; }

/* Process Detail */
.process-detail-step { display: flex; gap: 32px; margin-bottom: 48px; align-items: flex-start; }
.step-number-lg { min-width: 80px; height: 80px; background: #c8a35a; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.process-detail-step h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #1a1a2e; margin-bottom: 12px; }
.process-detail-step p { color: #555; margin-bottom: 12px; line-height: 1.8; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #1a1a2e; margin-bottom: 12px; }
.contact-info > p { color: #666; margin-bottom: 32px; }
.contact-item { margin-bottom: 24px; }
.contact-item h3 { font-size: 1rem; margin-bottom: 6px; color: #1a1a2e; }
.contact-item p { color: #555; }
.contact-item a { color: #c8a35a; }
.contact-item a:hover { text-decoration: underline; }
.contact-form { background: #f9f9f9; padding: 40px; border-radius: 12px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: #333; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #c8a35a; }

/* .htaccess rewrites */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .process-detail-step { flex-direction: column; align-items: center; text-align: center; }
  .page-hero h1 { font-size: 2.2rem; }
}
