
/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background:
    radial-gradient(circle at top left, #e9f5ee 0%, transparent 40%),
    radial-gradient(circle at bottom right, #f6f1e8 0%, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);

  color: #1a1a1a;
  line-height: 1.4;
}

/* =========================
   NAVBAR
========================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 30px;

  background:
    linear-gradient(rgba(15, 61, 46, 0.92), rgba(15, 61, 46, 0.92)),
    url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1200&q=80");

  background-size: cover;
  background-position: center;

  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}

.logo-text {
  font-weight: 600;
  color: white;
  font-size: 20px;
}

.menu {
  display: flex;
  gap: 18px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px 20px;

  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(15, 61, 46, 0.72),
      rgba(0, 0, 0, 0.60)
    ),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6")
    center/cover no-repeat;

  color: white;
}
/* CONTENT */
.hero-content {
  max-width: 850px;
  width: 100%;
  z-index: 2;
}

/* TITLE */
.hero h1 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;

  margin-bottom: 22px;

  text-shadow:
    0 3px 12px rgba(0,0,0,0.45);
}

/* DESCRIPTION */
.hero p {
  max-width: 760px;

  margin: auto;

  font-size: 19px;
  line-height: 1.9;

  color: rgba(255,255,255,0.96);

  text-shadow:
    0 2px 10px rgba(0,0,0,0.4);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .hero {
    min-height: 45vh;
    padding: 30px 18px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }
}

.hero h1 {
  font-size: 42px;
}

/* =========================
   SECTION
========================= */
.section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0f3d2e;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2ecc71;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* =========================
   CATALOG BACKGROUND
========================= */
#catalog {
  position: relative;
  padding: 90px 20px;

  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.92)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  pointer-events: none;
}

#catalog > * {
  position: relative;
  z-index: 2;
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 14px;
}

/* =========================
   MODAL BACKDROP
========================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  padding: 20px;
}

.modal.show {
  display: flex;
}

/* =========================
   MODAL CONTENT (CENTERED)
========================= */
.modal-content {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: white;
  border-radius: 16px;
  padding: 25px;

  overflow-y: auto;

  text-align: center;

  animation: pop 0.2s ease;
}

@keyframes pop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================
   MODAL HEADER
========================= */

/* =========================
   MODAL HEADER (CENTERED STYLE)
========================= */
.modal-header {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 20px;
  padding-bottom: 12px;

  border-bottom: 1px solid #eee;
}

/* CENTER TITLE */
.modal-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0f3d2e;
  text-align: center;
}

/* DECORATIVE LINE UNDER TITLE */
.modal-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;

  background: #2ecc71;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* FLOATING CLOSE BUTTON (NOT DISTURBING CENTER ALIGNMENT) */
.close-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: none;

  background: #0f3d2e;
  color: white;

  cursor: pointer;
}

/* =========================
   MODAL DESCRIPTION
========================= */
.modal-content p {
  max-width: 650px;
  margin: 10px auto 25px;

  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* =========================
   MODAL TITLE DECORATION
========================= */
.modal-content > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;

  background: #2ecc71;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* =========================
   MODAL GRID
========================= */
.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;

  margin-top: 10px;
}

/* =========================
   INFO SECTION
========================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;

  padding: 80px 40px;
  background: linear-gradient(135deg, #f4f7f5, #eef3f0);
}

.info-card {
  padding: 35px;
  border-radius: 18px;
  color: black;

  display: flex;
  flex-direction: column;
  gap: 14px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.info-card .icon {
  font-size: 40px;
}

.info-card h2 {
  font-size: 24px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
}

.info-card ul {
  padding-left: 18px;
}

.info-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

.info-card.about {
  background: linear-gradient(135deg, #1f5f3b, #2ecc71);
}

.info-card.contact {
  background: linear-gradient(135deg, #0f3d2e, #16a085);
}

/* BUTTONS */
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

.btn.wa { background: #25D366; color: white; }
.btn.mail { background: #EA4335; color: white; }

/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER LAYOUT
========================= */
.footer {
  background: #0f3d2e;
  color: white;
  padding: 40px 20px 20px;
}

/* Top section layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Brand text */
.footer-brand h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  max-width: 300px;
}

/* =========================
   SOCIAL ICON ROW (MAIN FIX)
========================= */
.social-icons {
  display: flex;
  flex-direction: row;   /* LEFT → RIGHT */
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   ICON BUTTON STYLE
========================= */
.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);

  transition: all 0.2s ease;
  text-decoration: none;
}

/* ICON IMAGE SIZE */
.social-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* HOVER EFFECT */
.social-icons a:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
   z-index: 100000;
}

.floating a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.wa { background: #25D366; }
.mail { background: #EA4335; }

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #0f3d2e;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 28px;
  }

  .grid,
  .modal-grid {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }
}

.thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #eee;
  transition: 0.2s;
}

.thumbs img:hover {
  transform: scale(1.08);
  border-color: #2ecc71;
}

