/* ===== MORALES ARTIFICIAL GRASS & MASONRY — STATIC SITE STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green-dark: #1a4a1a;
  --green:       #2d6a2d;
  --green-light: #e8f5e9;
  --brick:       #8b2c2c;
  --earth:       #c8a96e;
  --cream:       #faf8f4;
  --text:        #1a1a1a;
  --muted:       #6b7280;
  --white:       #ffffff;
  --radius:      12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- TOPBAR ---- */
.topbar { background: var(--green-dark); color: #fff; padding: 8px 0; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--earth); }
.topbar-left { display: flex; align-items: center; gap: 6px; }

/* ---- NAVBAR ---- */
.navbar { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 52px; width: auto; }
.nav-brand-text .name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green-dark); }
.nav-brand-text .sub  { font-size: 12px; color: var(--brick); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text); transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--green-light); color: var(--green-dark); }
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 220px; overflow: hidden; z-index: 999; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 12px 18px; font-size: 14px; font-weight: 500; transition: background .15s; }
.dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }
.btn-quote { background: var(--brick); color: #fff !important; padding: 10px 20px !important; border-radius: 8px !important; font-weight: 600 !important; transition: opacity .2s !important; }
.btn-quote:hover { opacity: .88; background: var(--brick) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid #eee; padding: 16px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid #f0f0f0; }
.mobile-menu a:last-child { border-bottom: none; }

/* ---- HERO SLIDESHOW ---- */
.hero { position: relative; height: 90vh; min-height: 520px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 60%, transparent 100%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; max-width: 680px; color: #fff; }
.hero-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--earth); margin-bottom: 14px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.hero-title span { color: var(--earth); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; transition: opacity .2s; }
.btn-primary:hover { opacity: .88; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 2px solid #fff; padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px; transition: background .2s, color .2s; }
.btn-outline:hover { background: #fff; color: var(--green-dark); }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--earth); }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.7); }
.slide-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; cursor: pointer; transition: background .3s, transform .3s; }
.dot.active { background: #fff; transform: scale(1.3); }
.slide-prev, .slide-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.2); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background .2s; }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.slide-prev:hover, .slide-next:hover { background: rgba(255,255,255,.35); }

/* ---- SECTIONS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--brick); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- SERVICES CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; background: #fff; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.14); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green-dark); margin-bottom: 8px; }
.service-card-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.service-card-body a { font-size: 14px; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }
.service-card-body a:hover { color: var(--green-dark); }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.about-photos img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 200px; }
.badge-years { position: absolute; bottom: -16px; right: -16px; background: var(--brick); color: #fff; border-radius: 50%; width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.badge-years .num { font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1; }
.badge-years .lbl { font-size: 10px; text-align: center; line-height: 1.2; }
.about-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--green-dark); margin-bottom: 16px; }
.about-info p { color: var(--muted); margin-bottom: 14px; }
.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.about-badge { display: flex; align-items: center; gap: 10px; background: var(--green-light); padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--green-dark); }
.about-badge svg { flex-shrink: 0; }
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--green-dark); color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; transition: background .2s; }
.why-card:hover { background: rgba(255,255,255,.14); }
.why-icon { width: 48px; height: 48px; background: rgba(200,169,110,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; }

/* ---- PORTFOLIO PREVIEW ---- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.portfolio-item { border-radius: var(--radius); overflow: hidden; position: relative; group; }
.portfolio-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
.portfolio-item:hover img { transform: scale(1.06); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--cream); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--green); }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--green-dark); }
.testimonial-location { font-size: 13px; color: var(--muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-question:hover { color: var(--green-dark); }
.faq-icon { font-size: 20px; color: var(--green); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ---- CONTACT ---- */
.contact-section { background: var(--green-dark); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-icon { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item a { color: #fff; font-weight: 600; font-size: 16px; }
.contact-item a:hover { color: var(--earth); }
.contact-item .lbl { font-size: 12px; color: rgba(255,255,255,.55); }
.contact-form { background: #fff; border-radius: 16px; padding: 36px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color .2s; background: #fafafa; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; background: var(--green); color: #fff; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity .2s; font-family: inherit; }
.btn-submit:hover { opacity: .88; }
.form-success { display: none; background: var(--green-light); border: 1px solid var(--green); color: var(--green-dark); padding: 14px; border-radius: 8px; font-weight: 600; text-align: center; margin-top: 12px; }

/* ---- FOOTER ---- */
footer { background: #111; color: rgba(255,255,255,.75); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { height: 60px; margin-bottom: 14px; }
.footer-brand .name { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; margin-bottom: 6px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; transition: background .2s; }
.social-btn:hover { background: var(--green); }
footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
footer ul li a:hover { color: var(--earth); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* ---- SERVICE PAGE ---- */
.service-hero { background: var(--green-dark); padding: 120px 0 60px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.service-hero-bg { position: absolute; inset: 0; opacity: .18; object-fit: cover; width: 100%; height: 100%; }
.service-hero-content { position: relative; z-index: 1; }
.service-hero .section-label { color: var(--earth); }
.service-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 54px); font-weight: 700; margin-bottom: 16px; }
.service-hero p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; }
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.service-intro h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--green-dark); margin-bottom: 16px; }
.service-intro p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.checklist { list-style: none; margin: 20px 0 28px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 16px; }
.service-photos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-photos-grid img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 190px; box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.gallery-grid img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 220px; transition: transform .4s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); }
.cta-banner { background: var(--green); color: #fff; border-radius: 20px; padding: 60px 40px; text-align: center; margin: 60px 0; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 16px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--green); padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 2px solid #fff; transition: background .2s, color .2s; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-brick { background: var(--brick); color: #fff; padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: opacity .2s; }
.btn-brick:hover { opacity: .88; }

/* ---- PORTFOLIO PAGE ---- */
.portfolio-hero { background: var(--green-dark); padding: 120px 0 60px; color: #fff; text-align: center; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 40px 0 32px; }
.filter-btn { padding: 10px 22px; border-radius: 30px; border: 2px solid #ddd; background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--text); }
.filter-btn.active, .filter-btn:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.portfolio-masonry { columns: 3; gap: 16px; }
.portfolio-masonry .p-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.portfolio-masonry .p-item img { width: 100%; display: block; transition: transform .4s; }
.portfolio-masonry .p-item:hover img { transform: scale(1.04); }
.p-item[data-cat] { transition: opacity .3s; }
.p-item.hidden { display: none; }

/* ---- LIGHTBOX ---- */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 36px; cursor: pointer; background: none; border: none; line-height: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .service-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { columns: 2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 28px; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .portfolio-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .hero { height: 70vh; }
  section { padding: 56px 0; }
  .cta-banner { padding: 40px 20px; }
}
