@charset "UTF-8";
:root {
  --primary: #2d5016;
  --primary-light: #4a7c28;
  --primary-dark: #1a3009;
  --accent: #c4463a;
  --accent-light: #e06b5f;
  --rose: #d4756b;
  --rose-light: #f2e0dd;
  --cream: #faf8f5;
  --sage: #e8ede4;
  --sage-dark: #d4dccf;
  --dark: #1a1a1a;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --gold: #c9a84c;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 500; color: var(--dark); }

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

/* HEADER / NAV */
.header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.1); }
.nav { display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:1300px; margin:0 auto; }
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-icon { width:48px; height:48px; background: var(--primary); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.logo-icon i { color: var(--white); font-size:22px; }
.logo-text { display:flex; flex-direction:column; }
.logo-text .brand { font-family:'Playfair Display',serif; font-size:22px; font-weight:600; color: var(--primary-dark); letter-spacing:-0.5px; }
.logo-text .tagline { font-size:11px; color: var(--text-light); letter-spacing:1.5px; text-transform:uppercase; }

.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a { text-decoration:none; color: var(--text); font-size:14px; font-weight:500; letter-spacing:0.3px; transition:color 0.3s; position:relative; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--primary); transition:width 0.3s; }
.nav-links a:hover::after { width:100%; }
.nav-cta { background: var(--primary); color: var(--white) !important; padding:10px 24px; border-radius:6px; font-weight:600; letter-spacing:0.5px; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--primary-light) !important; color:var(--white) !important; }

.mobile-toggle { display:none; background:none; border:none; font-size:24px; color:var(--dark); cursor:pointer; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #3d6b1f 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=1600&q=80') center/cover;
  opacity: 0.2;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,48,9,0.85), rgba(45,80,22,0.7), rgba(26,48,9,0.6));
}
.hero-content {
  position: relative; z-index:2;
  max-width: 1300px; margin: 0 auto;
  padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-left h1 {
  font-size: 56px; line-height: 1.1; color: var(--white);
  margin-bottom: 24px; font-weight: 600;
}
.hero-left h1 span { color: var(--gold); display:block; font-style:italic; font-family:'Lora',serif; font-weight:400; font-size:48px; }
.hero-left p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height:1.8; max-width:520px; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--accent); color: var(--white);
  padding: 14px 32px; border-radius:6px; text-decoration:none;
  font-weight:600; font-size:15px; letter-spacing:0.5px;
  transition: all 0.3s; border:none; cursor:pointer;
}
.btn-primary:hover { background: var(--accent-light); transform:translateY(-2px); box-shadow:0 8px 25px rgba(196,70,58,0.3); }
.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius:6px; text-decoration:none;
  font-weight:600; font-size:15px; letter-spacing:0.5px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-right {
  display:flex; flex-direction:column; gap:16px;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 24px;
  display:flex; align-items:center; gap:16px;
  transition: transform 0.3s, background 0.3s;
}
.hero-card:hover { transform:translateX(8px); background: rgba(255,255,255,0.15); }
.hero-card-icon {
  width:52px; height:52px; border-radius:10px;
  background: rgba(201,168,76,0.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hero-card-icon i { color: var(--gold); font-size:22px; }
.hero-card h3 { color:var(--white); font-size:16px; margin-bottom:4px; font-family:'Inter',sans-serif; font-weight:600; }
.hero-card p { color:rgba(255,255,255,0.7); font-size:13px; line-height:1.5; }

/* TRUST BAR */
.trust-bar {
  background: var(--primary-dark);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}
.trust-inner {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  max-width:1200px; margin:0 auto; padding:0 24px;
}
.trust-item { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,0.9); font-size:14px; font-weight:500; }
.trust-item i { color: var(--gold); font-size:18px; }
.trust-phone { display:flex; align-items:center; gap:10px; }
.trust-phone a { color:var(--white); text-decoration:none; font-size:18px; font-weight:700; font-family:'Playfair Display',serif; }
.trust-social { display:flex; gap:12px; }
.trust-social a { color:rgba(255,255,255,0.7); font-size:18px; transition:color 0.3s; text-decoration:none; }
.trust-social a:hover { color:var(--gold); }

/* SECTION STYLES */
.section { padding: 100px 0; }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  color: var(--primary); font-size:13px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; margin-bottom:12px;
}
.section-label::before, .section-label::after {
  content:''; width:30px; height:2px; background: var(--primary);
}
.section-title { font-size:42px; margin-bottom:20px; line-height:1.2; }
.section-subtitle { font-size:17px; color:var(--text-light); max-width:600px; line-height:1.8; }
.text-center { text-align:center; }
.text-center .section-subtitle { margin:0 auto; }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-top:60px; }
.about-img-wrapper { position:relative; }
.about-img {
  width:100%; height:450px; object-fit:cover; border-radius:12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-badge {
  position:absolute; bottom:-24px; right:-24px;
  background:var(--primary); color:var(--white);
  padding:20px 28px; border-radius:12px;
  text-align:center; box-shadow:0 10px 30px rgba(45,80,22,0.3);
}
.about-badge .number { font-size:36px; font-weight:700; font-family:'Playfair Display',serif; display:block; }
.about-badge .label { font-size:12px; text-transform:uppercase; letter-spacing:1px; opacity:0.9; }
.about-text h2 { font-size:38px; margin-bottom:20px; }
.about-text p { margin-bottom:16px; color:var(--text-light); }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:28px; }
.about-feature { display:flex; align-items:center; gap:10px; }
.about-feature i { color:var(--primary); font-size:16px; }
.about-feature span { font-size:14px; font-weight:500; }

