@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* Navbar Styles */
.navbar {
  width: 100%;
  /* background: rgba(22, 90, 65, 0.85); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
}
.nav-brand img {
  width: 120px;
}
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 101;
}
.hamburger {
  width: 28px;
  height: 3px;
  background: #e9b994;
  border-radius: 2px;
  display: block;
  margin-top: 4px;
  transition: all 0.3s;
}
.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  right: 40px;
  background: #165a41;
  min-width: 180px;
  border: 1px solid #e9b994;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.nav-links.nav-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-links li {
  width: 100%;
  text-align: left;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 14px 24px;
  display: block;
  transition: background 0.2s;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    flex-direction: column;
    background: #165a41;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    min-width: 180px;
    border-radius: 0 0 10px 10px;
    gap: 0;
  }
  .nav-links.nav-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html,
* {
  font-family: "Work Sans", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("assets/img33.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 46, 0.8) 0%,
    rgba(26, 58, 46, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: #e9b994;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.cta-button {
  background: #165a41;
  border: 1px solid #e9b994;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.service-chat-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #165a41;
  border: 1px solid #e9b994;
  color: white;
  padding: 8px;
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 1;
  box-shadow: 0 4px 15px rgba(22, 90, 65, 0.15);
  width: 60%;
  height: 54px;
}

.service-chat-btn:hover {
  background: #0d3f2d;
  color: white;
  /* transform: translateX(-50%) translateY(-2px); */
  box-shadow: 0 6px 20px rgba(22, 90, 65, 0.25);
}

.cta-button:hover {
  background: #0d3f2d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.3);
}

/* Booking Section */
.booking-section {
  background: #f5efe7;
  padding: 40px 0;
  position: relative;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.booking-title {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  color: #165a41;
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 40px;
}

.form-group select {
  width: 100%;
  padding: 15px 0;
  font-size: 1.1rem;

  font-weight: 300;
  background: none;
  border: none;
  border-bottom: 1px solid #165a41;
  color: #165a41;
  transition: all 0.3s ease;
}

.form-group input {
  width: 100%;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 300;
  background: none;
  border: none;
  border-bottom: 1px solid #165a41;
  color: #165a41;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
}

.form-group input::placeholder {
  color: #165a41;
  font-size: 1.1rem;
  font-weight: 300;
}

/* .form-group select {
  color: #165a41;
  font-weight: 300;
  border-bottom: 1px solid #e9b994;
} */

/* .form-group input:focus + .form-underline,
.form-group select:focus + .form-underline {
  width: 100%;
} */

.form-group select:focus + .form-underline + .dropdown-arrow {
  transform: rotate(180deg);
}

.confirm-button {
  background: #165a41;
  border: 2px solid #e9b994;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.confirm-button:hover {
  background: #0d3f2d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services-section {
  background: #165a41;
  padding: 30px 0;
  color: white;
}

.services-title {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  /* aspect-ratio: 3/4; */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* .service-card:hover {
  transform: translateY(-10px);
} */

.service-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

/* .service-card:hover .service-image img {
  transform: scale(1.1);
} */

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(26, 58, 46, 0.8) 0%,
    rgba(26, 58, 46, 0.3) 50%,
    transparent 100%
  );
  transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 58, 46, 0.9) 0%,
    rgba(26, 58, 46, 0.5) 50%,
    transparent 100%
  );
}

