@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --primary: #1B5E3B;
  --primary-light: #2D7A52;
  --primary-dark: #0F3B24;
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --bg: #FAFAF7;
  --bg-alt: #EFF4F0;
  --dark: #1C2B1E;
  --text: #2D3B30;
  --text-light: #5A6B5E;
  --white: #FFFFFF;
  --border: #D5E3D9;
  --shadow: 0 4px 24px rgba(27,94,59,0.10);
  --shadow-lg: 0 12px 48px rgba(27,94,59,0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.25; color: var(--dark); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
nav { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 72px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { fill: var(--white); width: 22px; height: 22px; }
.logo-text { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); white-space: nowrap; }
.logo-text em { color: var(--primary); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a { padding: 9px 14px; border-radius: 8px; color: var(--text); font-weight: 500; font-size: 0.92rem; display: block; }
.nav-links > li > a:hover { background: var(--bg-alt); color: var(--primary); }
.nav-links > li > a.active { color: var(--primary); font-weight: 600; }
.nav-cta { background: var(--primary) !important; color: var(--white) !important; border-radius: 10px !important; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; box-shadow: 0 6px 20px rgba(27,94,59,0.3) !important; }

.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 230px; padding: 8px; z-index: 999; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 9px; font-size: 0.9rem; color: var(--text); }
.dropdown-menu li a:hover { background: var(--bg-alt); color: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 20px 24px; overflow-y: auto; z-index: 999; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: 1.05rem; padding: 13px 16px; border-radius: 10px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--bg-alt); display: none !important; border-radius: 10px; margin: 4px 0 4px 16px; }
  .dropdown.open .dropdown-menu { display: block !important; }
}

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-text em { color: var(--gold); }
.footer-brand p { margin-top: 18px; font-size: 0.9rem; line-height: 1.9; max-width: 300px; }
.footer-col h5 { color: var(--white); font-family: 'Fraunces', serif; font-size: 1rem; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .footer-col ul span { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 11px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: var(--transition); font-family: 'DM Sans', sans-serif; text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,94,59,0.35); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--dark); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }

.section-tag { display: inline-block; background: rgba(27,94,59,0.1); color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.section-tag-light { background: rgba(255,255,255,0.15); color: var(--white); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.8; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #2E8B57 100%); color: var(--white); padding: 100px 0 96px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: 0.4; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 0L0 20v40l40 20 40-20V20L40 0zm0 4.47L76 23v34L40 75.53 4 57V23L40 4.47z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); color: var(--white); padding: 8px 18px; border-radius: 20px; font-size: 0.82rem; font-weight: 500; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.18); }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { font-size: 1.1rem; opacity: 0.85; max-width: 520px; margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img { width: 100%; height: 440px; object-fit: cover; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,0.35); }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: 14px; padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; }
.hero-badge-icon { width: 44px; height: 44px; background: rgba(27,94,59,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-badge-text strong { display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--primary); line-height: 1; }
.hero-badge-text span { font-size: 0.82rem; color: var(--text-light); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--white); padding: 72px 0 64px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { opacity: 0.82; font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 0.82rem; opacity: 0.65; }
.breadcrumb a { color: var(--white); }

/* ===== CARDS ===== */
.card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(27,94,59,0.25); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(27,94,59,0.08); color: var(--primary); margin-bottom: 20px; font-size: 1.5rem; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }

/* ===== STATS ===== */
.stats-bar { background: var(--primary); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: 'Fraunces', serif; font-size: 3rem; color: var(--white); font-weight: 700; line-height: 1; }
.stat-num em { color: var(--gold-light); font-style: normal; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-top: 8px; }

/* ===== FORM ===== */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.88rem; color: var(--text); }
.form-control { width: 100%; padding: 13px 18px; border: 2px solid var(--border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; background: var(--white); color: var(--text); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,94,59,0.08); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--primary); color: var(--white); padding: 16px 22px; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); z-index: 9999; display: flex; align-items: center; gap: 12px; transform: translateY(120px); opacity: 0; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); max-width: 360px; font-size: 0.92rem; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.toast-close { margin-left: auto; cursor: pointer; opacity: 0.7; background: none; border: none; color: var(--white); font-size: 1.1rem; padding: 0 4px; }
.toast-close:hover { opacity: 1; }

/* ===== BADGE ===== */
.badge { display: inline-block; padding: 5px 13px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.badge-green { background: rgba(27,94,59,0.1); color: var(--primary); }
.badge-gold { background: rgba(201,168,76,0.15); color: #8B6914; }
.badge-gray { background: var(--bg-alt); color: var(--text-light); }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-light { color: var(--text-light); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.fw-600 { font-weight: 600; }
.img-cover { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); }
.img-cover-lg { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }
.img-cover-sm { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
.rounded-full { border-radius: 50%; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); padding: 80px 0; text-align: center; }
.cta-strip h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-strip p { opacity: 0.8; font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }

/* ===== PROCESS STEPS ===== */
.step { display: flex; gap: 24px; margin-bottom: 40px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.step-body h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.step-body p { color: var(--text-light); font-size: 0.93rem; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.98rem; background: var(--white); transition: var(--transition); user-select: none; }
.faq-question:hover { background: var(--bg-alt); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--primary); transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { color: var(--text-light); font-size: 0.93rem; line-height: 1.8; }
.faq-item.open .faq-question { background: rgba(27,94,59,0.04); color: var(--primary); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-info strong { display: block; font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.testimonial-info span { font-size: 0.82rem; color: var(--text-light); }

/* ===== BLOG ===== */
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8rem; color: var(--text-light); }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== TEAM ===== */
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar-wrap { height: 200px; background: linear-gradient(135deg, var(--bg-alt), var(--border)); display: flex; align-items: center; justify-content: center; }
.team-avatar-initials { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Fraunces', serif; font-weight: 700; font-size: 2rem; }
.team-card-body { padding: 24px 20px; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.team-card .role { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.team-social a { width: 34px; height: 34px; border-radius: 8px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-light); }
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.check-list li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--primary); color: var(--white); border-radius: 50%; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 64px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num { font-size: 2.2rem; }
}
