*{
  scroll-behavior: smooth;
}


/* Hero */
.contact-hero {
  background: url('/assets/contact-us.jpg') center/cover no-repeat;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero h1 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}



/* Contact Info Styling */
.contact-hero h3 {
  color: #F28C28;           /* base text color */
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #Ffff; 
}

.contact-hero h3 i {
  color: #Ffff;           /* icon color */
  margin-right: 5px;
}

.contact-hero h3 a {
  color: #FFF;           /* email link color */
  text-decoration: none;
}

.contact-hero h3 a:hover {
  text-decoration: underline;
}



/* Booking form */
.contact-booking {
  background: #fff;
  padding: 30px;
  max-width: 1000px;
  margin: -50px auto 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  
  
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 15px;
;
}
.booking-form input,
.booking-form select {
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  background: #000000;
  font-size: 1rem;
  height: 50px !important;
}
/* Default styling (desktop/tablet) */
.btn-submit {
  background: linear-gradient(90deg, #F28C28, #7B1E1E);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}


/* Adjust button size for small screens */
@media (max-width: 576px) {
  .btn-submit {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 20px;
    height: 50px !important;
  }
}

.btn-submit:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Icons with navbar gradient */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Default (Light Mode) */
body:not(.dark) .contact-card {
  background: #fff;
  color: #000;
}

/* Dark Mode */
body.dark .contact-card {
  background: #111;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #F28C28, #7B1E1E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-card h3,
.contact-card p {
  margin: 0 0 8px;
  color: inherit;
}

/* Get In Touch */
.get-in-touch {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}
.get-in-touch h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.contact-cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.contact-cards i {
  font-size: 2rem;
  color: #0072bc;
  margin-bottom: 15px;
}
.contact-cards h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.contact-cards p a {
  color: inherit;
  text-decoration: none;
}
.contact-cards p a:hover {
  text-decoration: underline
}


/* Booking Form Unique Footer */
.booking-footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  margin: 20px auto 30px; /* moved up: less bottom margin */
  max-width: 900px;
  text-align: center;
  position: relative;
  top: -90px; /* pull up a bit */
}

.booking-footer h2 {
  font-size: 2rem;
  margin-bottom: 5.5rem;
  background: linear-gradient(90deg, #F28C28, #7B1E1E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  
}


.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.field {
  position: relative;
}

.field i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #F28C28;
  font-size: 1rem;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.field label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: 0.2s;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label {
  top: -8px;
  left: 35px;
  font-size: 0.75rem;
  color: #F28C28;
}

.field input:focus,
.field select:focus {
  border-color: #F28C28;
  box-shadow: 0 0 8px rgba(242, 140, 40, 0.4);
  outline: none;
}

.btn-submit {
  margin-top: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #F28C28, #7B1E1E);
  transition: transform 0.2s, opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Dark mode adaptation */
body.dark .booking-footer {
  background: rgba(0,0,0,0.8);
  color: #fff;
}

body.dark .field input,
body.dark .field select {
  border: 1px solid #F28C28;
  color: #fff;
}

body.dark .field label {
  color: rgba(255,255,255,0.6);
}


/* Fix service select options */
.field select option {
  background: #111;   /* dark background for options */
  color: #F28C28;        /* white text */
}

body:not(.dark) .field select option {
  background: #fff;   /* light background for options */
  color: #F28C28;        /* black text */
}

.float-img {
width: 50px !important;
}


.contact-hero {
  background: url('../assets/contact-us.jpg') center/cover no-repeat;
}