:root {
         --primary-color: #F7941D;
         --primary-dark: #d67b0d;
         --primary-yellow: #fec54a;
         --primary-orange: #d4814c;
         --text-light: #ffffff;
         --bg-light-gray: #f8f9fa;
     }
     html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }
     @media (max-width: 576px) {
        .container {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
     /* Custom styles */
     .hero-section {
        min-height: 80vh;
        position: relative;
        overflow: hidden;
        color: var(--text-light);
    }
    
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    
    .fallback-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Dark overlay for better text visibility */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 100%
        );
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 2rem 0;
    }
     .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: #fff;
        padding: 8px;
        z-index: 100;
        transition: top 0.2s ease;
    }
    
    .skip-link:focus {
        top: 0;
    }
    
    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }

     .hero-content {
         position: relative;
         z-index: 2;
         padding: 2rem 0;
     }

     /* Navbar styles */
     .navbar {
         background-color: rgba(255, 255, 255, 0.95) !important;
         padding: 1rem 0;
     }

     .navbar-brand img {
         width: 180px;
         height: auto;
     }

     .nav-link {
         font-weight: 500;
         color: #333 !important;
         transition: color 0.3s ease;
     }

     .nav-link:hover {
         color: var(--primary-color) !important;
     }

     /* Button styles */
     .btn-primary {
         background-color: var(--primary-color);
         border-color: var(--primary-color);
         padding: 0.75rem 1.5rem;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         transition: all 0.3s ease;
     }

     .btn-primary:hover,
     .btn-primary:focus {
         background-color: var(--primary-dark);
         border-color: var(--primary-dark);
         transform: translateY(-2px);
     }

     .btn-outline-light {
         border-width: 2px;
         padding: 0.75rem 1.5rem;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         transition: all 0.3s ease;
     }

     .btn-outline-light:hover {
         transform: translateY(-2px);
     }

     /* Mobile menu styles */
     .offcanvas {
         width: 300px;
     }

     .offcanvas-header {
         background-color: var(--bg-light-gray);
         color: white;
     }

     .btn-close {
         filter: brightness(0) invert(0);
     }

     .navbar-toggler {
         border: none;
         padding: 0.5rem;
     }

     .navbar-toggler:focus {
         box-shadow: none;
     }

     /* Book Now button in nav */
     .nav-link.btn-primary {
         color: white !important;
         margin-left: 1rem;
     }

     /* Responsive adjustments */
     @media (max-width: 768px) {
         .hero-section {
             min-height: 70vh;
         }

         .hero-content {
             text-align: center;
             padding-top: 4rem;
         }

         .hero-content .d-flex {
             justify-content: center;
         }

         .display-4 {
             font-size: calc(1.8rem + 1.5vw);
         }
     }
     .hero-quote {
 font-style: italic;
 font-size: 1.4rem;
 line-height: 1.6;
 margin-bottom: 1rem;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-attribution {
 font-size: 1rem;
 color: var(--text-light);
 opacity: 0.9;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
 .hero-quote {
     font-size: 1.2rem;
 }
 
 .quote-attribution {
     font-size: 0.9rem;
 }
}
     /* Text shadow for better readability */
     .hero-content h1,
     .hero-content p {
         text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     }

     /* Services divider */

     .services-section {
         background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
         padding: 4rem 0;
         position: relative;
         overflow: hidden;
     }

     .service-card {
         background: rgba(255, 255, 255, 0.95);
         border-radius: 15px;
         padding: 2rem;
         text-align: center;
         transition: all 0.3s ease;
         height: 100%;
         position: relative;
         overflow: hidden;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     }

     .service-card:hover {
         transform: translateY(-5px);
         box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
     }

     .service-card::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 5px;
         background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
     }

     .service-icon {
         font-size: 2.5rem;
         margin-bottom: 1.5rem;
         color: var(--primary-orange);
         position: relative;
         display: inline-block;
     }

     .service-icon::after {
         content: '';
         position: absolute;
         width: 50px;
         height: 50px;
         background: var(--primary-yellow);
         opacity: 0.2;
         border-radius: 50%;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         z-index: -1;
     }

     .service-title {
         color: #333;
         font-size: 1.5rem;
         font-weight: 600;
         margin-bottom: 1rem;
         position: relative;
     }

     .service-description {
         color: #666;
         font-size: 1rem;
         line-height: 1.6;
         margin: 0;
     }

     /* Responsive adjustments */
     @media (max-width: 768px) {
         .service-card {
             margin-bottom: 2rem;
         }
     }
     .services-section {
 background: linear-gradient(90deg, #fec54a 0%, #d4814c 100%);
 padding: 4rem 0 6rem;  /* Increased bottom padding to accommodate the wave */
 position: relative;
 overflow: hidden;
}
     /* Decorative elements */
     .custom-shape-divider-bottom-1731362921 {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 overflow: hidden;
 line-height: 0;
 max-width: 100%;
 margin: 0;
 padding: 0;
}

.custom-shape-divider-bottom-1731362921 svg {
 position: relative;
 display: block;
 width: calc(100% + 1.3px);
 height: 65px;
 transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1731362921 .shape-fill {
 fill: #FFFFFF;
}

/* Why Choose us Section */
.why-choose-section {
 padding: 0;
 background-color: #fff;
 min-height: 90vh;
 display: flex;
 align-items: center;
}

.why-choose-image {
 width: 100%;
 height: 600px;
 position: relative;
 overflow: hidden;
 border-radius: 20px;
}

.why-choose-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 20px;
}

.why-choose-content {
 padding: 4rem 1rem 4rem 1rem;
}

.section-title {
 color: #333;
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 2rem;
 position: relative;
}

.title-underline {
 display: block;
 width: 80px;
 height: 4px;
 background: var(--primary-yellow);
 margin-top: 1rem;
}

.content-paragraph {
 color: #666;
 font-size: 1.1rem;
 line-height: 1.8;
 margin-bottom: 1.5rem;
}

.content-paragraph:last-child {
 margin-bottom: 0;
}

.content-paragraph a {
 color: var(--primary-orange);
 text-decoration: none;
 font-weight: 500;
 transition: color 0.3s ease;
}

.content-paragraph a:hover {
 color: var(--primary-yellow);
 text-decoration: underline;
}

/* Tablet Responsive */
@media (max-width: 991px) {
 .why-choose-section {
     min-height: auto;
     padding: 0;
     display: block;
 }

 .why-choose-image {
     height: 400px;
     border-radius: 0;
     margin: 0;
     width: 100vw;
     position: relative;
     left: 50%;
     right: 50%;
     margin-left: -50vw;
     margin-right: -50vw;
 }

 .why-choose-image img {
     border-radius: 0;
 }

 .why-choose-content {
     padding: 2rem 1rem;
 }

 .section-title {
     font-size: 2rem;
     margin-bottom: 1.5rem;
 }

 .content-paragraph {
     font-size: 1rem;
     line-height: 1.6;
 }
}

/* Mobile Responsive */
@media (max-width: 768px) {
 .why-choose-image {
     height: 300px;
 }

 .why-choose-content {
     padding: 1.5rem 1rem;
 }

 .section-title {
     font-size: 1.8rem;
 }

 .title-underline {
     width: 60px;
     height: 3px;
     margin-top: 0.8rem;
 }
}

/* Small Mobile Responsive */
@media (max-width: 576px) {
 .why-choose-image {
     height: 250px;
 }

 .section-title {
     font-size: 1.6rem;
 }

 .content-paragraph {
     font-size: 0.95rem;
     line-height: 1.5;
 }
}

/* Guarantee Section */
.guarantee-section {
 padding: 0;
 background-color: var(--bg-light-gray);
 min-height: 90vh;
 display: flex;
 align-items: center;
 margin-top: 3rem; /* Space between sections */
}

.guarantee-image {
 width: 100%;
 height: 600px;
 position: relative;
 overflow: hidden;
 border-radius: 20px;
}

.guarantee-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.guarantee-content {
 padding: 4rem;
}

.guarantee-title {
 color: #333;
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 3rem;
 position: relative;
}

.title-underline {
 display: block;
 width: 80px;
 height: 4px;
 background: var(--primary-yellow);
 margin-top: 1rem;
}

.guarantee-list {
 list-style: none;
 padding: 0;
 margin: 0;
}

.guarantee-item {
 display: flex;
 align-items: flex-start;
 margin-bottom: 2rem;
}

.guarantee-icon {
 font-size: 2rem;
 color: var(--primary-orange);
 margin-right: 1.5rem;
 flex-shrink: 0;
 width: 40px;
 text-align: center;
}

.guarantee-text {
 color: #666;
 font-size: 1.1rem;
 line-height: 1.6;
 margin: 0;
}

.guarantee-text strong {
 display: block;
 color: #333;
 font-size: 1.2rem;
 margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
 .guarantee-section {
     min-height: auto;
     padding: 0;
     display: block;
 }

 .guarantee-image {
     height: 400px;
     border-radius: 0;
     margin: 0;
     width: 100vw;
     position: relative;
     left: 50%;
     right: 50%;
     margin-left: -50vw;
     margin-right: -50vw;
 }

 .guarantee-content {
     padding: 2rem 1rem;
 }

 .guarantee-title {
     font-size: 2rem;
     margin: 0.5rem 0 2rem 0;
 }

 .guarantee-item {
     margin-bottom: 1.5rem;
 }
}

@media (max-width: 768px) {
 .guarantee-image {
     height: 300px;
 }

 .guarantee-content {
     padding: 1.5rem 1rem;
 }
}

/* Cleaning services section */
.cleaning-types-section {
 padding: 6rem 0;
 background-color: #fff;
}

.cleaning-types-section .row {
 row-gap: 2rem;
}

.cleaning-types-section .col-lg-3 {
 display: flex;
}

/* Service Circle Card */
.service-circle {
 position: relative;
 text-align: center;
 height: 100%;
 background: white;
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 display: flex;
 flex-direction: column;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 width: 100%;
}

.service-circle:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Circle Image */
.circle-image-container {
 width: 150px;
 height: 150px;
 margin: 0 auto 1.5rem;
 position: relative;
 border-radius: 50%;
 overflow: hidden;
 border: 3px solid var(--primary-yellow);
}

.circle-image-container img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}

