/* ── Pacific Garden Design — Evrenna Studio Build ── */
/* ── Color Scheme: California Fresh ── */
:root {
  --sage:        #3a6b4a;
  --sage-mid:    #5a8f6e;
  --sage-light:  #a8d5b5;
  --ocean:       #4a8fa8;
  --ocean-light: #d0eaf2;
  --sand:        #f5ede0;
  --sand-dark:   #e8d9c4;
  --white:       #ffffff;
  --gray:        #6b7280;
  --dark:        #1a2420;
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 80px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
}
.nav-logo img { height: 64px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--dark); font-size: 0.95rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700 !important; font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--sage-mid) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover; background-position: center 55%;
  filter: brightness(0.42);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 0 24px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.12; margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--sage-light); }
.hero p {
  color: rgba(255,255,255,0.85); font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.2rem; max-width: 560px; margin-inline: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 14px 30px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; border: none;
}
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,0.6); color: var(--white);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-ocean { background: var(--ocean); color: #fff; }
.btn-ocean:hover { background: #3a7a92; transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sage);
  padding: 18px 5%;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600;
}
.trust-item svg { color: var(--sage-light); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 86px 5%; }
.section-label {
  display: inline-block; color: var(--sage-mid);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2;
  color: var(--sage); margin-bottom: 1rem;
}
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 560px; }

/* ── ABOUT ── */
.about { background: var(--sand); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-img {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.about-text p { color: var(--gray); margin-bottom: 1rem; }
.about-checks { list-style: none; margin: 1.2rem 0 2rem; }
.about-checks li {
  display: flex; align-items: center; gap: 10px;
  color: var(--dark); font-weight: 500; margin-bottom: 0.7rem;
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.75rem; font-weight: 700;
}

/* ── SERVICES PREVIEW ── */
.services-preview { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; max-width: 1100px; margin: 52px auto 0;
}
.service-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.13); }
.service-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card-body { padding: 22px 24px 26px; background: var(--white); }
.service-icon { font-size: 1.6rem; margin-bottom: 10px; }
.service-card-body h3 { color: var(--sage); font-size: 1.1rem; margin-bottom: 6px; }
.service-card-body p { color: var(--gray); font-size: 0.93rem; }

/* ── GALLERY ── */
.gallery { background: var(--sand); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1100px; margin: 52px auto 0;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 14px; transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ── PROCESS STRIP ── */
.process { background: var(--ocean-light); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 1100px; margin: 52px auto 0;
}
.process-step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ocean); color: #fff;
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step h4 { color: var(--sage); font-size: 1rem; margin-bottom: 6px; }
.process-step p { color: var(--gray); font-size: 0.9rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--sage); padding: 70px 5%; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0.8rem auto 2rem; }

/* ── SERVICES PAGE ── */
.page-hero {
  background: var(--sage); padding: 130px 5% 64px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0.8rem auto 0; }

.services-full { background: var(--white); }
.services-full-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 1100px; margin: 52px auto 0;
}
.sf-card {
  background: var(--sand); border-radius: 16px; padding: 32px 28px;
  border-top: 4px solid var(--sage-light); transition: box-shadow 0.2s, transform 0.2s;
}
.sf-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.sf-icon { font-size: 2.2rem; margin-bottom: 14px; }
.sf-card h3 { color: var(--sage); font-size: 1.15rem; margin-bottom: 8px; }
.sf-card p  { color: var(--gray); font-size: 0.94rem; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--sand); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  max-width: 1000px; margin: 0 auto; align-items: start;
}
.contact-info h3 { color: var(--sage); font-size: 1.25rem; margin-bottom: 1.4rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sage); color: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.15rem;
}
.contact-detail-text strong { display: block; color: var(--dark); font-weight: 700; }
.contact-detail-text span { color: var(--gray); font-size: 0.95rem; }

.contact-form {
  background: var(--white); border-radius: 18px;
  padding: 42px 38px; box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--sage); margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #d1d5db; border-radius: 8px;
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage-mid); }
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--sage); color: #fff;
  border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--sage-mid); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #162118;
  color: rgba(255,255,255,0.68);
  padding: 54px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand img { height: 80px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px; text-align: center; font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--white); padding: 20px 5%; gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { gap: 1.4rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
