@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --primary: #1e5e43;
  --primary-dark: #164a35;
  --gold: #d9b428;
  --gold-dark: #b89820;
  --light-bg: #f7f9f7;
  --light-green: #e8f0ec;
  --text-dark: #1a3a2a;
  --text-gray: #5a6b63;
  --white: #ffffff;
  --border: #dde8e2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--text-dark); background: var(--light-bg); }
h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600; border-radius: 0.75rem; border: 2px solid transparent; cursor: pointer; transition: 0.3s; }
.btn-primary { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-secondary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--primary); }
.btn-outline-green { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-green:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 2.5rem; height: 2.5rem; background: var(--primary); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 1.5rem; height: 1.5rem; fill: var(--gold); }
.logo-text { font-family: 'Libre Baskerville', serif; font-size: 1.25rem; font-weight: 600; color: var(--primary); }
.logo-sub { font-size: 0.7rem; color: var(--text-gray); letter-spacing: 0.15em; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--text-gray); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }
.mobile-toggle { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.mobile-menu { display: none; padding: 1rem 0; border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-nav { display: flex; flex-direction: column; gap: 1rem; }

/* Hero */
.hero { position: relative; background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 4rem 0 7rem; text-align: center; }
.hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath d='M0 60L60 55C120 50 240 40 360 35C480 30 600 30 720 35C840 40 960 50 1080 52.5C1200 55 1320 50 1380 47.5L1440 45V60H0Z' fill='%23f7f9f7'/%3E%3C/svg%3E") no-repeat bottom/100% 100%; }
@media (min-width: 1024px) { .hero { padding: 6rem 0 8rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem; }
.hero-badge svg { width: 1rem; height: 1rem; fill: var(--gold); }
.hero-badge span { font-size: 0.875rem; color: rgba(255,255,255,0.9); }
.hero h1 { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.hero h1 .highlight { color: var(--gold); }
@media (min-width: 640px) { .hero h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 42rem; margin: 0 auto 2rem; }
.hero-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; justify-content: center; } }

/* Stats */
.stats { padding: 4rem 0; background: var(--light-bg); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-icon { width: 4rem; height: 4rem; background: var(--white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.stat-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); fill: none; }
.stat-value { font-family: 'Libre Baskerville', serif; font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.stat-label { font-family: 'Libre Baskerville', serif; font-size: 1.125rem; color: var(--primary); margin-bottom: 0.5rem; }
.stat-desc { font-size: 0.875rem; color: var(--text-gray); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
@media (min-width: 1024px) { .section-title { font-size: 2.5rem; } }
.section-subtitle { font-size: 1.125rem; color: var(--text-gray); max-width: 42rem; margin: 0 auto; }

/* Services */
.services { padding: 4rem 0 5rem; background: var(--light-green); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cards */
.card { background: var(--white); border-radius: 1rem; padding: 2rem; transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.card-icon { width: 3.5rem; height: 3.5rem; background: var(--light-green); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); fill: none; }
.card h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; }
.card p { font-size: 0.9375rem; color: var(--text-gray); margin-bottom: 1rem; }
.card-list { display: flex; flex-direction: column; gap: 0.5rem; }
.card-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-gray); }
.card-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Why Choose */
.why-choose { padding: 4rem 0 5rem; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-content h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .why-content h2 { font-size: 2.5rem; } }
.why-content > p { font-size: 1.125rem; color: var(--text-gray); margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.why-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.why-item svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; flex-shrink: 0; margin-top: 0.125rem; }
.help-wrapper { background: var(--light-green); border-radius: 1rem; padding: 2rem; }
@media (min-width: 1024px) { .help-wrapper { padding: 2.5rem; } }
.help-card { background: var(--white); border-radius: 1rem; padding: 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.help-badge { display: inline-block; background: rgba(217,180,40,0.2); color: var(--gold-dark); font-size: 0.875rem; font-weight: 500; padding: 0.375rem 1rem; border-radius: 9999px; margin-bottom: 1rem; }
.help-card h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.help-card > p { color: var(--text-gray); margin-bottom: 1.5rem; }
.help-btns { display: flex; flex-direction: column; gap: 0.75rem; }

/* CTA */
.cta { position: relative; background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 4rem 0 5rem; text-align: center; }
.cta::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 40px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath d='M0 40L60 37C120 34 240 28 360 24C480 20 600 20 720 22C840 24 960 28 1080 30C1200 32 1320 32 1380 32L1440 32V40H0Z' fill='%231e5e43'/%3E%3C/svg%3E") no-repeat bottom/100% 100%; }
.cta h2 { font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
@media (min-width: 1024px) { .cta h2 { font-size: 2.5rem; } }
.cta p { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 42rem; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; justify-content: center; } }

/* Footer */
.footer { background: var(--primary); color: var(--white); }
.footer-main { padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-icon { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.footer-brand-icon svg { width: 1.5rem; height: 1.5rem; fill: var(--gold); }
.footer-brand-text { font-family: 'Libre Baskerville', serif; font-size: 1.125rem; }
.footer-brand-sub { font-size: 0.7rem; color: rgba(255,255,255,0.7); letter-spacing: 0.15em; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-title { font-family: 'Libre Baskerville', serif; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-link:hover { color: var(--white); }
.footer-contact { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
.footer-contact svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; }
.footer-hours { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-hours svg { width: 1rem; height: 1rem; stroke: rgba(255,255,255,0.7); fill: none; margin-top: 0.125rem; }
.footer-hours-text { font-size: 0.875rem; }
.footer-hours-label { color: rgba(255,255,255,0.8); }
.footer-hours-value { color: var(--white); }
.footer-legal { background: var(--primary-dark); padding: 1rem 0; }
.footer-legal-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-align: center; }
.footer-legal-text strong { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-bottom-link:hover { color: var(--white); }

/* About Page */
.about-stats { padding: 3rem 0; background: var(--light-bg); }
.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat { text-align: center; }
.about-stat-value { font-family: 'Libre Baskerville', serif; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.about-stat-label { color: var(--text-gray); margin-top: 0.5rem; }
.about-content { padding: 4rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-gray); margin-bottom: 1rem; line-height: 1.7; }
.about-text p strong { color: var(--primary); }
.mv-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.mv-card { background: var(--white); border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.mv-card h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 1rem; }
.mv-card p { color: var(--text-gray); }
.values { padding: 4rem 0; background: var(--light-green); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--white); border-radius: 1rem; padding: 2rem; text-align: center; transition: box-shadow 0.3s; }
.value-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.value-icon { width: 4rem; height: 4rem; background: var(--light-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.value-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); fill: none; }
.value-card h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--text-gray); }
.trust { padding: 4rem 0; background: var(--white); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; background: var(--light-green); padding: 1rem 1.25rem; border-radius: 0.5rem; }
.trust-item svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; }

/* Contact Page */
.contact-content { padding: 4rem 0; background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form-section h2 { font-size: 1.75rem; color: var(--primary); margin-bottom: 0.5rem; }
.contact-form-section > p { color: var(--text-gray); margin-bottom: 2rem; }
.form-card { background: var(--white); border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-input, .form-textarea { width: 100%; padding: 0.875rem 1rem; font-size: 1rem; border: 1px solid var(--border); border-radius: 0.5rem; transition: 0.3s; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,94,67,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: 1.75rem; color: var(--primary); margin-bottom: 2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { width: 3rem; height: 3rem; background: var(--light-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; }
.contact-info-text h3 { font-size: 1.125rem; color: var(--primary); margin-bottom: 0.25rem; }
.contact-info-text p, .contact-info-text a { color: var(--text-gray); font-size: 0.9375rem; }
.contact-info-text a:hover { color: var(--primary); }
.whatsapp-card { background: var(--primary); border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem; }
.whatsapp-header { display: flex; align-items: flex-start; gap: 1rem; }
.whatsapp-icon { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.whatsapp-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--white); fill: none; }
.whatsapp-content h3 { font-size: 1.125rem; color: var(--white); margin-bottom: 0.25rem; }
.whatsapp-content p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.hours-card { background: var(--white); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.hours-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.hours-icon { width: 2.5rem; height: 2.5rem; background: var(--light-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hours-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; }
.hours-card h3 { font-size: 1.125rem; color: var(--primary); }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.hours-day { color: var(--text-gray); }
.hours-time { color: var(--primary); font-weight: 500; }
.hours-time.closed { color: var(--text-gray); font-weight: 400; }
.faq { padding: 4rem 0; background: var(--light-green); text-align: center; }
.faq h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.faq > p { color: var(--text-gray); font-size: 1.125rem; }
.faq .response { color: var(--text-dark); margin-top: 0.5rem; }
.faq .response strong { color: var(--primary); }

/* Services Page */
.disclaimer { padding: 4rem 0; background: var(--white); }
.disclaimer-card { max-width: 56rem; margin: 0 auto; background: var(--white); border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-left: 4px solid var(--gold); }
.disclaimer-header { display: flex; align-items: flex-start; gap: 1rem; }
.disclaimer-icon { width: 3rem; height: 3rem; background: rgba(217,180,40,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.disclaimer-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--gold); fill: none; }
.disclaimer-content h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; }
.disclaimer-content p { color: var(--text-gray); margin-bottom: 1rem; }
.disclaimer-content p strong { color: var(--primary); }
.disclaimer-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-gray); margin-bottom: 0.5rem; }
.disclaimer-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.disclaimer-note { font-size: 0.875rem; color: var(--text-gray); margin-top: 1rem; }
