/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2c5530, #4a7c59);
  color: white;
  border-color: #2c5530;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e3a21, #3a6347);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2c5530;
  border-color: #2c5530;
}

.btn-secondary:hover {
  background: #2c5530;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2c5530;
  border-color: #2c5530;
}

.btn-outline:hover {
  background: #2c5530;
  color: white;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: #2c5530;
  font-size: 1.8rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2c5530;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #2c5530;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

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

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 20px 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 2rem;
}

.hero-title {
  color: #2c5530;
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  width: 500px;
  height: 400px;
  background: linear-gradient(135deg, #2c5530, #4a7c59);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 20px 40px rgba(44, 85, 48, 0.3);
}

.hero-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(44, 85, 48, 0.3);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: #2c5530;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c5530;
  font-weight: 500;
}

.feature i {
  font-size: 1.2rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #666;
  border: 2px dashed #ccc;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Villa Details Section */
.villa-details {
  padding: 100px 0;
  background: #f8f9fa;
}

.villa-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.villa-option {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.villa-option:hover {
  transform: translateY(-10px);
}

.villa-option.featured {
  border: 3px solid #2c5530;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c5530;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.option-header h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 2rem;
}

.option-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.option-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-features i {
  color: #2c5530;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-placeholder {
  height: 250px;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #666;
  border: 2px dashed #ccc;
}

.gallery-placeholder i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Booking Section */
.booking {
  padding: 100px 0;
  background: #f8f9fa;
}

.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5530;
}

.booking-summary {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-item.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c5530;
  border-top: 2px solid #e9ecef;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  color: #2c5530;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.author-info span {
  color: #999;
  font-size: 0.9rem;
}

.rating {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating i {
  margin-right: 0.2rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #2c5530;
  margin-top: 0.2rem;
}

.contact-item h4 {
  color: #2c5530;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.whatsapp-link {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.contact-form h3 {
  color: #2c5530;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2c5530;
}

/* Footer */
.footer {
  background: #2c5530;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* Responsive Design */
/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero {
    padding: 100px 30px 50px;
  }

  .hero-content {
    margin-right: 1.5rem;
  }

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

  .hero-placeholder {
    width: 450px;
    height: 350px;
  }

  .villa-options {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }

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

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

  .about-content {
    gap: 3rem;
  }

  .contact-content {
    gap: 3rem;
  }

  .location-content {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-placeholder {
    width: 400px;
    height: 320px;
  }

  .villa-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .about-content {
    gap: 2.5rem;
  }

  .contact-content {
    gap: 2.5rem;
  }

  .location-content {
    gap: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 50px;
    min-height: 90vh;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 1rem;
  }

  .hero-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-overlay {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

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

  .villa-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .villa-option.featured {
    transform: none;
    border-width: 2px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .location-features {
    gap: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  /* Improve facilities and policies layout */
  .about-text > div[style*="display: flex"] {
    flex-direction: column;
    gap: 2rem;
  }

  .about-text > div[style*="display: flex"] > div {
    flex: 1;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 15px 40px;
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .hero-placeholder {
    height: 250px;
    margin-top: 1rem;
  }

  .hero-placeholder i {
    font-size: 3rem;
  }

  .hero-placeholder p {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .villa-option {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .villa-option h3 {
    font-size: 1.4rem;
  }

  .price {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-item i {
    font-size: 1.3rem;
  }

  .contact-item h4 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .whatsapp-link {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .location-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .whatsapp-booking-section {
    padding: 1.5rem;
  }

  .whatsapp-booking-section h4 {
    font-size: 1.1rem;
  }

  .whatsapp-booking-section p {
    font-size: 0.9rem;
  }

  .btn-whatsapp {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .map-info h4 {
    font-size: 1rem;
  }

  .map-info p {
    font-size: 0.8rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info span {
    font-size: 0.85rem;
  }

  .rating {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

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

  .social-links a {
    width: 35px;
    height: 35px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  /* Improve mobile navigation */
  .nav-logo h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    top: 60px;
    padding: 1.5rem 0;
  }

  .nav-menu li {
    margin: 0.8rem 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  /* Better mobile gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    margin-bottom: 1rem;
  }

  /* Mobile-optimized about section */
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-text ul {
    font-size: 0.9rem;
  }

  .about-text ul li {
    margin-bottom: 0.5rem;
  }

  /* Mobile villa options */
  .villa-options {
    gap: 1rem;
  }

  .option-features ul {
    padding-left: 0;
  }

  .option-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  /* Mobile contact form improvements */
  .contact-form .form-group {
    margin-bottom: 1.2rem;
  }

  .contact-form input[type="date"] {
    font-size: 0.95rem;
  }

  /* Mobile location improvements */
  .location-info p {
    font-size: 0.95rem;
  }

  .location-feature p {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 90px 10px 30px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .btn {
    max-width: 260px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .villa-option {
    padding: 1.2rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .whatsapp-booking-section {
    padding: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 80px 20px 30px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .btn {
    width: auto;
    max-width: 200px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success/Error messages */
.message {
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-weight: 500;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact form validation styles */
.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: #dc3545;
}

.contact-form input:valid,
.contact-form textarea:valid {
  border-color: #28a745;
}

/* Loading state for submit button */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Location Section */
.location {
  padding: 100px 0;
  background: white;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.location-info h3 {
  color: #2c5530;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.location-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.location-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-feature i {
  font-size: 1.5rem;
  color: #2c5530;
  margin-top: 0.2rem;
}

.location-feature h4 {
  color: #2c5530;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.location-feature p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.whatsapp-booking-section {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: white;
}

.whatsapp-booking-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.whatsapp-booking-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 800px;
  height: 200px;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 200px;
}

.map-info h4 {
  color: #2c5530;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.map-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.map-info .btn {
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* WhatsApp Integration Styles */
.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
  font-weight: 600;
  padding: 15px 30px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
  font-size: 1.3rem;
}

.whatsapp-link {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

/* WhatsApp button pulse effect */
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
  width: 300px;
  height: 300px;
}

/* Map Section */
.map-container iframe {
  width: 100%;
  max-width: 100%;
  height: 300px;
}

.map-overlay {
  position: static;
  margin-top: 1rem;
  max-width: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.floating-btn i {
  font-size: 1.5rem;
}

.floating-text {
  font-size: 0.9rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Hide floating button on mobile when menu is open */
@media (max-width: 768px) {
  .floating-btn {
    padding: 12px 16px;
  }

  .floating-text {
    display: none;
  }

  .floating-btn i {
    font-size: 1.3rem;
  }
}

/* WhatsApp "Ready to Book?" Section */
.whatsapp-booking-section {
  padding: 2rem 1rem;
  text-align: center;
}

.whatsapp-booking-section h4 {
  font-size: 1.3rem;
}

.whatsapp-booking-section p {
  font-size: 1rem;
}

/* Facilities and Our Policies Flexes */
.features,
.location-features,
.our-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; /* centers on smaller screens */
}

/* Villa Option / Policy Cards */
.villa-option,
.policy-card {
  flex: 1 1 280px; /* shrink and grow with screen */
  max-width: 100%;
  margin-bottom: 1rem;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .map-container iframe {
    height: 250px;
  }

  .whatsapp-booking-section h4 {
    font-size: 1.1rem;
  }

  .whatsapp-booking-section p {
    font-size: 0.95rem;
  }

  .features,
  .location-features,
  .our-policies {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 200px;
  }

  .whatsapp-booking-section h4 {
    font-size: 1rem;
  }

  .whatsapp-booking-section p {
    font-size: 0.9rem;
  }
}