/* Text Content */
.service-circle h3 {
 font-size: 1.5rem;
 font-weight: 600;
 margin-bottom: 1rem;
 color: #333;
}

.service-circle p {
 color: #666;
 font-size: 1rem;
 line-height: 1.6;
 margin-bottom: 1.5rem;
 padding: 0;
 flex: 1;
 max-width: 280px;
 margin-left: auto;
 margin-right: auto;
}

/* Button Styles */
.btn-learn-more {
 background-color: var(--primary-yellow);
 color: #333;
 padding: 0.75rem 1.5rem;
 border-radius: 25px;
 text-decoration: none;
 font-weight: 500;
 transition: all 0.3s ease;
 display: inline-block;
 margin-top: auto;
 align-self: center;
}

.btn-learn-more:hover {
 background-color: var(--primary-orange);
 color: var(--text-light);
 transform: translateY(-2px);
}

/* Action Buttons Section */
.action-buttons {
 text-align: center;
 margin-top: 4rem;
}

.action-buttons .btn {
 margin: 0.5rem;
 padding: 0.75rem 1.5rem;
 font-weight: 500;
 min-width: 200px;
}

.btn-outline-primary {
 border-color: var(--primary-dark);
 color: var(--primary-dark);
}

.btn-outline-primary:hover {
 color: var(--text-light);
 background: var(--primary-dark);
 border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
 .service-circle {
     padding: 1.5rem;
 }
 
 .service-circle p {
     font-size: 0.95rem;
     max-width: 250px;
 }
}