.service-name {
  position: absolute;
  bottom: 40px;
  left: 50px;
  text-align: center;

  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .service-name {
  transform: translateY(-5px);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

.section h2 {
  color: white; /* gold accent */
  margin-bottom: 15px;
  font-size: 18px;
}

.section p {
  line-height: 2;
  font-size: 14px;
  color: #f0f0f0;
}

/* Founder & Who We Are */
.block {
  background: #0f3b26;
  border: 1px solid #e9b994; /* neon green stroke effect */
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 12px;
  text-align: justify;
}

.block h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #e9b994;
  text-align: center;
}

.block p {
  font-size: 14px;
  color: #eaeaea;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.service-content {
  flex: 1;
  background: #0f3b26;
  border: 2px solid #c9a76d;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #e9b994;
}

.service-content p {
  font-size: 14px;
  color: #eaeaea;
  margin-bottom: 10px;
}

.service-content .delivery {
  font-style: italic;
  font-size: 13px;
  color: #ddd;
}

.service-content1 {
  display: none;
  flex: 1;
  background: #0f3b26;
  border: 2px solid #c9a76d;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.service-content1 h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #e9b994;
}

.service-content1 p {
  font-size: 14px;
  color: #eaeaea;
  margin-bottom: 10px;
}

.service-content1 .delivery {
  font-style: italic;
  font-size: 13px;
  color: #ddd;
}

.show-on-mobile {
  display: none;
}

.show-on-desktop {
  display: inline;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .navbar {
    padding: 20px 14px;
  }
  .nav-brand img {
    margin-left: -1px;
  }
  .services {
    flex-direction: column;
  }
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  background-color: #f5efe7;
  padding: 20px 40px;
  width: 100%;
}

@media (max-width: 1100px) {
  .about-container {
    gap: 60px;
    padding: 20px 10px;
  }
  /* .text-section {
    width: 300px;
  } */
  .image-box img {
    width: 500px;
    height: 390px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .services {
    flex-direction: row;
  }
  .text-section {
    width: 100%;
    padding: 0px 50px;
  }

  .image-box {
    width: 200px;
    height: 280px;
  }

  .image-box img {
    width: 100%;
    height: 100%;
  }

  .about-container {
    flex-direction: row;
    gap: 3px;
  }

  .video-section {
    width: 300px;
    height: 260px;
  }

  .video-section video {
    width: 100%;
    height: 100%;
  }

  /* .image-box img {
    width: 120px;
    height: 100px;
  } */

  .web {
    padding: 0px 20px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px 5vw;
  }
  .text-section {
    width: 100%;
    max-width: 400px;
  }

  .text-section p {
    padding: 0px 60px;
  }
  .image-box img {
    width: 180px;
    height: 140px;
  }
  .service-content1 {
    display: inline;
  }

  .services {
    display: none;
  }

  .show-on-mobile {
    display: inline;
  }
  .show-on-desktop {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 10px 2vw;
    gap: 18px;
  }
  .text-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .text-section p {
    width: 100%;
    font-size: 0.9rem;
    padding: 0px 2px;
  }
  .image-box img {
    width: 120px;
    height: 90px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
}

.text-section h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  margin: 0 0 10px;
  color: #165a41;
}

.text-section p {
  font-size: 1.1;
  font-weight: 500;
  margin: 0;
  text-align: center;
  color: #165a41;
}

.image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-section {
  width: 300px;
  height: 260px;
  border: 1px solid #e9b994;
  border-radius: 4px;
}

.video-section video {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.image-box img {
  width: 280px;
  height: 260px;
  color: #a67c52;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #e9b994;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  color: white;
  background-color: #165a41;
  padding: 8px;
  position: relative;
}

.footer-text {
  font-size: 14px;
}

.footer-text a {
  color: white;
  text-decoration: none;
  font-weight: medium;
}

.footer-logo-text img {
  width: 50%;
}

.footer-logo {
  margin-bottom: 0;
  position: relative;
  top: 30px;
}

.footer-logo img {
  width: 80px;
  color: white;
}

.email {
  margin-top: 10px;
}

.web {
  margin-top: 10px;
}

.whatsApp {
  margin-top: 10px;
}

.fa-envelope {
  color: #e9b994;
  margin-right: 8px;
}

.fa-globe {
  color: #e9b994;
  margin-right: 8px;
}

.fa-instagram {
  color: #e9b994;
  margin-right: 8px;
}

.fa-whatsapp {
  color: #e9b994;
  margin-right: 3px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 40px;
  border: none;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  /* font-family: "Playfair Display", serif; */
  font-size: 2rem;
  color: #1a3a2e;
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

.close-modal:hover {
  color: #1a3a2e;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
  }
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 0 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-title {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-content {
    margin: 30% auto;
    width: 90%;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .booking-section {
    padding: 60px 0;
  }

  .services-section {
    padding: 30px 0;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Form validation styles */
