:root {
  --primary: #0d7a3a;
  --primary-dark: #075a2b;
  --accent: #f3c623;
  --blue: #1b2f8b;
  --dark: #142218;
  --text: #333333;
  --muted: #6b7280;
  --white: #ffffff;
  --light: #f7faf7;
  --border: #e5efe7;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 44px rgba(0, 0, 0, 0.14);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin: auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background:
    linear-gradient(135deg, rgba(92, 190, 58, 0.14) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(45deg, rgba(243, 198, 35, 0.18) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(90deg, #ffffff 0%, #fcfffb 45%, #f9fff8 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 122, 58, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.site-header::before {
  content: ""; position: absolute; top: 0; right: 0; width: 38%; height: 100%;
  background: radial-gradient(circle at top right, rgba(243, 198, 35, 0.30), transparent 58%), radial-gradient(circle at 78% 20%, rgba(13, 122, 58, 0.18), transparent 52%);
  pointer-events: none;
}
.site-header::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #0d7a3a 0%, #f3c623 52%, #0d7a3a 100%); opacity: 0.95;
}
.nav {
  position: relative; z-index: 2; min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.site-logo {
  width: 76px; height: 76px; object-fit: contain; object-position: center; border-radius: 50%; background: #ffffff; padding: 4px;
  border: 2px solid rgba(13, 122, 58, 0.10); box-shadow: 0 8px 18px rgba(0,0,0,0.10); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: #0b8f3e; font-size: 22px; font-weight: 900; letter-spacing: 0.4px; line-height: 1.1; }
.brand-text span { font-size: 13px; color: #6b7280; letter-spacing: 0.4px; line-height: 1.2; }
nav ul { display: flex; align-items: center; gap: 20px; }
nav ul li a { color: #1c2a20; font-weight: 700; transition: 0.3s ease; }
nav ul li a:hover { color: #0d7a3a; }
.nav-btn {
  background: linear-gradient(135deg, #0d7a3a, #0a8d41); color: #fff !important; padding: 11px 18px; border-radius: 999px; box-shadow: 0 8px 18px rgba(13, 122, 58, 0.18);
}
.nav-btn:hover { transform: translateY(-2px); }
.admin-link { background: linear-gradient(135deg, #1d2a78, #0f172a); box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16); }
.menu-toggle { display: none; border: none; background: var(--primary); color: #fff; padding: 10px 14px; border-radius: 10px; font-size: 20px; cursor: pointer; }

.hero-slider-section { position: relative; min-height: 92vh; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slider-overlay { position: relative; z-index: 2; min-height: 92vh; display: flex; align-items: center; padding: 95px 0 85px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.badge {
  display: inline-block; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.22); color: #f8fff8; padding: 10px 16px; border-radius: 999px; margin-bottom: 22px; font-size: 14px; backdrop-filter: blur(8px);
}
.hero h1 { font-size: 62px; line-height: 1.03; margin-bottom: 20px; font-weight: 800; max-width: 760px; color: #fff; }
.hero p { font-size: 20px; max-width: 720px; color: #ffffff; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 14px; font-weight: 700; transition: 0.3s ease; border: none; cursor: pointer;
}
.btn-primary { background: #f3c623; color: #142218; box-shadow: 0 10px 22px rgba(243, 198, 35, 0.22); }
.btn-primary:hover, .btn-outline:hover, .btn-whatsapp:hover { transform: translateY(-3px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.05); backdrop-filter: blur(6px); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22); }
.hero-stats { display: flex; gap: 18px; flex-wrap: wrap; }
.stat-box {
  min-width: 140px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.16); padding: 18px; border-radius: 18px; backdrop-filter: blur(8px); box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}
.stat-box h3 { font-size: 26px; color: #f3c623; margin-bottom: 4px; }
.stat-box span { font-size: 14px; color: #f4fff4; }
.hero-image-wrap { position: relative; }
.hero-glow {
  position: absolute; width: 280px; height: 280px; background: radial-gradient(circle, rgba(243,198,35,0.30), rgba(13,122,58,0.08), transparent 70%); top: -30px; right: -20px; z-index: 1; filter: blur(10px);
}
.hero-image-card {
  position: relative; z-index: 2; background: rgba(255,255,255,0.10); padding: 12px; border-radius: 28px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.20); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}
.hero-logo-card img {
  width: 100%; border-radius: 22px; min-height: 320px; object-fit: contain; background: rgba(255,255,255,0.92); padding: 20px;
}
.slider-dots {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3;
}
.dot {
  width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.55); cursor: pointer; transition: 0.3s ease;
}
.dot.active { background: #f3c623; transform: scale(1.15); }

.section { padding: 90px 0; }
.alt-section { background: var(--light); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-tag { display: inline-block; color: var(--primary); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.light-tag { color: #d7ffd7; }
.section-header h2 { font-size: 40px; color: var(--dark); margin-bottom: 12px; }
.section-header p { max-width: 760px; margin: auto; color: var(--muted); }
.about-grid, .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card, .service-card, .contact-info, .contact-form, .dashboard-card, .admin-login-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.card h3, .contact-info h3 { color: var(--primary-dark); margin-bottom: 14px; font-size: 24px; }
.highlight-card { background: linear-gradient(135deg, #effaf1, #ffffff); }
.feature-list li { padding: 10px 0; border-bottom: 1px dashed #dce8de; }

.services-showcase { position: relative; overflow: hidden; }
.slider-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.slider-copy h3 { color: var(--primary-dark); font-size: 28px; margin-bottom: 6px; }
.slider-copy p { color: var(--muted); }
.slider-controls { display: flex; gap: 10px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; box-shadow: var(--shadow);
}
.services-slider, .gallery-slider { overflow: hidden; }
.services-track, .gallery-track { display: flex; gap: 22px; transition: transform 0.6s ease; will-change: transform; }
.service-slide-card {
  min-width: calc(33.333% - 15px); background: #fff; border-radius: 24px; box-shadow: var(--shadow-strong); overflow: hidden; border: 1px solid #edf3ee;
}
.service-slide-image img { width: 100%; height: 240px; object-fit: cover; }
.service-slide-content { padding: 22px; }
.mini-tag {
  display: inline-block; margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--primary); background: #eef8f0; padding: 6px 10px; border-radius: 999px;
}
.service-slide-content h3 { font-size: 26px; color: var(--primary-dark); margin-bottom: 8px; line-height: 1.15; }
.service-slide-content p { color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mini-services-grid { margin-top: 28px; }
.service-card { transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.service-icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; display: grid; place-items: center; font-size: 26px; margin-bottom: 18px; }
.service-card h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 22px; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.reverse .split-image { order: 2; }
.reverse .split-content { order: 1; }
.split-image img { border-radius: 22px; box-shadow: var(--shadow-strong); min-height: 360px; object-fit: cover; width: 100%; }
.split-content h2 { font-size: 38px; color: var(--dark); margin-bottom: 16px; }
.split-content p { color: var(--muted); margin-bottom: 14px; }

.gallery-showcase { background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%); }
.gallery-slide-card {
  min-width: calc(33.333% - 15px); background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-strong); border: 1px solid #edf3ee;
}
.gallery-slide-card img { width: 100%; height: 290px; object-fit: cover; background: #fff; }
.gallery-slide-card figcaption { padding: 16px 18px; font-weight: 700; color: var(--primary-dark); }

.contact-section { background: linear-gradient(135deg, #0b5f2f, #0e7b3b); }
.contact-form input, .contact-form textarea, .premium-login input, .reply-box textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #dbe7dd; border-radius: 12px; outline: none; margin-bottom: 14px; font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus, .premium-login input:focus, .reply-box textarea:focus { border-color: #0d7a3a; }

.main-footer { background: #0f1d13; color: #dce9df; padding-top: 55px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; padding-bottom: 30px; }
.footer-box h3 { color: var(--accent); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); text-align: center; padding: 18px 10px 24px; font-size: 14px; color: #adc5b4; }
.small-note { color: #9db2a4; font-size: 13px; margin-top: 8px; }

.admin-login-body { min-height: 100vh; margin: 0; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(rgba(8, 50, 24, 0.72), rgba(8, 50, 24, 0.72)), url("images/cover.jpg") center/cover no-repeat; }
.admin-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7, 90, 43, 0.22), rgba(243, 198, 35, 0.10)); }
.premium-login { position: relative; z-index: 2; width: min(430px, 92%); margin: auto; background: rgba(255,255,255,0.94); border: 1px solid rgba(255,255,255,0.35); border-radius: 24px; padding: 30px; box-shadow: 0 22px 50px rgba(0,0,0,0.18); backdrop-filter: blur(12px); }
.login-logo-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.login-logo { width: 84px; height: 84px; object-fit: contain; background: #fff; border-radius: 50%; padding: 6px; box-shadow: 0 10px 22px rgba(0,0,0,0.12); }
.premium-login h2 { text-align: center; color: #075a2b; font-size: 36px; margin-bottom: 20px; }
.error-msg { color: red; margin-bottom: 12px; text-align: center; }
.back-home { margin-top: 16px; text-align: center; }
.back-home a { color: #075a2b; font-weight: 600; }

.admin-dashboard-body { margin: 0; background: #edf3ee; min-height: 100vh; position: relative; }
.dashboard-page-bg { position: fixed; inset: 0; background: linear-gradient(rgba(245, 249, 246, 0.92), rgba(245, 249, 246, 0.92)), url("images/logo.png") center no-repeat; background-size: 420px; opacity: 0.12; pointer-events: none; }
.premium-dashboard { position: relative; z-index: 2; }
.dashboard-container { width: min(1320px, 94%); margin: 40px auto; }
.dashboard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 14px; flex-wrap: wrap; }
.dashboard-top h1 { color: #075a2b; font-size: 54px; margin-bottom: 6px; }
.dashboard-subtitle { color: #6b7280; font-size: 16px; }
.dashboard-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.dashboard-card { background: rgba(255,255,255,0.92); border: 1px solid #dfeadf; border-radius: 24px; padding: 34px; box-shadow: 0 18px 40px rgba(0,0,0,0.08); backdrop-filter: blur(8px); }
.dashboard-card h2 { margin-bottom: 24px; color: #075a2b; font-size: 34px; }
.dashboard-alert { padding: 16px 18px; border-radius: 14px; margin-bottom: 18px; font-weight: 700; }
.success-alert { background: #edf9f0; color: #0d7a3a; border: 1px solid #cfe8d5; }
.error-alert { background: #fff1f1; color: #c62828; border: 1px solid #f0c7c7; }
.table-wrap { overflow-x: auto; margin-top: 10px; }
table { width: 100%; border-collapse: collapse; min-width: 1300px; }
table th, table td { padding: 16px 14px; border: 1px solid #dbe7dd; text-align: left; font-size: 15px; vertical-align: top; }
table th { background: #eaf5ec; color: #075a2b; font-size: 16px; font-weight: 800; }
.reply-box { background: #f8fcf8; border: 1px solid #dbe7dd; border-radius: 16px; padding: 14px; min-width: 290px; }
.reply-box textarea { resize: vertical; min-height: 120px; }
.reply-btn { background: #0d7a3a; color: #fff; padding: 10px 16px; border: none; border-radius: 10px; cursor: pointer; font-weight: 700; }
.reply-btn:hover { background: #075a2b; }
.delete-btn { display: inline-block; background: #dc2626; color: #fff; padding: 10px 14px; border-radius: 10px; font-weight: 700; text-align: center; }
.delete-btn:hover { background: #b91c1c; }
.status-pending { color: #b45309; font-weight: 700; }
.status-replied { color: #0d7a3a; font-weight: 700; }
.reply-text { background: #eef8f0; border-left: 4px solid #0d7a3a; padding: 10px 12px; border-radius: 8px; white-space: pre-wrap; min-width: 180px; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-wrapper, .split-section, .services-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-slide-card, .gallery-slide-card { min-width: calc(50% - 11px); }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 18px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; }
  nav.show { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; padding: 18px 0 8px; }
  .hero-grid, .about-grid, .contact-wrapper, .split-section, .services-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-slider-overlay { min-height: 88vh; padding: 75px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
  .hero-stats { flex-direction: column; }
  .stat-box { width: 100%; }
  .hero-logo-card img { min-height: 220px; }
  .service-slide-card, .gallery-slide-card { min-width: 100%; }
  .section, .gallery-showcase, .services-showcase { padding: 72px 0; }
  .section-header h2, .split-content h2 { font-size: 30px; }
  .slider-copy h3 { font-size: 24px; }
  .dashboard-top h1 { font-size: 36px; }
  .dashboard-card { padding: 20px; }
  .premium-login { padding: 22px; }
  .brand-text strong { font-size: 18px; }
  .brand-text span { font-size: 11px; }
  .site-logo { width: 62px; height: 62px; }
}
