/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background-color: #f7fafa;
  color: #1a2e35;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5f0ef;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}

.navbar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.navbar-subtitle {
  font-size: 0.7rem;
  color: #9ca3af;
  line-height: 1.2;
}

.navbar-nav {
  display: flex;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  transition: background 0.2s, color 0.2s;
}

.navbar-nav a:hover {
  background: #f0fdf9;
  color: #0f766e;
}

.navbar-nav a.active {
  background: #0f766e;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('akala1.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.15;
}

.hero-content .hero-tagline {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-content .hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-teal {
  background: #0f766e;
  color: #fff;
}

.btn-teal:hover {
  background: #0d6460;
}

.btn-green {
  background: #16a34a;
  color: #fff;
}

.btn-green:hover {
  background: #15803d;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 64px 20px;
}

.section-center {
  text-align: center;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 48px;
}

.max-container {
  max-width: 1100px;
  margin: 0 auto;
}

.max-container-md {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.bg-white { background: #fff; }
.bg-teal-light { background: #f0fdf9; }
.bg-gray-light { background: #f9fafb; }
.bg-amber-light { background: #fffbeb; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-body {
  padding: 24px;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-card-icon {
  font-size: 1.5rem;
}

.service-card-title-teal {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f766e;
}

.service-card-title-green {
  font-size: 1.15rem;
  font-weight: 700;
  color: #16a34a;
}

.service-card-body p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* ===== AWARD BANNER ===== */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.award-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.award-desc {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-teal {
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.link-teal:hover {
  color: #0d5f58;
}

/* ===== CONTACT BOXES ===== */
.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.contact-mini-box {
  background: #f0fdf9;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.contact-mini-box .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-mini-box h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-mini-box p {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ===== PAGE HERO (Farm / Tourism) ===== */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 60, 55, 0.8), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 32px 48px;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

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

/* ===== SPECIALTY CARDS ===== */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.spec-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.spec-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.spec-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 4px;
}

.spec-card .label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.spec-card p {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ===== GALLERY ===== */
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-grid-3 img,
.gallery-grid-4 img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== VIDEO EMBED ===== */
.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== TEXT CONTENT ===== */
.content-text {
  color: #374151;
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 18px;
}

.content-text strong {
  color: #1f2937;
}

/* ===== EXPERIENCE GRID ===== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.exp-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.exp-card .emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}

.exp-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 4px;
}

.exp-card p {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ===== AWARD SECTION (tourism) ===== */
.award-row {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.award-row .award-text {
  flex: 1;
  min-width: 280px;
  color: #374151;
  line-height: 1.8;
}

.award-row .award-text p {
  margin-bottom: 14px;
}

.award-row .award-img {
  flex-shrink: 0;
  width: 300px;
  max-width: 100%;
}

.award-row .award-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ===== CONTACT PAGE ===== */
.contact-page-hero {
  background: #0f766e;
  color: #fff;
  padding: 64px 20px;
  text-align: center;
}

.contact-page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: #f0fdf9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-info-body p,
.contact-info-body a {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
}

.contact-info-body a {
  color: #0f766e;
  font-weight: 500;
}

.contact-info-body a:hover {
  color: #0d5f58;
}

.contact-card {
  background: #f0fdf9;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-card-header img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
}

.contact-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #065f52;
}

.contact-card-header p {
  font-size: 0.8rem;
  color: #0f766e;
}

.contact-card-body {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.7;
}

.services-list {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
}

.services-list h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 14px;
}

.services-list ul {
  list-style: none;
}

.services-list ul li {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 4px 0;
}

.contact-cta-bar {
  background: #0f766e;
  color: #fff;
  text-align: center;
  padding: 48px 20px;
}

.contact-cta-bar p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: #073b35;
  color: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-brand-powered {
  font-size: 0.7rem;
  color: #5eead4;
  line-height: 1.2;
}

.footer-col-desc {
  font-size: 0.85rem;
  color: #99d0c9;
  line-height: 1.7;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #99d0c9;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  font-size: 0.85rem;
  color: #99d0c9;
  line-height: 1.8;
}

.footer-contact a {
  color: #99d0c9;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #5eead4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .hero-tagline {
    font-size: 1rem;
  }

  .page-hero {
    height: 260px;
  }

  .page-hero-content {
    padding: 20px 24px;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .navbar-nav {
    display: none;
  }

  .award-row {
    flex-direction: column;
  }

  .award-row .award-img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
