/* =========================
   Global Styles
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #1f2d1f;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =========================
   Header
========================= */
header {
  background: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 45px;
}

.logo span {
  font-weight: 700;
  font-size: 18px;
  color: #0f3d2e;
}
/*
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.nav a {
  text-decoration: none;
  color: #0f3d2e;
  font-weight: 500;
  font-size: 14px;
}
*/
nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #0f3d2e;
  font-weight: 500;
}

/* Mobile only */
@media (max-width: 767px) {

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Desktop */
@media (min-width: 768px) {

  nav {
    display: flex !important;
    flex-direction: row;
  }

  .menu-toggle {
    display: none;
  }
}
/* =========================
   Hero Section
========================= */
.hero {
  background:
    linear-gradient(rgba(15,61,46,0.75), rgba(15,61,46,0.75)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.btn {
  background: #caa64b;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #fff;
}

/* =========================
   Sections
========================= */
.section {
  padding: 60px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #0f3d2e;
  font-size: 2rem;
}

/* =========================
   Products
========================= */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

/* =========================
   Why Choose Us
========================= */
.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why div {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
}

/* =========================
   Contact Section
========================= */

.contact-section {
  text-align: center;
  background: #f8faf8;
}

.contact-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
}

.contact-container {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr;
}

.contact-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.contact-card h3 {
  color: #0f3d2e;
  margin-bottom: 15px;
}

.contact-card a {
  text-decoration: none;
  color: #caa64b;
  font-weight: 600;
  word-break: break-word;
}

.contact-card a:hover {
  color: #0f3d2e;
}

/* Tablet */
@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =========================
   Contact Form
========================= */

.contact-form-container {
  margin-top: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
  justify-content: center;
}

.contact-form-container h3 {
  color: #0f3d2e;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #0f3d2e;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #caa64b;
  box-shadow: 0 0 0 3px rgba(202,166,75,0.15);
}

.submit-btn {
  background: #0f3d2e;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #164d3a;
}

/* Desktop Form Layout */
@media (min-width: 768px) {

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

  .form-group:last-of-type {
    grid-column: span 2;
  }

  .submit-btn {
    grid-column: span 2;
  }
}

/* =========================
   Footer
========================= */
footer {
  background: #0f3d2e;
  color: white;
  text-align: center;
  padding: 25px 20px;
}

/* =========================
   Modal
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 350px;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.modal-content a {
  display: block;
  margin: 12px 0;
  padding: 12px;
  background: #0f3d2e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.close {
  color: red;
  cursor: pointer;
  margin-top: 15px;
}

/* =========================
   Tablet
========================= */
@media (min-width: 600px) {

  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 40px;
  }

  nav a {
    font-size: 16px;
  }

  .hero {
    padding: 120px 40px;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .why {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    max-width: 1100px;
    margin: auto;
  }
  .menu-toggle {
  display: none;
}

nav {
  display: flex !important;
  flex-direction: row;
  width: auto;
  padding-top: 0;
}
}

/* =========================
   Desktop
========================= */
@media (min-width: 1024px) {

  .hero h2 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .products {
    grid-template-columns: repeat(4, 1fr);
  }

  .why {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Mobile Navigation */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 28px;
  color: #0f3d2e;
  cursor: pointer;
}

nav {
  display: none;
  flex-direction: column;
  width: 100%;
  text-align: center;
  gap: 15px;
}

nav.active {
  display: flex;
}

nav a {
  padding: 10px;
}

/* Tablet & Desktop */
@media (min-width: 600px) {

  .menu-toggle {
    display: none;
  }

  nav {
    display: flex !important;
    flex-direction: row;
    width: auto;
    gap: 25px;
    padding-top: 0;
  }
}

/*floating whatsapp button*/
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}