/* SERVICES */
.services-section { background: var(--sage); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.service-card {
  background:var(--white); border-radius:12px; overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  position:relative;
}
.service-card:hover { transform:translateY(-8px); box-shadow:0 16px 40px rgba(0,0,0,0.1); }
.service-img {
  width:100%; height:220px; object-fit:cover;
  transition: transform 0.5s;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-wrap { overflow:hidden; position:relative; }
.service-img-wrap::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.05));
}
.service-body { padding:28px; }
.service-body h3 { font-size:20px; margin-bottom:10px; }
.service-body p { font-size:14px; color:var(--text-light); margin-bottom:16px; line-height:1.7; }
.service-link {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--primary); font-weight:600; font-size:14px;
  text-decoration:none; letter-spacing:0.5px; text-transform:uppercase;
  transition: gap 0.3s;
}
.service-link:hover { gap:12px; }
.service-price {
  position:absolute; top:16px; right:16px;
  background: var(--primary); color:var(--white);
  padding: 6px 14px; border-radius:20px; font-size:12px; font-weight:600;
}

/* HOW WE WORK */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:50px; }
.process-card { text-align:center; padding:32px 20px; position:relative; }
.process-number {
  width:60px; height:60px; border-radius:50%; margin:0 auto 20px;
  background: var(--sage); color: var(--primary);
  font-family:'Playfair Display',serif; font-size:24px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  border: 2px solid var(--primary);
}
.process-card h3 { font-size:18px; margin-bottom:10px; font-family:'Inter',sans-serif; font-weight:600; }
.process-card p { font-size:14px; color:var(--text-light); }
.process-card:not(:last-child)::after {
  content:''; position:absolute; top:30px; right:-16px;
  width:32px; height:2px; background:var(--sage-dark);
}

/* WHY CHOOSE US */
.why-section { background: var(--primary-dark); color:var(--white); position:relative; overflow:hidden; }
.why-section::before {
  content:''; position:absolute; top:-50%; right:-20%; width:600px; height:600px;
  border-radius:50%; border: 1px solid rgba(255,255,255,0.05);
}
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:50px; }
.why-card {
  background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  border-radius:12px; padding:36px; transition:all 0.3s;
}
.why-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-4px); }
.why-card-icon { width:56px; height:56px; border-radius:12px; background:rgba(201,168,76,0.15); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.why-card-icon i { color:var(--gold); font-size:24px; }
.why-card h3 { color:var(--white); font-size:18px; margin-bottom:10px; font-family:'Inter',sans-serif; font-weight:600; }
.why-card p { color:rgba(255,255,255,0.7); font-size:14px; line-height:1.7; }
.why-section .section-label { color: var(--gold); }
.why-section .section-label::before, .why-section .section-label::after { background: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.7); }

/* AREAS */
.areas-section { background:var(--sage); }
.areas-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px; }
.area-tag {
  background:var(--white); padding:14px 20px; border-radius:8px; text-align:center;
  font-weight:500; font-size:14px; transition:all 0.3s;
  border: 1px solid transparent;
}
.area-tag:hover { border-color:var(--primary); color:var(--primary); background:rgba(45,80,22,0.05); }
.area-tag i { margin-right:6px; color:var(--primary); }

/* TESTIMONIALS */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.testimonial-card {
  background:var(--white); border-radius:12px; padding:36px;
  box-shadow:0 4px 20px rgba(0,0,0,0.04);
  position:relative; transition:all 0.3s;
}
.testimonial-card:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,0.08); }
.testimonial-card::before {
  content:'\201C'; position:absolute; top:16px; right:24px;
  font-size:60px; color:var(--sage); font-family:'Playfair Display',serif; line-height:1;
}
.testimonial-stars { color:var(--gold); font-size:14px; margin-bottom:16px; }
.testimonial-card p { font-style:italic; color:var(--text-light); font-size:15px; margin-bottom:20px; line-height:1.7; font-family:'Lora',serif; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:44px; height:44px; border-radius:50%; background:var(--sage); display:flex; align-items:center; justify-content:center; }
.testimonial-avatar i { color:var(--primary); font-size:18px; }
.testimonial-name { font-weight:600; font-size:14px; }
.testimonial-loc { font-size:12px; color:var(--text-light); }

