:root {
    --brand-black: #000;
    --brand-gold: #f1c232;
    --brand-yellow: #f6d34b;
    --brand-yellow-dark: #e6b400;
    --muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.heading-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Top Bar */
.topbar {
    background: #fff;
    font-size: 0.8rem;
    padding: 0.5rem 0;
}

.topbar a {
    color: var(--brand-black);
    text-decoration: none;
    margin: 0 0.5rem;
}

.topbar a:hover {
    color: var(--brand-yellow-dark);
}

/* Navbar */
.navbar {
    background: var(--brand-black);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-toggler {
    color: white;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--brand-yellow);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--brand-yellow);
}

.btn-book {
    background: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    border: none;
}

.btn-book:hover {
    background: var(--brand-yellow-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(231, 198, 63, 0.95) 0%, rgba(246, 211, 75, 0.85) 40%, rgba(246, 211, 75, 0.2) 80%, rgba(246, 211, 75, 0) 100%),
        url('../img/hero-bg.png') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--brand-black);
}

.btn-quote {
    background: var(--brand-black);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-quote:hover {
    background: #333;
    color: white;
}

/* Reviews Section */
.reviews-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin: 0.5rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: var(--brand-yellow);
    margin: 0.5rem 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: none;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.2);
}

/* Star Rating */
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  flex-direction: row-reverse;
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
  margin: 0 5px;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: var(--brand-yellow);
}

.rating-stars input:checked + label {
  color: var(--brand-yellow);
}

/* Services Section */
.services-section {
    padding: 3rem 0;
}

.service-image {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
    height: auto;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(270deg, rgba(246, 212, 75, 0.85) 0%, rgba(246, 212, 75, 0.5) 60%, rgba(246, 212, 75, 0) 100%),
        url('../img/cta-section-bg.png') center/cover no-repeat;
    color: var(--brand-black);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-btn {
    background: var(--brand-black);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

.cta-btn:hover {
    background: #333;
    color: white;
}

  /* Custom Modal Styles */
  #bookingModal .modal-header {
    padding: 1.75rem;
  }
  
  #bookingModal .modal-body {
    padding: 2rem;
  }
  
  /* Step Progress */
  .step {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
  }
  
  .step.active .step-circle {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
  }
  
  .step-label {
    color: #6c757d;
    font-weight: 500;
  }
  
  .step.active .step-label {
    color: var(--brand-black);
    font-weight: 600;
  }
  
  /* Form Styles */
  #bookingModal .form-floating label {
    font-weight: 500;
    color: #6c757d;
  }
  
  #bookingModal .form-control, 
  #bookingModal .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 1rem;
    height: calc(3.5rem + 2px);
  }
  
  #bookingModal .form-control:focus, 
  #bookingModal .form-select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 0.25rem rgba(246, 211, 75, 0.25);
  }
  
  #bookingModal textarea.form-control {
    height: auto !important;
  }
   .form-floating>.form-control:focus~label,
  .form-floating>.form-control:not(:placeholder-shown)~label,
  .form-floating>.form-select:focus~label,
  .form-floating>.form-select:not([value=""])~label,
  .form-floating>textarea:focus~label,
  .form-floating>textarea:not(:placeholder-shown)~label {
    transform: scale(.85) translateY(-0.75rem) translateX(0.15rem);
    opacity: .85;
    font-size: 0.8rem;
  }
  /* Button Styles */
  .btn-brand-yellow {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: all 0.3s;
  }
  
  .btn-brand-yellow:hover {
    background-color: var(--brand-yellow-dark);
    transform: translateY(-2px);
  }
  
  /* Switch Styles */
  #bookingModal .form-switch .form-check-input {
    width: 3em;
    margin-left: 0;
  }
  
  #bookingModal .form-switch .form-check-input:checked {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
  }

/* Footer */
footer {
    background: var(--brand-black);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-links h6 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--brand-yellow);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--brand-yellow);
    opacity: 1;
}

.social-links a {
    color: white;
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--brand-yellow);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    border-radius: 5px 0 0 5px;
    border: none;
    padding: 0.75rem;
    flex: 1;
}

