﻿body {
    margin-left: 0;
    margin-right: 0;
}

/* Apply margin only on screens wider than 992px (laptop & desktop) */
@media (min-width: 992px) {
    body {
        margin-left: 10rem;
        margin-right: 10rem;
    }
}

.carousel-item img {
    width: 100%;
    height: 60vh; /* 60% of viewport height */
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 40vh;
    }
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
   width:5%;
}
  }


.carousel-caption {
     background-color: rgba(0, 0, 0, 0.4); 
  left: 0;
  right: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

@media (min-width: 992px) {
  .carousel-caption {
    left: 15%;
    right: 15%;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
}


.card {
    background-color: #fef7ef;
}

.hero-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    height: 100%;
}

.side-card {
    border-radius: 15px;
    background-color: white;
}

.badge-custom {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}

.destination-img {
    border-radius: 12px;
    object-fit: cover;
    height: 100%;
    max-height: 90px;
    width: 100%;
}

.bg-cover {
    background-image: url('https://images.pexels.com/photos/1005417/pexels-photo-1005417.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black overlay */
    z-index: 1;
}
.star-rating {direction: rtl;display: inline-flex;gap: 5px;}
.star-rating input[type="radio"] { display: none; }
.star-rating .star { font-size: 2rem; color: #ccc; cursor: pointer; transition: color 0.2s ease; }
.star-rating input[type="radio"]:checked ~ .star { color: #ccc; }
.star-rating input[type="radio"]:checked + .star, .star-rating input[type="radio"]:checked + .star ~ .star { color: #ffc107; }
.star-rating .star:hover, .star-rating .star:hover ~ .star { color: #ffdb70; }


.inquiry-form {
  max-width: 1100px;
  margin: 60px auto;
  padding: 45px 55px;
  background: #fff9f1;
  border-radius: 22px;
  font-family: "Poppins", sans-serif;
}

.inquiry-form h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #1f2937;
}

.subtitle {
  text-align: center;
  margin: 10px 0 35px;
  color: #6b7280;
}

/* Inputs Row */
.form-row {
  display: flex;
  gap: 22px;
  margin-bottom: 35px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input {
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  transition: 0.3s ease;
}

.form-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
  outline: none;
}

/* Captcha + Button Row */
.action-row {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.action-row button {
  padding: 14px 46px;
  font-size: 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 12px 25px rgba(37,99,235,0.35);
  transition: 0.3s ease;
}

.action-row button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(37,99,235,0.45);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
  }

  .action-row {
    flex-direction: column;
  }

  .action-row button {
    width: 100%;
    max-width: 300px;
  }
}

