:root {
  --primary-danger: #c41e3a;
  --primary-warning: #ffc700;
  --bg-light: #f8f4f1;
  --dark: #1a1a1a;
}

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

html,
body {
  height: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1a1a1a;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #c41e3a 0%, #d4531f 50%, #ffc700 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
  position: relative;
  z-index: 2;
}

.hero-section-alt {
  background: linear-gradient(135deg, #c41e3a 0%, #d4531f 50%, #ffc700 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-section-alt h1,
.hero-section-alt p {
  position: relative;
  z-index: 2;
}

/* Stat Cards */
.stat-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-card i {
  color: var(--primary-danger);
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card h5 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.service-card p {
  padding: 0 1.5rem;
}

.service-card .btn {
  margin: 1rem 1.5rem 1.5rem;
}

/* Service Detail Card */
.service-detail-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}

.service-detail-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-danger);
}

.testimonial-card .stars {
  font-size: 0.9rem;
}

/* Why Choose Card */
.why-choose-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card i {
  color: var(--primary-danger);
}

/* Team Card */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card h5,
.team-card p {
  padding: 0 1.5rem;
}

.team-card h5 {
  padding-top: 1.5rem;
}

/* Gradient Section */
.gradient-section {
  background: linear-gradient(135deg, #c41e3a 0%, #ffc700 100%);
  border-radius: 12px;
}

/* Contact Card */
.contact-card {
  background: #f8f4f1;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.contact-card i {
  color: var(--primary-danger);
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Booking Form Card */
.booking-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.booking-form-card h2 {
  margin-bottom: 0.5rem;
}

.booking-form-card h5 {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
}

.services-selection {
  background: #f8f4f1;
  padding: 1.5rem;
  border-radius: 8px;
}

.services-selection .row {
  margin-bottom: 1rem;
}

.services-selection .row:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-image {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

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

.gallery-item.hidden {
  display: none;
}

/* Video Card */
.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}

.video-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #c41e3a 0%, #ffc700 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.05);
}

/* Form Controls */
.form-control,
.form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-danger);
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-danger {
  background-color: var(--primary-danger);
  border-color: var(--primary-danger);
}

.btn-danger:hover {
  background-color: #a81830;
  border-color: #a81830;
  transform: translateY(-2px);
}

.btn-warning {
  background-color: var(--primary-warning);
  border-color: var(--primary-warning);
  color: #1a1a1a;
}

.btn-warning:hover {
  background-color: #e6b300;
  border-color: #e6b300;
  color: #1a1a1a;
}

.btn-success {
  background-color: #25d366;
  border-color: #25d366;
}

.btn-success:hover {
  background-color: #1fad54;
  border-color: #1fad54;
}

.filter-btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--primary-danger);
  color: white;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
}

/* Added custom text-muted color for footer to improve visibility */
footer .text-muted {
  color: #b8b8b8 !important;
}

h5, h6 {
  color: rgb(172, 2, 2);
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-danger);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 350px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  .service-card {
    margin-bottom: 1rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .booking-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .display-4 {
    font-size: 1.8rem;
  }

  .btn-lg {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .hero-section {
    min-height: 250px;
  }

  .d-flex.gap-3 {
    flex-direction: column;
  }

  .d-flex.gap-3 .btn {
    width: 100%;
  }
}

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

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

/* Utility Classes */
.text-danger {
  color: var(--primary-danger) !important;
}

.text-warning {
  color: var(--primary-warning) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}
