
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 120px;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  width: 100%;
  height: 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* .logo {
  height: 120px;
  display: flex;
  align-items: center;
  width: 180px;
}

.logo img {
  height: 120px;
  width: 180px;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
} */

.logo img:hover {
  transform: scale(1.05);
}

.book-now {
  background: linear-gradient(135deg, #d70707, #a00505);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(215, 7, 7, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 40px;
}

.book-now:hover {
  background: linear-gradient(135deg, #a00505, #800000);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(215, 7, 7, 0.3);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #d70707;
  transition: transform 0.3s ease;
  padding: 5px;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.bottom-nav {
  height: 50px;
  width: 100%;
  background: white;
  position: relative;
  z-index: 1000;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 50px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 10px;
  font-size: 15px;
  position: relative;
  display: inline-block;
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #d70707;
  transition: width 0.3s ease;
}

.nav-item a:hover {
  color: #d70707;
}

.nav-item a:hover::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  display: none;
  flex-direction: column;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1100;
  min-width: 180px;
  text-align: left;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.dropdown li {
  padding: 6px 15px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.dropdown li:hover {
  background: #f8f8f8;
}

.dropdown li a {
  color: #555;
  font-weight: 500;
  font-size: 14px;
}

.dropdown li a:hover {
  color: #d70707;
  background: transparent;
}

.dropdown li a::after {
  display: none;
}

.nav-item:hover .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-links {
      gap: 15px;
  }
}

@media (max-width: 768px) {
  .top-nav {
      padding: 0 20px;
      height: 60px;
  }
  
  .logo img {
      max-height: 100px;
  }
  
  .menu-toggle {
      display: block;
  }

  .bottom-nav {
      display: none;
      position: absolute;
      top: 40px;
      width: 100%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .bottom-nav.open {
      display: flex;
  }

  .nav-links {
      flex-direction: column;
      gap: 0;
      padding: 0;
      height: auto;
  }

  .nav-item {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-item a {
      display: block;
      padding: 12px 20px;
  }

  .dropdown {
      position: static;
      display: none;
      width: 100%;
      box-shadow: none;
      border-radius: 0;
      opacity: 1;
      transform: none;
      padding: 0;
  }

  .dropdown li {
      padding: 10px 20px;
      background: #f9f9f9;
      text-align: center;
  }

  .nav-item:hover .dropdown {
      display: none;
  }

  .dropdown.active {
      display: flex;
  }
}
/* body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: block;

  height: 100vh;
}

/* Banner Styling */
/* .banner {
  position: relative;
  width: 100%;
  height: 600px;
  background: url("https://cdn.pixabay.com/video/2024/02/04/199293-909903179_tiny.jpg") no-repeat center center/cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.5s ease-in-out;
  margin: 30px auto; 
  position: relative; 
  z-index: 1; 
} */

/* Dark Overlay */
/* .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  border-radius: 12px;
} */

/* Banner Content */
/* .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 70%;
  margin: auto;
  padding: 20px;
  animation: slideUp 1.5s ease-in-out;
} */

/* .banner-content h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 10px;
} */

/* .banner-content p {
  font-size: 25px;
  margin-bottom: 20px;
} */

/* CTA Button */
/* .cta-button {
  background: linear-gradient(135deg, #d70707, #a00505);
  color: white;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
} */
/* 
.cta-button:hover {
  background-color: #e67300;
  transform: scale(1.1);
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
} */


/* @media (max-width: 900px) {
  .banner {
      height: 300px;
      width: 90%;
  }

  .banner-content h1 {
      font-size: 28px;
  }

  .banner-content p {
      font-size: 16px;
  }

  .cta-button {
      padding: 12px 25px;
  }
} */



/* Banner vediio  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Arial', sans-serif;
  overflow-x: hidden;
}

/* Banner container */
.astrology-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Video background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-color: #0a0a1a; /* Fallback color */
}

/* Overlay for better text readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.4);
  z-index: 0;
}

/* Content styling */
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.5s ease-out;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.banner-content p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Star decoration */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  animation: twinkle var(--duration) infinite ease-in-out;
  opacity: 0;
}

/* Animation for the stars */
@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--opacity); }
}

/* Animation for the content */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-content h1 {
      font-size: 2.5rem;
  }
  
  .banner-content p {
      font-size: 1.2rem;
  }
}


/* servic card */
/* Service Card Styling with Astrology Theme */
/* Service Card Styling with Golden Astrology Theme */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  /* color: #
  fff; */
}

.services {
  padding: 60px 20px;
  max-width: 1900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Golden Cosmic Background */
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255, 223, 96, 0.4) 0%, transparent 30%),
    linear-gradient(to bottom, #0a0e23 0%, #131a2a 100%);
  z-index: -1;
}

/* Starry Sky Effect */
.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(1px 1px at 15% 20%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 25% 40%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 35% 60%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 45% 80%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 55% 30%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 65% 50%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 75% 70%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 85% 90%, #fff 1%, transparent 2%),
    radial-gradient(2px 2px at 10% 10%, gold 1%, transparent 2%),
    radial-gradient(2px 2px at 90% 20%, gold 1%, transparent 2%),
    radial-gradient(2px 2px at 50% 90%, gold 1%, transparent 2%);
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.8;
  animation: twinkle 8s infinite alternate;
}