.newsletter-form button {
    background: var(--brand-yellow);
    color: var(--brand-black);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--brand-yellow-dark);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-content {
        padding: 3rem;
        max-width: 50%;
    }

    .cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-logo {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .navbar {
        padding: 1.5rem 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .hero {
        min-height: 80vh;
    }
}
/* Modern Cookie Consent Styles */
.cookie-consent-new {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 900px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { bottom: -100px; opacity: 0; }
  to { bottom: 20px; opacity: 1; }
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}

.cookie-message {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex: 1;
  min-width: 250px;
}

.cookie-icon {
  font-size: 1.5rem;
  color: var(--brand-yellow);
  margin-top: 3px;
}

.cookie-message h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--brand-black);
}

.cookie-message p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #555;
}

.cookie-links {
  display: flex;
  gap: 15px;
}

.cookie-links a, .cookie-links button {
  font-size: 0.85rem;
  color: var(--brand-yellow-dark);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.cookie-links a:hover, .cookie-links button:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-gold {
  background: var(--brand-yellow);
  color: var(--brand-black);
  border: none;
  font-weight: 500;
}

.btn-outline-gold {
  border: 1px solid var(--brand-yellow);
  color: var(--brand-yellow);
  background: transparent;
}

.btn-gold:hover {
  background: var(--brand-yellow-dark);
  color: var(--brand-black);
}

.btn-outline-gold:hover {
  background: rgba(246, 211, 75, 0.1);
}

/* Modal Enhancements */
#cookieSettingsModal .modal-content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  /*! z-index: 1; */
  margin-bottom: 263px;
  height: 100%; 
}

#cookieSettingsModal .modal-header {
  padding: 1.5rem 1.5rem 0;
}

#cookieSettingsModal .modal-body {
  padding: 0 1.5rem 1.5rem;
}

.cookie-category {
  padding: 10px 0;
}

.cookie-details {
  padding-left: 40px;
  font-size: 0.85rem;
  color: #666;
}

.form-switch .form-check-input {
  width: 2.8em;
  height: 1.5em;
}

.form-switch .form-check-input:checked {
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cookie-consent-new {
    width: 90%;
    bottom: 10px;
    z-index: 9999;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-message {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
}
 /* Sales Modal Styling */
  #assistanceModal .modal-content {
    border: 3px solid var(--brand-yellow);
    animation: pulseBorder 2s infinite;
  }
  
  #assistanceModal .btn-warning {
    background: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 600;
    border: none;
    transition: all 0.3s;
  }
  
  #assistanceModal .btn-warning:hover {
    background: var(--brand-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 211, 75, 0.4);
  }
  
  @keyframes pulseBorder {
    0% { border-color: var(--brand-yellow); }
    50% { border-color: #ffd700; }
    100% { border-color: var(--brand-yellow); }
  }
  
  /* Bottom right positioning */
  .modal-dialog-bottom-right {
    transform: translate(0, 0) !important;
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {
    .modal-dialog-bottom-right {
      right: 10px !important;
      bottom: 10px !important;
    }
    #assistanceModal .modal-content {
      width: 300px !important;
    }
  }

  
  /* Custom Styles */
  :root {
    --brand-black: #000;
    --brand-gold: #f1c232;
    --brand-yellow: #f6d34b;
    --brand-yellow-dark: #e6b400;
    --muted: #6c757d;
    --brand-yellow-light: rgba(246, 211, 75, 0.15);
  }
  
  .about-section {
    overflow: hidden;
  }
  
  .bg-brand-yellow-light {
    background-color: var(--brand-yellow-light);
  }
  
  .text-brand-yellow-dark {
    color: var(--brand-yellow-dark);
  }
  
  .btn-brand-yellow {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 600;
    border: none;
  }
  
  .btn-brand-yellow:hover {
    background-color: var(--brand-yellow-dark);
    color: var(--brand-black);
  }
  
  .transition-all {
    transition: all 0.3s ease;
  }
  
  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
  
  .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .rounded-4 {
    border-radius: 1rem;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
 /* Contact Section Styles */
  .contact-section {
    background-color: #f8f9fa;
  }
  
  .py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .contact-card {
    border: 1px solid rgba(0,0,0,0.05);
  }
  
  .icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
  }
  
  .bg-facebook { background-color: #3b5998; }
  .bg-instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
  .bg-twitter { background-color: #000000; }
  
  .rounded-4 {
    border-radius: 1rem;
  }
  
  /* Form Styles */
  .form-floating label {
    color: var(--muted);
  }
  
  .form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 1rem;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 0.25rem rgba(246, 211, 75, 0.25);
  }