@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-red: #c62828;
  --primary-blue: #0d47a1;
  --bg-pink: #fff5f6;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --white: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-right: 15px;
}

.nav-link:hover {
  color: var(--primary-red);
}

.btn-nav-quote {
  background-color: var(--primary-red);
  color: white;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s;
}

.btn-nav-quote:hover {
  background-color: #b71c1c;
  color: white;
}

/* Hero Section */
.hero-section {
  background-color: var(--bg-pink);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-badge i {
  color: #10b981; /* Green checkmark */
  margin-right: 8px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary-red);
  display: block;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.pricing-card {
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.price-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-pill {
  font-size: 0.75rem;
  background: #fff3e0;
  color: #e65100;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: 5px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn-primary-red {
  background-color: var(--primary-red);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-red:hover {
  background-color: #b71c1c;
  color: white;
}

.btn-primary-blue {
  background-color: var(--primary-blue);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-blue:hover {
  background-color: #0d3c85;
  color: white;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
  gap: 8px;
}

.hero-image-wrapper {
  position: relative;
  padding: 20px;
}

#hero-form {
  width: 100%;
  background-color: #fff0f2;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(198, 40, 40, 0.1);
}

.safe-badge {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

.safe-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-image-wrapper {
    margin-top: 50px;
  }
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--bg-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-circle {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(198, 40, 40, 0.2);
}

.feature-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-pink);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon-box {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.service-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.icon-box-red {
  background-color: #d3405b; /* Matching the red/maroon from image */
}

.icon-box-blue {
  background-color: #0b2c4d; /* Matching the dark blue from image */
}

.icon-box-pink {
  background-color: #eb8896; /* Matching the lighter pink/red from image */
}

.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-title i {
  font-size: 1rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 10px;
  color: #b71c1c;
}

.btn-cta-wide {
  background-color: var(--primary-red);
  color: white;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
  transition: all 0.3s ease;
  margin-top: 50px;
  display: inline-block;
}

.btn-cta-wide:hover {
  background-color: #b71c1c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #051b30; /* Darker blue than primary for contrast */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.image-composition {
  position: relative;
  height: 400px;
  width: 100%;
}

.composition-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  z-index: 1;
  overflow: hidden;
}

.composition-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.composition-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  z-index: 2;
  border: 5px solid #051b30; /* Match background for separation effect */
  border-radius: 1rem; /* Bootstrap rounded-4 is approx 1rem */
  overflow: hidden;
}

.composition-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-row {
  background: rgba(255, 255, 255, 0.08); /* slight transparency */
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s ease;
}

.feature-row:hover {
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon-red {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(198, 40, 40, 0.3);
}

.feature-text h5 {
  font-size: 1rem;
  font-weight: 600;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .image-composition {
    height: 350px;
    margin-bottom: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .image-composition {
    height: 300px;
    width: 100%;
  }

  .service-icon-box {
    height: 300px;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.process-container {
  position: relative;
  padding-top: 30px;
}

.process-line {
  position: absolute;
  top: 90px; /* Aligns with the circles */
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: #ffcdd2; /* Light red line */
  z-index: 0;
}

.process-card {
  border-radius: 12px;
  padding: 40px 25px 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-10px);
}

.card-red {
  background-color: #c62828;
}

.card-blue {
  background-color: #051b30;
}

.card-pink {
  background-color: #eb8896;
}

.step-circle {
  width: 60px;
  height: 60px;
  background-color: white;
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-blue .step-circle,
.card-pink .step-circle {
  color: var(--primary-blue);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  flex-grow: 1;
}

.step-icon-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  font-size: 1.5rem;
}

.trust-badge {
  background-color: var(--bg-pink);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 30px;
  border-radius: 8px;
}

.trust-badge span {
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Special Pricing Section */
.pricing-offer-section {
  background-color: #f8e1e4; /* Light Pink background matching design */
  padding: 80px 0;
}

.offer-badge {
  background-color: var(--primary-red);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 30px;
  line-height: 1.2;
}

.text-primary-blue {
  color: var(--primary-blue);
}

.offer-feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--primary-blue);
}

.offer-list li:last-child {
  margin-bottom: 0;
}

.offer-list li i {
  color: #10b981; /* Green check */
  font-size: 1.2rem;
}

.consultation-alert {
  background: rgba(255, 255, 255, 0.5);
  border-left: 4px solid var(--primary-red);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.btn-outline-light-custom {
  background: white;
  color: var(--primary-blue);
  border: 2px solid white;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-outline-light-custom:hover {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.mini-feature-card {
  background: white;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mini-icon-box {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.mini-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Quote Form Section */
.quote-form-section {
  padding: 80px 0;
  background-color: var(--white);
}

.quote-form-card {
  background-color: #fff0f2; /* Very light pink/red shade */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(198, 40, 40, 0.1);
}

.form-control-custom,
.form-select-custom {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: white;
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}

.form-control-custom::placeholder {
  color: #9ca3af;
}

.btn-quote-submit {
  background-color: #b71c1c; /* Darker red matching button in image */
  color: white;
  font-weight: 700;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-quote-submit:hover {
  background-color: #9a1616;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(183, 28, 28, 0.3);
}

/* Mobile adjustments for form */
@media (max-width: 576px) {
  .quote-form-card {
    padding: 25px 15px;
  }
}

/* Service Area Section */
.service-area-section {
  background-color: #0b2c4d; /* Dark matching theme */
  padding: 80px 0;
}

.area-card {
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-glass-card {
  background: rgba(255, 255, 255, 0.05); /* Glass effect */
}

.red-gradient-card {
  background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

.city-grid-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.city-grid-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.city-grid-item i {
  color: rgba(255, 255, 255, 0.7);
}

.globe-icon {
  font-size: 3.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background circle effect (subtle) */
/* .final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
} */

.stats-glass-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(5px);
}

.border-end-custom {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .border-end-custom {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
  }
  .service-icon-box {
    height: 300px;
  }
}

.btn-white-cta {
  background: white;
  color: var(--primary-red);
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.btn-white-cta:hover {
  transform: translateY(-2px);
  background: #f8f8f8;
  color: var(--primary-red);
}

.btn-dark-cta {
  background: #0b2c4d;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.btn-dark-cta:hover {
  transform: translateY(-2px);
  background: #061b30;
  color: white;
}

.btn-whatsapp-large {
  background: #25d366;
  color: white;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-whatsapp-large:hover {
  background: #1ebc57;
  color: white;
  transform: scale(1.05);
}

.trust-icons-row span {
  display: flex;
  align-items: center;
  opacity: 0.9;
}

/* Footer Section */
.footer-section {
  background-color: #061b30; /* Very dark blue */
  padding-top: 80px;
  color: white;
}

.footer-logo i {
  vertical-align: middle;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon-btn.whatsapp:hover {
  background: #25d366;
  color: white;
}

.social-icon-btn.phone:hover {
  background: #c62828;
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.developer-credit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.highlight-text {
  position: relative;
  color: #ffc107 !important; /* Gold/Yellow highlight */
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  transition: all 0.3s;
}

.highlight-text:hover {
  color: #fff !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Floating Icons */
.float-icon-container {
  position: fixed;
  right: 30px;
  bottom: 50%; /* Center vertically or adjust as needed */
  transform: translateY(50%);
  z-index: 1050;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  color: white;
}

.float-btn:hover {
  transform: scale(1.1);
  color: white;
}

.emergency-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  animation: pulse-red 2s infinite;
}

.whatsapp-float-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Tooltip on Hover */
.float-tooltip {
  position: absolute;
  right: 60px;
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulse Animation */
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 75, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
  }
}

/* ================================
   Booking Modal Styles
   ================================ */
.booking-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.booking-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 36px !important;
  height: 36px !important;
  /* background: #fff; */
  border-radius: 50% !important;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  color: var(--primary-red);
}

.booking-modal-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-modal-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.booking-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-modal-form {
  padding: 40px 35px;
  background: #fff;
}

.booking-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  font-family: var(--logo-font);
  line-height: 1.3;
}

.booking-form-input {
  background: #fff !important;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.booking-form-input::placeholder {
  color: #999 !important;
  font-weight: 400;
}

.booking-form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 77, 68, 0.1);
  outline: none;
}

.booking-form-input:hover {
  border-color: #bbb;
}

textarea.booking-form-input {
  resize: none;
}

.btn-booking-submit {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background: var(--primary-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-booking-submit:hover {
  background: #143d35;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 68, 0.3);
}

.btn-booking-submit:active {
  transform: translateY(0);
}

/* Modal Animation */
.modal.fade .modal-dialog {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Open Modal Trigger Button */
.btn-open-booking-modal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-open-booking-modal:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 68, 0.3);
}

.btn-open-booking-modal i {
  font-size: 16px;
}

/* Responsive Styles for Modal */
@media (max-width: 991.98px) {
  .booking-modal-form {
    padding: 35px 25px;
  }
  
  .booking-modal-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .booking-modal-form {
    padding: 30px 20px;
  }
  
  .booking-modal-title {
    font-size: 1.2rem;
  }
  
  .booking-form-input {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .btn-booking-submit {
    max-width: 100%;
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* ================================
   Testimonial Section Styles
   ================================ */
.testimonial-section {
  background-color: #fcfcfc;
  overflow: hidden;
}

.testimonial-carousel-wrapper {
  padding: 0 50px;
}

.testimonialSwiper {
  padding-bottom: 50px !important;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  margin: 15px 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.quote-icon {
  font-size: 32px;
  color: var(--primary-blue);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin-bottom: 30px;
  font-family: var(--logo-font);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-red);
}

.client-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.client-location {
  font-size: 13px;
  color: #888;
}

.rating-stars {
  color: #f7b731;
  font-size: 14px;
}

/* Carousel Nav Buttons */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
  background: var(--primary-red);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* Pagination Dots */
.testimonialSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background: var(--primary-blue);
}

@media (max-width: 991px) {
  .testimonial-carousel-wrapper {
    padding: 0;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .swiper-nav-btn {
    display: none;
  }
}

@media (max-width: 575px) {
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .client-photo {
    width: 40px;
    height: 40px;
  }
}