/* Optional: Twinkling Star Animation */
@keyframes twinkle {
  0% { opacity: 0.5; }
  50% { opacity: 0.9; }
  100% { opacity: 0.7; }
}
.services-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 35px; /* Reduced gap between cards */
}

.service-card {
  background: white;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  width: 230px;
  min-height: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.service-logo {
  width: 40px; /* Smaller logo */
  height: 40px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 18px; /* Smaller font */
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: left;
  flex-grow: 1; /* Makes description take available space */
}

.order-now {
  padding: 8px 16px;
  font-size: 14px;
  background: linear-gradient(135deg, #d70707, #a00505);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%; /* Makes buttons equal width */
}

.order-now:hover {
  background: linear-gradient(135deg, #ff0000, #c00000);
  transform: translateY(-2px);
}

.order-now-container {
  margin-top: auto; /* Pushes button to bottom */
  padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .service-card {
    width: 200px;
    padding: 15px;
  min-height: 160px;
  }
  .service-description {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .services-container {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around;
  }
  .service-card {
    width: 30%; /* Cards take about 1/3 of width */
    margin-bottom: 20px;
  }
}
 /* Footer Styling */
.footer {
  background: #491b1b; 
  color: white;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.footer-logo img {
  width: 150px;
  height: auto;
}


.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff7f00;
  display: inline-block;
  padding-bottom: 5px;
}


.footer p,
.footer a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.footer a:hover {
  color: #ff7f00;
  text-shadow: 0 0 10px rgba(255, 127, 0, 0.8);
}


.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  font-size: 22px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #ff7f00;
  text-shadow: 0 0 15px rgba(255, 127, 0, 0.7);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* .form-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}


.form-heading {
  font-size: 30px;
  color: #8a5a44;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(138, 90, 68, 0.2);
}


.form-container {
  max-width: 600px;
  margin: auto;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}


.form-section p {
  font-size: 16px;
  color: #6e4c3c;
  margin-bottom: 30px;
}


.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #d6bfa3;
  background: #fffaf0;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.form-group textarea {
  resize: none;
  height: 120px;
}


.form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  font-size: 14px;
  color: #8a5a44;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  left: 14px;
  font-size: 12px;
  color: #d18642;
}


.submit-btn {
  width: 100%;
  background: #d18642;
  color: white;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(209, 134, 66, 0.3);
}

.submit-btn:hover {
  background: #b56a2d;
  box-shadow: 0px 6px 15px rgba(209, 134, 66, 0.5);
}


@media (max-width: 768px) {
  .form-container {
    padding: 30px;
  }
}  */
.form-section {
  background: white;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.form-heading {
  font-size: 2.5rem;
  color: #3a2a1e;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.form-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ff0000, #c00000);
  border-radius: 3px;
}

.form-subheading {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #6e4c3c;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.form-container {
  background: #FFFBF0;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(138, 90, 68, 0.12);
  position: relative;
  overflow: hidden;
}

.form-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(135deg, #ff0000, #c00000);
}

.astrology-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  font-size: 16px;
  border: 1px solid #e0d4c0;
  background: #fffaf7;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #3a2a1e;
  font-family: 'Montserrat', sans-serif;
}

.form-input:focus {
  border-color: #d18642;
  box-shadow: 0 0 0 3px rgba(209, 134, 66, 0.2);
  background: white;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-28px) scale(0.9);
  color: #d18642;
  background: white;
  padding: 0 8px;
  left: 42px;
}

.form-label {
  position: absolute;
  top: 18px;
  left: 50px;
  color: #8a5a44;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  font-size: 15px;
}

.form-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #d18642;
}

textarea.form-input {
  min-height: 140px;
  padding-top: 25px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d18642' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.form-footer {
  margin-top: 1rem;
  text-align: center;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff0000, #c00000);
  color: white;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(209, 134, 66, 0.3);
  width: 100%;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(209, 134, 66, 0.4);
  background: red
}

.btn-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

.privacy-note {
  font-size: 13px;
  color: #8a5a44;
  margin-top: 20px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .form-container {
      padding: 30px 25px;
  }
  
  .form-heading {
      font-size: 2rem;
  }
  
  .form-subheading {
      font-size: 1rem;
  }
  
  .form-input {
      padding: 16px 16px 16px 45px;
  }
  
  .form-icon {
      left: 15px;
  }
  
  .form-input:focus + .form-label,
  .form-input:not(:placeholder-shown) + .form-label {
      left: 37px;
  }
}

/* Footer Styles */
.site-footer {
  background-color: white;
  color: #333;
  padding: 40px 0 0;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  height: 190px;
  width: auto;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: #d32f2f; /* Red color matching your logo */
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #d32f2f;
  color: white;
}

.footer-heading {
  color: #d32f2f;
  font-size: 25px;
  /* margin-bottom: 20px; */
  position: relative;
  padding-bottom: 10px;
}

/* .footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #d32f2f;
} */

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #d32f2f;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.contact-info i {
  margin-right: 10px;
  margin-left: 70px;
  color: #d32f2f;
  width: 20px;
  text-align: center;
}

.footer-book-now {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-top: 10px;
}

.footer-book-now:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
}

.footer-bottom {
  background-color: #f8f8f8;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
  margin: 5px 0;
}

.footer-legal {
  display: flex;
  gap: 15px;
}

.footer-legal a {
  font-size: 13px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #d32f2f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }
  
  .footer-legal {
      justify-content: center;
  }
}