@media (max-width: 991px) {
 .circle-image-container {
     width: 120px;
     height: 120px;
 }

 .service-circle {
     height: auto;
     margin-bottom: 0;
 }
}

@media (max-width: 768px) {
 .cleaning-types-section {
     padding: 4rem 0;
 }
 
 .service-circle {
     margin-bottom: 2rem;
 }

 .service-circle h3 {
     font-size: 1.35rem;
 }

 .action-buttons .btn {
     min-width: auto;
     width: 100%;
     margin: 0.5rem 0;
 }
}

/* Services page */
.services-hero {
         min-height: 80vh;
         position: relative;
         overflow: hidden;
         background-image: url(images/hero-369552688.jpg);
         background-size: cover;
         background-position: center;
         color: var(--text-light);
     }

     /* Dark overlay for better text visibility */
     .services-hero::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: linear-gradient(
             135deg, 
             rgba(0, 0, 0, 0.7) 0%,
             rgba(0, 0, 0, 0.5) 100%
         );
         z-index: 1;
     }

     .services-hero__content {
         position: relative;
         z-index: 2;
         padding: 2rem 0;
     }

     .services-hero__title {
         font-size: calc(1.8rem + 1.5vw);
         font-weight: 700;
         margin-bottom: 2rem;
         text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     }

     /* Button styles matching home page */
     .btn-primary {
         background-color: var(--primary-color);
         border-color: var(--primary-color);
         padding: 0.75rem 1.5rem;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         transition: all 0.3s ease;
     }

     .btn-primary:hover,
     .btn-primary:focus {
         background-color: var(--primary-dark);
         border-color: var(--primary-dark);
         transform: translateY(-2px);
     }

     .btn-outline-light {
         border-width: 2px;
         padding: 0.75rem 1.5rem;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         transition: all 0.3s ease;
     }

     .btn-outline-light:hover {
         transform: translateY(-2px);
     }

     /* Text shadow for better readability */
     .services-hero__content h1,
     .services-hero__content p {
         text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     }

     /* Responsive adjustments */
     @media (max-width: 768px) {
         .services-hero {
             min-height: 70vh;
         }

         .services-hero__content {
             text-align: center;
             padding-top: 4rem;
         }

         .services-hero__content .d-flex {
             justify-content: center;
         }
     }

     .service-section {
         padding: 6rem 0;
         overflow: hidden;
     }

     .service-section:nth-child(even) {
         background-color: var(--bg-light-gray);
     }

     .service-content {
         padding: 2rem;
     }

     .service-title {
         font-size: 2.5rem;
         font-weight: 700;
         color: #333;
         margin-bottom: 1.5rem;
     }

     .service-description {
         font-size: 1.1rem;
         line-height: 1.6;
         color: #666;
         margin-bottom: 2rem;
     }

     .service-image {
         border-radius: 15px;
         overflow: hidden;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

     .service-image img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.3s ease;
     }

     .service-image:hover img {
         transform: scale(1.05);
     }

     .btn-check-pricing,
     .btn-schedule {
         background-color: var(--primary-color);
         color: white;
         padding: 0.75rem 1.5rem;
         border-radius: 5px;
         text-decoration: none;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         transition: all 0.3s ease;
         display: inline-block;
         border: none;
     }

     .btn-check-pricing:hover,
     .btn-schedule:hover {
         background-color: var(--primary-dark);
         transform: translateY(-2px);
         box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
     }

     @media (max-width: 991px) {
         .service-section {
             padding: 4rem 0;
         }
         
         .service-content {
             text-align: center;
             padding: 2rem 1rem;
         }

         .service-image {
             margin-top: 2rem;
             max-height: 400px;
         }
     }

