* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   NAVIGATION BAR - SOLID STYLE
============================== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

/* Navbar container */
.navbar {
  background: lch(100% 0.01 296.81); /* Dark navy */
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: relative;
  padding-bottom: -15px;
}

/* Add subtle line under navbar content */
.navbar .container::after {
  content: "";
  position: absolute;
  bottom: 0; /* stays inside the navbar */
  left: 4%; /* aligns with padding */
  width: 90%; /* same inner width */
  height: 0.5px;
  background-color: #2b2a2a76; /* gold line */
  border-radius: 2px;
   bottom: 10px;
}



/* Logo */
.logo a {
  color: #f30b23;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  margin-left: auto;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f7c04a;
}

/* Booking button */
.booking-btn {
  padding: 10px 6px !important;
  background: #f7c04a;
  color: #000 !important;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: none !important; /* force normal text */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: #eab308;
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.4s ease;
}

.menu-toggle span {
  width: 28px;
  height: 4.5px;
  background: #f7c04a;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    transition: all 0.1s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* ============================
   HAMBURGER TO X ANIMATION
============================ */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-toggle span {
    transition: all 0.3s ease;
  }
}

/* Modern Contact Page Styles */

/* Modern Hero Section */
.contact-hero-modern {
  background: linear-gradient(rgba(201, 189, 135, 0.374), rgba(12, 14, 20, 0.374)), 
              url('../images/sitting.jpg') center/cover no-repeat;
  padding: 100px 0 100px;
  text-align: center;
  color: white;
  
}

.hero-content-modern {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f7c04a 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #f7c04a;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(247, 192, 74, 0.3);
}

.hero-btn.secondary {
  background: transparent;
  border: 2px solid #f7c04a;
  color: #f7c04a;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 192, 74, 0.4);
}

.hero-btn.secondary:hover {
  background: rgba(247, 192, 74, 0.1);
}

/* Contact Methods Section */
.contact-methods {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.method-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

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

.method-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.method-icon.phone {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
}

.method-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.method-icon.email {
  background: linear-gradient(135deg, #E53935 0%, #EF5350 100%);
}

.method-icon.visit {
  background: linear-gradient(135deg, #FB8C00 0%, #FFA726 100%);
}

.method-content h3 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 700;
}

.method-content p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  background: #f3f4f6;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.method-link:hover {
  background: #e5e7eb;
  color: #f7c04a;
}

.method-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.method-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.method-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

.method-info i {
  color: #f7c04a;
}

/* Modern Contact Form */
.contact-form-modern {
  padding: 60px 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 15px;
  font-weight: 700;
}

.form-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.modern-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
  font-size: 1rem;
}

.form-group label i {
  color: #f7c04a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7c04a;
  box-shadow: 0 0 0 3px rgba(247, 192, 74, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.submit-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #fdcc18 0%, #191b1f 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
}

.submit-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(17, 24, 39, 0.3);
  background: linear-gradient(135deg, #f7c04a 0%, #f59e0b 100%);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 0.9rem;
}

.form-note i {
  color: #10B981;
}

/* Quick Info Section */
.quick-info {
  padding: 80px 0;
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 2.5rem;
  color: #f7c04a;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Modern Footer */
.footer-modern {
  background: #111827;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-logo h3 {
  font-size: 1.8rem;
  color: #f30b23;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-logo p {
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  color: #f7c04a;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #D1D5DB;
}

.footer-contact i {
  color: #f7c04a;
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(247, 192, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #f7c04a;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9CA3AF;
  margin-bottom: 10px;
}

.footer-links a {
  color: #f7c04a;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-modern {
    padding: 120px 0 80px;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero-modern {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .method-card {
    padding: 25px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}