.video-thumb {
  padding: 8px 10px;
  background: #0f3d2e;
  color: white;
  font-size: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.about-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f4fff4, #ffffff);
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-tag {
  display: inline-block;
  background: #0f5132;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-header h2 {
  font-size: 42px;
  color: #14532d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-intro {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  color: white;
  line-height: 1.8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-text {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.commitment-box {
  margin-top: 20px;
}

.commitment-box h3 {
  text-align: center;
  font-size: 32px;
  color: #14532d;
  margin-bottom: 40px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.commitment-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 1px solid #e5f3e5;
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.commitment-card .icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.commitment-card h4 {
  color: #14532d;
  margin-bottom: 12px;
  font-size: 20px;
}

.commitment-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.about-footer {
  margin-top: 60px;
  text-align: center;
}

.about-footer p {
  font-size: 24px;
  font-weight: 600;
  color: #14532d;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

  .about-header h2 {
    font-size: 32px;
  }

  .about-intro,
  .about-text {
    font-size: 16px;
  }

  .about-footer p {
    font-size: 20px;
  }
}
.contact-section {
  padding: 100px 20px;

  background:
    linear-gradient(rgba(8, 30, 20, 0.88), rgba(8, 30, 20, 0.88)),
    url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-container {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info {
  color: white;
}

.contact-tag {
  display: inline-block;

  background: rgba(255,255,255,0.12);

  border: 1px solid rgba(255,255,255,0.2);

  backdrop-filter: blur(8px);

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.contact-info h2 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.9;

  color: rgba(255,255,255,0.92);

  max-width: 650px;

  margin-bottom: 40px;
}

/* ======================================================
   SIMPLE & CLEAN CONTACT UI
====================================================== */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 35px;
}

/* ======================================================
   CONTACT ITEM
====================================================== */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);

  background: rgba(255,255,255,0.12);

  border-color: rgba(255,255,255,0.16);
}

/* ======================================================
   ICON
====================================================== */

.contact-item .icon {
  width: 58px;
  height: 58px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #16a34a,
      #22c55e
    );

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  flex-shrink: 0;

  box-shadow:
    0 8px 20px rgba(34,197,94,0.25);
}

/* ======================================================
   CONTENT
====================================================== */

.contact-item > div:last-child {
  flex: 1;
}

.contact-item h4 {
  font-size: 20px;
  font-weight: 600;

  color: white;

  margin-bottom: 10px;
}

.contact-item p {
  color: rgba(255,255,255,0.88);

  font-size: 15px;
  line-height: 1.8;

  margin-bottom: 4px;
}

/* ======================================================
   LINKS
====================================================== */

.contact-item a {
  color: white;
  text-decoration: none;
  font-size: large;
  transition: 0.25s ease;
}

.contact-item a:hover {
  color: #9ff0b8;
}

/* ======================================================
   PHONE BUTTONS
====================================================== */

.phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 14px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

/* WhatsApp */

.phone-chip.whatsapp {
  background: #128e40;
  color: white;
}

/* Call */

.phone-chip.call {
  background: white;
  color: #14532d;
}

.phone-chip:hover {
  transform: translateY(-3px);
}

/* ======================================================
   BUTTONS
====================================================== */

.contact-buttons-modern {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.contact-btn.wa {
  background: #25D366;
  color: white;
}

.contact-btn.mail {
  background: white;
  color: #14532d;
}

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

/* ======================================================
   RIGHT CARD
====================================================== */

.contact-card {
  background: rgba(255,255,255,0.96);

  backdrop-filter: blur(10px);

  border-radius: 24px;

  padding: 40px;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.18);
}

.card-icon {
  width: 72px;
  height: 72px;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #16a34a,
      #22c55e
    );

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  margin-bottom: 24px;
}

.contact-card h3 {
  font-size: 32px;
  color: #14532d;
  margin-bottom: 18px;
}

.contact-card p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-card ul {
  list-style: none;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;

  margin-bottom: 30px;
}

.contact-card ul li {
  position: relative;

  padding-left: 28px;

  color: #444;
  line-height: 1.6;
}

.contact-card ul li::before {
  content: "✔";

  position: absolute;
  left: 0;
  top: 0;

  color: #16a34a;
  font-weight: bold;
}

/* ======================================================
   HIGHLIGHT BOX
====================================================== */

.contact-highlight {
  background:
    linear-gradient(
      135deg,
      #14532d,
      #1f7a45
    );

  color: white;

  padding: 18px;

  border-radius: 16px;

  line-height: 1.7;
  font-size: 15px;
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 992px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-text {
    margin-inline: auto;
  }

  .contact-details {
    align-items: center;
  }

  .contact-item {
    width: 100%;
    max-width: 650px;
  }

  .contact-buttons-modern {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .contact-section {
    padding: 80px 15px;
    background-attachment: scroll;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item .icon {
    margin-bottom: 10px;
  }

  .phone-list,
  .contact-buttons-modern {
    justify-content: center;
  }

  .phone-chip,
  .contact-btn {
    width: 100%;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-item {
    padding: 20px 18px;
  }

  .contact-item h4 {
    font-size: 18px;
  }

  .contact-item p {
    font-size: 14px;
  }
}