/* Contact us section */
.contact-section {
         padding: 6rem 0;
         background-color: var(--bg-light-gray);
         position: relative;
         overflow: hidden;
     }

     .contact-title {
         font-size: 2.5rem;
         font-weight: 700;
         color: #333;
         margin-bottom: 0.5rem;
         text-align: center;
     }

     .contact-subtitle {
         font-size: 1.1rem;
         color: #666;
         margin-bottom: 3rem;
         text-align: center;
     }

     .contact-form {
         background: #fff;
         padding: 2.5rem;
         border-radius: 15px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

     .form-group {
         margin-bottom: 1.5rem;
     }

     .form-label {
         font-weight: 600;
         color: #333;
         margin-bottom: 0.5rem;
         display: block;
     }

     .form-control {
         width: 100%;
         padding: 0.75rem 1rem;
         border: 2px solid #e9ecef;
         border-radius: 5px;
         font-size: 1rem;
         transition: all 0.3s ease;
     }

     .form-control:focus {
         border-color: var(--primary-color);
         outline: none;
         box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1);
     }

     .form-select {
         width: 100%;
         padding: 0.75rem 1rem;
         border: 2px solid #e9ecef;
         border-radius: 5px;
         font-size: 1rem;
         transition: all 0.3s ease;
         background-color: #fff;
         cursor: pointer;
     }

     .form-select:focus {
         border-color: var(--primary-color);
         outline: none;
         box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1);
     }

     textarea.form-control {
         min-height: 120px;
         resize: vertical;
     }

     .btn-submit {
         background-color: var(--primary-color);
         color: white;
         padding: 0.75rem 2rem;
         border: none;
         border-radius: 5px;
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         transition: all 0.3s ease;
         cursor: pointer;
         width: 100%;
     }

     .btn-submit:hover {
         background-color: var(--primary-dark);
         transform: translateY(-2px);
         box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
     }

     .map-container {
         height: 100%;
         min-height: 400px;
         border-radius: 15px;
         overflow: hidden;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

     .map-container iframe {
         width: 100%;
         height: 100%;
         border: none;
     }

     /* Contact info styles */
     .contact-info {
         margin-top: 2rem;
         padding: 1rem 0;
         border-top: 2px solid #e9ecef;
     }

     .contact-info-item {
         display: flex;
         align-items: center;
         margin-bottom: 1rem;
         color: #666;
     }

     .contact-info-item i {
         color: var(--primary-color);
         font-size: 1.2rem;
         margin-right: 1rem;
         width: 24px;
         text-align: center;
     }

     @media (max-width: 991px) {
         .contact-section {
             padding: 4rem 0;
         }

         .map-container {
             margin-top: 2rem;
             height: 300px;
         }
     }

     @media (max-width: 768px) {
         .contact-form {
             padding: 1.5rem;
             margin: 0 15px;
         }
         .map-container {
            margin: 2rem 15px 0;
        }
     }


/* Book now page */
.booking-hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    background-image: url(images/hero-369552688.jpg);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

/* Dark overlay for better text visibility */
.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.booking-hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.booking-hero__title {
    font-size: calc(1.8rem + 1.5vw);
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-section {
    padding: 6rem 0;
    background-color: var(--bg-light-gray);
}

.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-color);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 1rem;
    margin-bottom: 2rem;
}

