@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-dark:   #1A5C1A;
  --green-mid:    #2D8A2D;
  --green-light:  #4CAF50;
  --green-pale:   #EAF4EA;
  --red:          #CC0000;
  --black:        #0D0D0D;
  --gray-dark:    #2C2C2C;
  --gray-mid:     #666;
  --gray-light:   #F5F5F5;
  --white:        #FFFFFF;
  --gold:         #C9A84C;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.15);
  --radius:       10px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: var(--white);
  border-bottom: 3px solid var(--green-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: background var(--transition);
}

nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--gray-dark);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}

.nav-cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px !important;
  border-bottom: none !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-dark);
  transition: var(--transition);
}

/* ── PAGE WRAPPER ────────────────────────────────────────────────────── */
.page { padding-top: 72px; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D2B0D 0%, #1A5C1A 50%, #2D8A2D 100%);
}

.hero-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-diagonal {
  position: absolute; bottom: -2px; left: 0; right: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 6rem 5vw 8rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-text { animation: fadeUp 0.8s ease both; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-light);
  border: 1px solid var(--green-light); border-radius: 20px;
  padding: 0.3rem 1rem; margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 1.25rem;
}

.hero-title span { color: var(--green-light); }

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 460px; margin-bottom: 2.5rem; line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--white); color: var(--green-dark);
  border-color: var(--white);
}
.btn-primary:hover { background: var(--green-pale); }

.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-green {
  background: var(--green-mid); color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }

.hero-card {
  animation: fadeUp 0.8s 0.2s ease both;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 2rem;
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--white); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.hero-stat {
  background: rgba(255,255,255,0.06);
  border-radius: 10px; padding: 1rem;
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--green-light);
}

.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

.hero-contacts { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }

.hero-contact-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}

.contact-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0;
}

/* ── SECTION BASE ────────────────────────────────────────────────────── */
section { padding: 5rem 5vw; }
.container { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--black); margin-bottom: 1rem;
}

.section-title span { color: var(--green-mid); }

.section-intro {
  font-size: 1.05rem; color: var(--gray-mid);
  max-width: 540px; line-height: 1.7;
}

.section-divider {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 2px; margin: 1.25rem 0 2rem;
}

/* ── SERVICES PAGE ───────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 5rem 5vw 4rem; color: var(--white); text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 0.75rem;
}

.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}

.service-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #e8e8e8; padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--green-light), var(--green-dark));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2rem; margin-bottom: 1rem;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.92rem; color: var(--gray-mid); line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-price {
  display: inline-block;
  background: var(--green-pale); color: var(--green-dark);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.3rem 0.9rem; border-radius: 20px;
}

.price-note {
  background: #FFF3F3; border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0; padding: 1rem 1.25rem;
  margin-top: 2.5rem; font-size: 0.92rem; color: var(--gray-dark);
}

.price-note strong { color: var(--red); }

/* ── ABOUT PAGE ──────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 16px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}

.about-stat-row { display: flex; gap: 1rem; }

.about-stat-box {
  flex: 1; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}

.about-stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--white);
}

.about-stat-box .lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem;
}

.about-logo-box {
  background: rgba(255,255,255,0.95); border-radius: 10px;
  padding: 1.5rem; text-align: center;
}

.about-logo-box img { height: 52px; margin: 0 auto; }

.about-text .lead {
  font-size: 1.1rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.97rem; color: var(--gray-mid); line-height: 1.75; margin-bottom: 1rem;
}

.about-founders {
  display: flex; gap: 1rem; margin-top: 2rem;
}

.founder-card {
  flex: 1; background: var(--green-pale);
  border-radius: 10px; padding: 1.25rem; text-align: center;
  border: 1px solid rgba(45,138,45,0.15);
}

.founder-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-mid); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 0.75rem;
  font-size: 1.3rem; color: var(--white);
  font-family: 'Playfair Display', serif; font-weight: 700;
}

.founder-name {
  font-weight: 600; font-size: 0.95rem; color: var(--black);
}

.founder-role {
  font-size: 0.8rem; color: var(--gray-mid); margin-top: 0.2rem;
}

.founder-phone {
  font-size: 0.82rem; color: var(--green-dark);
  font-weight: 600; margin-top: 0.4rem;
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}

.value-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 1.5rem; border-top: 3px solid var(--green-light);
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem;
}

.value-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.6; }

/* ── CONTACT PAGE ────────────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-block {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #e8e8e8; padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-block h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--black); margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--green-light);
}

.contact-block p { font-size: 0.95rem; color: var(--gray-mid); line-height: 1.7; }

.contact-block a { color: var(--green-mid); font-weight: 500; }
.contact-block a:hover { color: var(--green-dark); }

.bank-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.bank-table td { padding: 0.4rem 0; }
.bank-table td:first-child { font-weight: 600; color: var(--green-dark); width: 45%; }
.bank-table td:last-child { color: var(--gray-dark); }

.deposit-badge {
  background: #FFF0F0; border: 1px solid #FFCCCC;
  border-radius: 8px; padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--red); font-weight: 600;
}

.contact-form {
  background: var(--white); border-radius: 16px;
  border: 1px solid #e8e8e8; padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--black); margin-bottom: 1.75rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }

.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--gray-dark); letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; border-radius: 8px;
  border: 1.5px solid #DDD; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--gray-dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,138,45,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%; padding: 0.95rem;
  background: var(--green-mid); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
}

.form-submit:hover {
  background: var(--green-dark); transform: translateY(-1px);
}

.form-success {
  display: none; background: var(--green-pale);
  border: 1px solid var(--green-light); border-radius: 8px;
  padding: 1rem 1.25rem; text-align: center;
  color: var(--green-dark); font-weight: 600; margin-top: 1rem;
}

/* ── GALLERY PAGE ────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.gallery-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); position: relative;
  background: var(--gray-light); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem; color: var(--gray-mid);
  cursor: pointer; opacity: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}

.gallery-placeholder-icon { font-size: 2.5rem; opacity: 0.4; }
.gallery-placeholder-text { font-size: 0.85rem; font-weight: 500; opacity: 0.5; }

.gallery-upload-note {
  text-align: center; margin-top: 2.5rem;
  padding: 1.5rem; background: var(--green-pale);
  border-radius: var(--radius); color: var(--green-dark);
  font-size: 0.95rem;
}

/* ── HOME SECTIONS ───────────────────────────────────────────────────── */
.home-services { background: var(--gray-light); }
.home-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.home-service-tile {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center;
  box-shadow: var(--shadow); border-bottom: 3px solid var(--green-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-service-tile:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}

.home-service-tile .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.home-service-tile h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem;
}
.home-service-tile p { font-size: 0.82rem; color: var(--gray-mid); }

.home-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  text-align: center; color: var(--white);
}

.home-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 1rem;
}

.home-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

.home-cta-numbers {
  display: flex; justify-content: center; gap: 2rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}

.cta-number {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 0.75rem 1.5rem;
  font-size: 1rem; font-weight: 600;
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 3rem 5vw 1.5rem;
}

.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-col h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 0.95rem; margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}

.footer-bottom span { color: var(--green-light); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--white);
    padding: 1.5rem 5vw; border-bottom: 2px solid var(--green-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 5rem; }
  .hero-card { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
