/* Custom Styles for Laundry Website */

:root {
    --primary-color: #5a3c5a;
    /* Matching the green from the image */
    --secondary-color: #ffffff;
    --accent-color: #e7f1ff;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
}

.text-primary {
    color: #0d4a75 !important;
}

.text-success {
    color: #0d4a75 !important;
}

.text-warning {
    color: #0d4a75 !important;
}

.btn-outline-success {
    color: #0d4a75 !important;
    border-color: #0d4a75 !important;
}

.btn-outline-success:hover {
    background-color: #0d4a75 !important;
    color: white !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

/* Step Wizard */
.step-wizard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px 0;
}

.step-wizard::before {
    content: '';
    position: absolute;
    top: 35px;
    /* Adjusted to align with circle center */
    left: 0;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.step-wizard-item {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 25%;
}

.progress-line {
    position: absolute;
    top: 35px;
    left: 0;
    height: 2px;
    background: #0d4a75;
    /* Green dashed line color */
    z-index: 0;
    width: 0%;
    /* Dynamic width */
    transition: width 0.3s ease;
}

/* Dashed line effect simulation */
.step-wizard-dashed-line {
    position: absolute;
    top: 35px;
    left: 12%;
    /* Start after first dot roughly */
    width: 76%;
    /* Span across */
    height: 0;
    border-top: 2px dashed #0d4a75;
    z-index: 0;
}


.step-count {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
}

/* Active Step Styling to match image */
.step-wizard-item.active .step-count {
    border-color: #0d4a75;
    color: #0d4a75;
    box-shadow: 0 0 0 4px rgba(6, 77, 162, 0.2);
}

.step-label {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.2;
}

.step-wizard-item.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

/* Page Title */
.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h4 {
    color: #0d4a75;
    /* Dark blue from image text */
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: #0d4a75;
    background-color: #fcfdf9;
}

.service-icon {
    width: 80px;
    margin-right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
}



.service-title {
    color: #0d4a75;
    font-family: 'Times New Roman', serif;
    /* Matching the serif look in image */
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-features-list {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-meta-sec {
    color: #0d4a75;
    /* Light Green */
    font-size: 1rem;
    font-weight: 500;
}

.meta-time {
    margin-right: 8px;
}

.meta-divider {
    color: #ccc;
    margin: 0 8px;
}

.meta-price {
    font-weight: 600;
}

.custom-check-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    /* Default unselected */
    border: 2px solid #ddd;
    border-radius: 4px;
    /* Square with slight round */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: transparent;
}

.service-card.selected .custom-check-btn {
    background-color: #0d4a75;
    /* Vibrant Green */
    border-color: #0d4a75;
    color: white;
    font-size: 1.2rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 10px 5px;
        margin-bottom: 15px;
    }

    .service-icon {
        width: 50px;
        /* Smaller icon container */
        margin-right: 15px !important;
    }

    .service-icon i {
        font-size: 1.5em;
        /* Smaller icon */
    }

    .service-icon img {
        width: 40px !important;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-meta-sec {
        font-size: 0.85rem;
        margin-right: 0 !important;
        margin-bottom: 5px;
    }

    /* On mobile, we might want features under title/meta */
    .flex-grow-1 {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .service-info-sec {
        margin-right: 0 !important;
        width: 100%;
    }

    .service-features-list {
        font-size: 0.8rem;
    }

    .selection-box {
        margin-left: 10px !important;
    }

    .custom-check-btn {
        width: 32px;
        height: 32px;
    }
}

/* New Header Styles */
.logo-box {
    background-color: #5a3c5a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    /* Slightly rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: sans-serif;
}

.active-link {
    color: #5a3c5a !important;
}

.btn-outline-custom {
    border: 1px solid #ddd;
    color: #2c3e50;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    border-color: #5a3c5a;
    color: #5a3c5a;
    background: transparent;
}

.btn-dark-custom {
    background-color: #5a3c5a;
    /* Dark green/black from image */
    border: 1px solid #5a3c5a;
    font-size: 0.9rem;
    padding-top: 8px;
    padding-bottom: 8px;
}

.btn-dark-custom:hover {
    background-color: #002a1c;
    border-color: #002a1c;
    color: white;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.custom-checkbox i {
    display: none;
}

.service-card.selected .custom-checkbox i {
    display: block;
}

/* Proceed Button */
.btn-proceed {
    background-color: #5a3c5a;
    color: white;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(121, 162, 6, 0.3);
}

.btn-proceed:hover {
    background-color: #0d4a75;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 162, 6, 0.4);
}

.btn-proceed:disabled {
    background-color: #e0e0e0;
    color: #999;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Address Page Styles */
.address-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    transition: all 0.2s;
    cursor: pointer;
}

.address-card:hover {
    border-color: #5a3c5a;
    background-color: #f9fbf7;
}

.address-card.selected {
    border-color: #5a3c5a;
    background-color: #fff;
    box-shadow: 0 0 0 1px #5a3c5a;
}

.address-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #5a3c5a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a3c5a;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.address-details {
    flex-grow: 1;
}

.address-text {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
}

.address-subtext {
    font-size: 0.9rem;
    color: #6c757d;
}

.address-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-left: 20px;
    position: relative;
    cursor: pointer;
}

.address-card.selected .address-radio {
    border-color: #5a3c5a;
}

.address-card.selected .address-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #5a3c5a;
    border-radius: 50%;
}

.btn-add-address {
    background-color: #5a3c5a;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-add-address:hover {
    background-color: #0d4a75;
    color: white;
}


/* New Add Address Modal Styles */
.modal-xl-custom {
    max-width: 1000px;
}

.modal-content-custom {
    border-radius: 4px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.modal-header-custom {
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title-custom {
    color: #0d4a75;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-map-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
}

.form-section {
    flex: 1;
    padding: 20px 30px;
    min-width: 300px;
}

.map-section {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    position: relative;
    padding: 10px;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    min-height: 400px;
    border: 1px solid #ddd;
}

/* Custom Input Style */
.form-control-custom {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #495057;
    background: transparent;
    transition: all 0.3s;
}

.form-control-custom:focus {
    box-shadow: none;
    border-bottom-color: #5a3c5a;
}

.form-label-custom {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

/* Address Type Radio */
.address-type-group {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.address-type-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #495057;
}

.address-type-option input {
    margin-right: 8px;
    accent-color: #5a3c5a;
}

/* Location Header in Form */
.location-display {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-edit-location {
    color: #2c3e50;
    cursor: pointer;
}

/* Save Button */
.btn-save-address {
    background-color: #5a3c5a;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background 0.3s;
}


/* Confirm Order Page Styles */
.summary-card,
.details-card {
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    /* More padding as per image */
    height: 100%;
    border-radius: 4px;
    /* Slightly sharper corners */
}

.confirm-header {
    text-align: center;
    color: #0d4a75;
    /* Dark blue/teal from image */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: serif;
    /* Looks slightly serif in image or just distinct font */
}

.summary-row {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 15px;
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    flex: 0 0 140px;
    font-weight: 700;
    color: #444;
    /* Dark grey */
    font-size: 0.9rem;
}

.summary-colon {
    flex: 0 0 20px;
    font-weight: 700;
    color: #444;
}

.summary-value {
    flex: 1;
    text-align: right;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.summary-value.green-text {
    color: #5a3c5a;
}

/* Details list style */
.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
    color: #444;
}

.details-item:last-child {
    border-bottom: none;
}

.check-icon {
    color: #5a3c5a;
    background: #d8e3f5;
    /* Light green bg */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    /* Square with rounded corners */
    font-size: 12px;
}

.btn-confirm-order {
    background-color: #5a3c5a;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-confirm-order:hover {
    background-color: #0d4a75;
    color: white;
}

/* Success Modal Styles */
.modal-success-content {
    border-radius: 20px;
    border: none;
    padding: 20px;
    text-align: center;
}

.modal-back-link {
    display: block;
    text-align: left;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 20px;
    cursor: pointer;
}

.modal-heading {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.modal-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #5a3c5a;
    margin-left: 15px;
}

.success-icon-container {
    margin: 40px auto 20px;
    width: 80px;
    height: 80px;
    background-color: #5a3c5a;
    border-radius: 50%;
    /* Make it simple circle for now, image has scallop edges */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(121, 162, 6, 0.3);
    /* Simple scalloped effect using radial gradient is hard, we'll stick to circle or font-awesome stack */
}

/* Scalloped edge approximation with CSS could be complex, using simple wavy border radius or SVG is better.
   For simplicity, using a star-burst like polygon or just a clean circle. */
.scalloped-circle {
    width: 80px;
    height: 80px;
    background: #5a3c5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success-icon {
    color: white;
    font-size: 40px;
}

.success-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.btn-home {
    color: #5a3c5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.btn-continue {
    background-color: #5a3c5a;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 0 0 20px 0;
    /* Corner styling matching image potentially? Image shows full button */
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-continue:hover {
    background-color: #0d4a75;
    color: white;
}


/* Date Picker */
.date-picker-container {
    display: flex;
    justify-content: center;
    /* Center them to look nice */
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.date-card {
    border: 1px solid #5a3c5a;
    border-radius: 12px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    min-width: 80px;
    transition: all 0.3s;
    background: white;
}

.date-card .date-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
}

.date-card .date-day {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Hover state */
.date-card:hover {
    background-color: #f1f8e9;
}

/* Active State */
.date-card.active {
    background-color: #5a3c5a;
    color: white;
}

.date-card.active .date-num,
.date-card.active .date-day {
    color: white;
}


/* Time Slots */
.slots-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.slots-header {
    background-color: #0d4a75;
    /* Light green header */
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slots-body {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.time-slot {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px 20px;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    min-width: 140px;
    text-align: center;
}

.time-slot:hover {
    border-color: #0d4a75;
    color: #0d4a75;
}

.time-slot.active {
    background-color: #0d4a75;
    color: white;
    border-color: #0d4a75;
}

/* Navigation Buttons */
.nav-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-back {
    border: 1px solid #5a3c5a;
    color: #2c3e50;
    background: white;
    padding: 10px 50px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #f1f1f1;
}

.btn-next-step {
    background: #0d4a75;
    color: white;
    border: none;
    padding: 10px 50px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-next-step:hover {
    background: #0d4a75;
    color: white;
}

.btn-next-step:disabled {
    background: #ced4da;
    cursor: not-allowed;
}

/* Page Sub-Heading for Date */
.page-subheading {
    text-align: center;
    color: #0d4a75;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 1rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    z-index: 1050;
    padding: 0 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Make space for the fixed footer so content isn't hidden */
body {
    padding-bottom: 90px;
}

/* Hide global footer entirely on mobile devices */
@media (max-width: 767.98px) {
    footer {
        display: none !important;
    }
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none !important;
        /* Ensure hidden on desktop */
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    font-size: 0.7rem;
    flex: 1;
    z-index: 2;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active {
    color: #5a3c5a;
}

.mobile-bottom-nav .nav-item-center {
    position: relative;
    width: 80px;
    top: -30px;
    /* Pull up to float */
    display: flex;
    justify-content: center;
    z-index: 2;
}

/* The Curved Hump/Notch Effect */
.mobile-bottom-nav .nav-item-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    /* Match footer shadow */
    z-index: -1;
}

.mobile-bottom-nav .nav-item-center::after {
    /* Cover the shadow at the bottom connection points */
    content: '';
    position: absolute;
    bottom: -45px;
    left: -20px;
    right: -20px;
    height: 50px;
    background: white;
    z-index: -1;
}

.mobile-bottom-nav .fab-btn {
    width: 65px;
    height: 65px;
    background-color: #5a3c5a;
    background: linear-gradient(135deg, #5a3c5a 0%, #0d4a75 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(6 77, 162, 0.4);
    transition: transform 0.2s;
    border: 4px solid white;
    /* White ring to separate from shadow/bg */
    text-decoration: none;
}

.mobile-bottom-nav .fab-btn:hover {
    color: white;
    width: 65px;
}

.mobile-bottom-nav .fab-btn:active {
    transform: scale(0.95);
}

/* Image Scroller Section */
.image-scroller-section {
    background-color: #5a3c5a;
    /* Dark purple background from image */
    padding: 20px 0;
    overflow: hidden;
}

.scroller-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    /* Space for dots */
    position: relative;
    scrollbar-width: none;
    /* Firefox */
}

.scroller-container::-webkit-scrollbar {
    display: none;
}

.scroller-track {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    /* Side padding */
    width: max-content;
    /* Allow content to dictate width */
}

.scroller-item {
    width: 280px;
    /* Fixed width for card look */
    height: 280px;
    /* Square-ish aspect ratio */
    flex-shrink: 0;
    border-radius: 4px;
    /* Slight rounding or sharp usually */
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    /* White border often seen in these designs */
    background: white;
}

.scroller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroller-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.scroller-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.scroller-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.scroller-dots .dot.active {
    background-color: #5a3c5a;
    /* Green active dot */
    border: 1px solid white;
    transform: scale(1.2);
}

@media (min-width: 768px) {

    /* On desktop, maybe show as a grid or larger scroller? 
       For now, keep scrolling but center if enough space or just scroll. */
    .scroller-track {
        gap: 15px;
        padding: 0 10px;
    }

    .scroller-item {
        width: 320px;
        height: 320px;
        transition: transform 0.3s;
    }

    .scroller-item:hover {
        transform: scale(1.05);
        z-index: 2;
    }
}

/* Quick Service Grid (After Scroller) */
.quick-service-section {
    background-color: white;
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-service-grid {
    display: flex;
    justify-content: space-around;
    /* Distribute evenly */
    flex-wrap: wrap;
    /* Allow wrapping on very small screens */
    gap: 15px;
}

.quick-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    width: 80px;
    /* Fixed width for alignment */
    transition: transform 0.2s;
}

.quick-service-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.quick-service-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    /* Increase space between icon and text */
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}


/* Detailed Service Card on Home */
.service-card-home {
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color) !important;
}

.home-service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .home-service-icon {
        width: 60px;
        height: 60px;
        margin-right: auto !important;
        /* Keep it centered like desktop */
    }

    .home-service-icon .service-icon-fa {
        font-size: 2em;
        /* Smaller icon size for mobile */
    }
}

/* About Us Section */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.about-us-section img {
    transition: transform 0.3s ease;
}

.about-us-section img:hover {
    transform: scale(1.02);
}

/* Why Choose Us Section */
.why-choose-us-section .icon-circle {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.why-choose-us-section .feature-item:hover .icon-circle {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 74, 117, 0.2) !important;
}

.why-choose-us-section .text h6 {
    letter-spacing: 0.5px;
    color: #555;
    transition: color 0.3s;
}

.why-choose-us-section .feature-item:hover .text h6 {
    color: var(--primary-color);
}

/* We Also Serve Section Styles */
.we-also-serve-section .separator-line {
    border-radius: 2px;
}

.we-also-serve-section .serve-item {
    transition: transform 0.3s ease;
}

.we-also-serve-section .serve-item:hover {
    transform: translateY(-5px);
}

.btn-outline-custom-purple:hover {
    background-color: #6a1b9a;
    color: white !important;
}

/* Reviews Section Styles */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
    background-color: white !important;
}

.user-avatar {
    font-size: 1.2rem;
}

/* Marquee Scrolling Styles */
.reviews-marquee-container {
    width: 100%;
    padding: 20px 0;
}

.review-slide {
    width: 350px;
    flex-shrink: 0;
}

/* Mobile Responsiveness for Reviews */
@media (max-width: 768px) {
    .review-slide {
        width: 300px;
        /* Slightly smaller on tablets */
    }
}

@media (max-width: 576px) {
    .review-slide {
        width: 280px;
        /* Fixed width for mobile */
    }
}

.reviews-track {
    animation: scroll 40s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* -50% because we duplicated the content for seamless loop */
}

/* Fade Gradients for Marquee */
.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Detailed Category Pricing Styles - Inline */
.detailed-pricing-container {
    max-width: 100p%;
    margin: 0;
}

.detailed-price-card {
    background: #fdfdfd;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid #f2f2f2;
    transition: background 0.2s ease, border-color 0.2s ease;
}

/* Inner List Styles */
.inner-price-list {
    border-color: #f2f2f2 !important;
}

.inner-price-item {
    display: flex;
    align-items: baseline;
    padding: 12px 0;
    color: #666;
    font-size: 0.95rem;
}

.inner-item-name {
    white-space: nowrap;
}

.inner-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.inner-item-price {
    white-space: nowrap;
    text-align: right;
}

/* Toggling Minus Icon pseudo-logic via collapse */
.detailed-price-card[aria-expanded="true"] .icon-plus line:nth-child(1) {
    display: none;
}

.detailed-price-card[aria-expanded="true"] {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.detailed-price-card:hover {
    background: #f8f9fa;
    border-color: #0d4a75;
}

.detailed-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 15px;
}

.detailed-icon svg {
    width: 100%;
    height: 100%;
}

.luxury-star {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px !important;
    height: 12px !important;
    z-index: 2;
}

.detailed-title {
    flex-grow: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: #6c757d;
}

.detailed-plus {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detailed-plus svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .detailed-price-card {
        padding: 12px 15px;
        margin-bottom: 8px;
    }

    .detailed-title {
        font-size: 0.95rem;
    }

    .detailed-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }
}

/* Pricing Page Styles */
.pricing-page-bg {
    background-color: #f7f9fa;
}

.price-list-container {
    max-width: 650px;
    margin: 0 auto;
}

.price-list-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.price-list-card:hover {
    border-color: #0d4a75;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.price-list-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.price-list-title {
    font-weight: 700;
    color: #0d4a75;
    /* Blue to match homepage headings */
    font-size: 1.15rem;
    flex-grow: 1;
}

.price-list-price {
    font-weight: 700;
    color: #666;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.price-list-tag {
    width: 22px;
    height: 22px;
    margin-right: 6px;
}

.price-list-link {
    color: #5a3c5a;
    /* Plum to match brand accents */
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .price-list-card {
        padding: 12px 15px;
    }

    .price-list-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .price-list-title {
        font-size: 1.05rem;
    }

    .price-list-tag {
        width: 18px;
        height: 18px;
        margin-right: 4px;
    }

    .price-list-price,
    .price-list-link {
        font-size: 1.05rem;
    }
}

/* --- Desktop Pricing Page Split View --- */
@media (min-width: 992px) {
    .price-list-container {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 1px 1px;
        align-items: start;
        max-width: 100%;
    }

    .price-list-container>.price-list-card {
        grid-column: 1;
        margin-bottom: 0 !important;
        padding: 5px 12px;
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .price-list-wrapper {
        display: contents;
    }

    .price-list-wrapper>.price-list-card {
        grid-column: 1;
        margin-bottom: 0 !important;
        padding: 5px 12px;
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .price-list-container>.price-list-card .price-list-icon,
    .price-list-wrapper>.price-list-card .price-list-icon {
        width: 32px;
        height: 32px;
        margin-right: 15px;
        /* Push text to the right, keep icon far left */
        flex-shrink: 0;
    }

    .price-list-container>.price-list-card .price-list-title,
    .price-list-wrapper>.price-list-card .price-list-title {
        font-size: 0.85rem;
    }

    .price-list-container>.price-list-card .price-list-price,
    .price-list-container>.price-list-card .price-list-link,
    .price-list-wrapper>.price-list-card .price-list-price,
    .price-list-wrapper>.price-list-card .price-list-link {
        font-size: 0.85rem;
    }

    .price-list-wrapper>.collapse,
    .price-list-wrapper>.collapsing {
        grid-column: 2;
        grid-row: 1 / 20;
        margin-top: 0;
    }

    .price-list-wrapper>.price-list-card[aria-expanded="true"] {
        border-color: #0d4a75;
        background-color: #fcfdf9;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .price-list-link i.fa-chevron-down {
        transform: rotate(-90deg);
    }

    .detailed-pricing-container {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: flex-start;
        align-content: flex-start;
        margin-left: 5px;
        /* Pull the detailed container slightly left to merge closer */
    }

    .detailed-accordion-wrapper {
        display: contents;
    }

    .detailed-accordion-wrapper>.detailed-price-card {
        flex: 0 0 auto;
        order: 1;
        margin-bottom: 0 !important;
        border-bottom-left-radius: 8px !important;
        border-bottom-right-radius: 8px !important;
        min-width: 0;
        justify-content: flex-start;
        padding: 4px 6px;
    }

    .detailed-accordion-wrapper>.detailed-price-card .detailed-title {
        font-size: 0.8rem;
        font-weight: 700;
        color: #111;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
    }

    .detailed-accordion-wrapper>.detailed-price-card .detailed-icon {
        width: 14px;
        height: 14px;
        margin-right: 4px;
        flex-shrink: 0;
    }

    .detailed-accordion-wrapper>.collapse,
    .detailed-accordion-wrapper>.collapsing {
        order: 2;
        width: 100%;
        margin-top: 8px;
        /* Tighter margin up to the tabs */
    }

    .inner-price-list {
        border-top: 1px solid #f2f2f2 !important;
        border-radius: 8px !important;
    }

    .detailed-price-card[aria-expanded="true"] {
        background-color: #0d4a75;
        color: white;
        border-color: #0d4a75;
    }

    .detailed-price-card[aria-expanded="true"] .detailed-title {
        color: white;
    }

    .detailed-price-card[aria-expanded="true"] svg path[fill="#c0c0c0"],
    .detailed-price-card[aria-expanded="true"] svg[fill="#c0c0c0"] {
        fill: white;
    }

    .detailed-price-card[aria-expanded="true"] .icon-plus line {
        stroke: white;
    }

    .detailed-price-card .detailed-plus {
        display: none !important;
    }

    .detailed-icon {
        margin-right: 4px;
    }
}