.booking-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.booking-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option label {
    display: flex;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(247, 148, 29, 0.05);
}

.option-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.option-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.option-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

.booking-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    text-align: right;
}

.btn-next {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .booking-section {
        padding: 4rem 0;
    }

    .booking-form {
        padding: 2rem;
    }

    .booking-progress {
        padding: 0 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .service-options {
        grid-template-columns: 1fr;
    }
}

/* Footer */

.footer {
 background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
 padding: 4rem 0 0 0;
 color: #333;
 position: relative;
 overflow: hidden;
}

.footer-content {
 position: relative;
 z-index: 2;
}

.footer-logo {
 max-width: 200px;
 height: auto;
 margin-bottom: 1rem;
}

.footer-heading {
 font-size: 1.25rem;
 font-weight: 600;
 margin-bottom: 1.5rem;
 color: #333;
}

.footer-contact-list,
.footer-services-list {
 list-style: none;
 padding: 0;
 margin: 0;
}

.footer-contact-list li,
.footer-services-list li {
 margin-bottom: 0.75rem;
}

.footer-contact-list a,
.footer-services-list a {
 color: #333;
 text-decoration: none;
 transition: color 0.3s ease;
}

.footer-contact-list a:hover,
.footer-services-list a:hover {
 color: #000;
}

.footer-copyright {
 background-color: rgb(0 0 0 / 63%);
 padding: 1rem 0;
 margin-top: 3rem;
 color: white;
 text-align: center;
 font-size: 0.9rem;
}

/* Shape decorations */
.footer-shape {
 position: absolute;
 bottom: 0;
 right: 0;
 width: 300px;
 height: 300px;
 background-color: rgba(255, 255, 255, 0.1);
 border-radius: 50%;
 transform: translate(50%, 50%);
}

@media (max-width: 768px) {
 .footer {
     padding: 3rem 0 0 0;
 }
 
 .footer-logo {
     max-width: 150px;
     margin-bottom: 2rem;
 }
 
 .footer [class*="col-"] {
     margin-bottom: 2rem;
 }
}
.footer-copyright a {
    color: white;
}