/* FAQ */
.faq-section { background:var(--sage); }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; margin-top:50px; }
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--white); border-radius:10px; overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,0.03); }
.faq-question {
  width:100%; padding:20px 24px; display:flex; align-items:center; justify-content:space-between;
  background:none; border:none; cursor:pointer; font-size:15px; font-weight:500;
  color:var(--dark); text-align:left; font-family:'Inter',sans-serif; transition:color 0.3s;
}
.faq-question:hover { color:var(--primary); }
.faq-question i { transition:transform 0.3s; color:var(--primary); font-size:14px; }
.faq-item.active .faq-question i { transform:rotate(180deg); }
.faq-answer { padding:0 24px; max-height:0; overflow:hidden; transition:all 0.3s ease; }
.faq-item.active .faq-answer { max-height:200px; padding:0 24px 20px; }
.faq-answer p { font-size:14px; color:var(--text-light); line-height:1.7; }
.faq-image { width:100%; height:500px; object-fit:cover; border-radius:12px; box-shadow:0 20px 60px rgba(0,0,0,0.1); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #a03830 100%);
  padding: 80px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80') center/cover;
  opacity:0.1;
}
.cta-content { position:relative; z-index:2; }
.cta-content h2 { color:var(--white); font-size:42px; margin-bottom:16px; }
.cta-content p { color:rgba(255,255,255,0.85); font-size:18px; margin-bottom:32px; max-width:600px; margin-left:auto; margin-right:auto; }
.btn-white {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--accent);
  padding:16px 36px; border-radius:6px; text-decoration:none;
  font-weight:700; font-size:16px; transition:all 0.3s;
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(0,0,0,0.2); }

/* CONTACT FORM */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:50px; }
.contact-info { display:flex; flex-direction:column; gap:24px; }
.contact-item { display:flex; align-items:flex-start; gap:16px; }
.contact-icon-box { width:50px; height:50px; border-radius:10px; background:var(--sage); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-icon-box i { color:var(--primary); font-size:20px; }
.contact-item h4 { font-size:16px; margin-bottom:4px; font-family:'Inter',sans-serif; font-weight:600; }
.contact-item p { font-size:14px; color:var(--text-light); }
.contact-item a { color:var(--primary); text-decoration:none; font-weight:500; }

.contact-form { background:var(--white); border-radius:12px; padding:40px; box-shadow:0 8px 30px rgba(0,0,0,0.06); }
.contact-form h3 { font-size:24px; margin-bottom:24px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:13px; font-weight:600; margin-bottom:6px; color:var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:12px 16px; border:1px solid var(--sage-dark); border-radius:8px;
  font-size:14px; font-family:'Inter',sans-serif; background:var(--cream);
  transition:border-color 0.3s; outline:none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:var(--primary); }
.form-group textarea { height:120px; resize:vertical; }
.form-submit {
  width:100%; padding:14px; background:var(--primary); color:var(--white);
  border:none; border-radius:8px; font-weight:600; font-size:15px;
  cursor:pointer; transition:background 0.3s;
}
.form-submit:hover { background:var(--primary-light); }

/* FOOTER */
.footer { background:var(--primary-dark); color:rgba(255,255,255,0.8); padding:80px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; }
.footer-brand p { margin-top:16px; font-size:14px; line-height:1.8; color:rgba(255,255,255,0.6); }
.footer h4 { color:var(--white); font-size:16px; margin-bottom:20px; font-family:'Inter',sans-serif; font-weight:600; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,0.6); text-decoration:none; font-size:14px; transition:color 0.3s; }
.footer-links a:hover { color:var(--gold); }
.footer-contact-item { display:flex; align-items:center; gap:10px; margin-bottom:12px; font-size:14px; }
.footer-contact-item i { color:var(--gold); font-size:16px; width:20px; }
.footer-social { display:flex; gap:12px; margin-top:16px; }
.footer-social a {
  width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.6); text-decoration:none; transition:all 0.3s;
}
.footer-social a:hover { background:var(--gold); color:var(--primary-dark); }
.footer-bottom {
  margin-top:48px; padding:24px 0; border-top:1px solid rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,0.4);
}

/* SCROLL ANIMATIONS */
.fade-up { opacity:0; transform:translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .hero-content { grid-template-columns:1fr; text-align:center; }
  .hero-left h1 { font-size:42px; }
  .hero-left p { margin:0 auto 36px; }
  .hero-btns { justify-content:center; }
  .hero-right { max-width:500px; margin:0 auto; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-card::after { display:none; }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .mobile-toggle { display:block; }
  .nav-links.active { display:flex; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:var(--white); padding:24px; box-shadow:0 10px 30px rgba(0,0,0,0.1); }
  .hero-left h1 { font-size:34px; }
  .hero-left h1 span { font-size:30px; }
  .section { padding:60px 0; }
  .section-title { font-size:30px; }
  .about-grid, .faq-grid, .contact-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .areas-grid { grid-template-columns:repeat(2,1fr); }
  .trust-inner { justify-content:center; text-align:center; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .about-badge { right:16px; bottom:-16px; }
}