   /* AC Service Detailing page styles  */
   
   /* --- Color Palette --- */
        :root {
            --gu-indigo: #2F3C7E;
            --gu-yellow: #FFC72C;
            --gu-white: #FFFFFF;
            --gu-grey: #2B2B2B;
            --gu-light-bg: #F8F9FA;
            --gu-light-blue: #9ab6e7;
        }

      

        /* --- Mini Banner Section --- */
        .service-banner-card {
            background: var(--gu-white);
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(47, 60, 126, 0.08);
            padding: 25px;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 199, 44, 0.15);
            transition: all 0.3s ease;
        }

        .service-banner-card:hover {
            border-color: var(--gu-yellow);
            box-shadow: 0 6px 20px rgba(255, 199, 44, 0.2);
            transform: translateY(-2px);
        }

        .hero-title {
            color: var(--gu-indigo);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .price-tag {
            color: var(--gu-indigo);
            font-weight: 800;
            font-size: 1.4rem;
        }

        @media (max-width: 576px) {
            .service-banner-card {
                padding: 20px;
            }

            .hero-title {
                font-size: 1.3rem;
            }

            .price-tag {
                font-size: 1.2rem;
            }
        }

        /* Service Image styling */
        .ac-img-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 8px;
            border-radius: 14px;
        }
        
        .ac-img-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            /* background: var(--gu-light-blue); */
            opacity: 0.15;
            border-radius: 16px;
            z-index: 0;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.05); opacity: 0.25; }
        }

        .service-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            object-position: center;
            z-index: 1;
            position: relative;
            filter: drop-shadow(0 4px 8px rgba(154, 182, 231, 0.3));
            transition: all 0.3s ease;
            background: transparent;
            padding: 0;
            border-radius: 12px;
        }

        .service-banner-card:hover .service-image {
            transform: scale(1.1);
            filter: drop-shadow(0 6px 12px rgba(154, 182, 231, 0.5));
        }

        @media (max-width: 768px) {
            .ac-img-container {
                padding: 8px;
                border-radius: 12px;
            }

            .service-image {
                width: 90px;
                height: 90px;
                padding: 0;
                border-radius: 12px;
            }
        }

        @media (max-width: 576px) {
            .ac-img-container {
                padding: 6px;
                min-height: 110px;
                border-radius: 10px;
            }

            .service-image {
                width: 95px;
                height: 95px;
                padding: 0;
                border-radius: 10px;
            }

            .service-banner-card .row.align-items-center {
                gap: 0;
            }

            .service-card-row {
                margin-left: -5px;
                margin-right: -5px;
            }
        }

        @media (max-width: 400px) {
            .ac-img-container {
                padding: 5px;
                min-height: 105px;
                border-radius: 8px;
            }

            .service-image {
                width: 90px;
                height: 90px;
                padding: 0;
                border-radius: 8px;
            }

            .service-banner-card {
                padding: 16px;
            }

            .service-card-row {
                margin-left: -3px;
                margin-right: -3px;
            }
        }

        /* Buttons */
        .btn-gold {
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            color: var(--gu-indigo);
            font-weight: 700;
            border: 2px solid var(--gu-yellow);
            padding:  5px 5px;            border-radius: 8px;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 12px rgba(255, 199, 44, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, #ffdc6e 0%, var(--gu-yellow) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 199, 44, 0.4);
            color: var(--gu-indigo);
        }

        .btn-gold:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-outline-success {
            background: var(--gu-white) !important;
            color: #28a745 !important;
            border: 2px solid #28a745 !important;
            font-weight: 700;
            padding: 8px 16px !important;
            font-size: 0.85rem !important;
        }

        .btn-outline-success:hover {
            background: #28a745 !important;
            color: var(--gu-white) !important;
        }

        .link-details {
            color: var(--gu-indigo);
            text-decoration: none;
            font-size: 0.9rem;
            cursor: pointer;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .link-details:hover {
            color: var(--gu-yellow);
            gap: 8px;
        }

        .link-details i {
            transition: transform 0.3s ease;
        }

        .link-details:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 576px) {
            .btn-gold {
                padding:  5px 5px;                font-size: 0.8rem;
            }
            
            .btn-outline-success {
                padding: 2px 2px   !important;
                font-size: 0.8rem !important;
            }
        }
        
        @media (max-width: 420px) {
            .btn-gold {
                padding:  5px 5px;                font-size: 0.75rem;
                letter-spacing: 0.3px;
            }
            
            .btn-outline-success {
                padding: 2px 2px !important;
                font-size: 0.75rem !important;
            }
        }

        /* --- Service Details Modal Styling --- */
        .modal-header-custom {
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #3f4d99 100%);
            color: white;
            padding: 0;
            border-bottom: none;
            position: relative;
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .modal-service-image-scroll {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            border-radius: 12px;
            margin-bottom: 0;
        }

        .modal-image-section {
            position: relative;
            margin: 0;
            padding: 0;
        }

        .modal-price-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .modal-overlay-price {
            color: var(--gu-yellow);
            font-size: 2rem;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay-price .original-price {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: line-through;
            margin-left: 10px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .modal-close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .modal-close-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .modal-close-btn i {
            color: var(--gu-indigo);
            font-size: 1.3rem;
        }

        .process-step {
            padding: 20px 30px;
            background: white;
            border-left: 5px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            transition: height 0.3s ease;
        }

        .process-step:hover::before {
            height: 100%;
        }

        .process-step:hover {
            background: rgba(255, 199, 44, 0.03);
            transform: translateX(5px);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #3f4d99 100%);
            color: var(--gu-yellow);
            border-radius: 12px;
            font-weight: 800;
            font-size: 1.3rem;
            margin-right: 18px;
            box-shadow: 0 4px 12px rgba(47, 60, 126, 0.2);
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            color: var(--gu-indigo);
            font-weight: 800;
            font-size: 1.15rem;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .step-description {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .step-wrapper {
            display: flex;
            align-items: flex-start;
        }

        .modal-footer-custom {
            background: white;
            padding: 20px 25px;
            border-top: 2px solid rgba(255, 199, 44, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .btn-add-to-cart {
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            color: var(--gu-indigo);
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 199, 44, 0.3);
            flex: 1;
        }

        .btn-add-to-cart:hover {
            background: linear-gradient(135deg, #ffdc6e 0%, var(--gu-yellow) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 199, 44, 0.4);
        }
        
        .btn-add-to-cart.btn-added-state {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }
        
        .btn-add-to-cart.btn-added-state:hover {
            background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
        }

        .brands-section {
            background: linear-gradient(135deg, rgba(154, 182, 231, 0.08) 0%, rgba(47, 60, 126, 0.05) 100%);
            padding: 20px 25px;
            text-align: center;
            border-top: 1px solid rgba(154, 182, 231, 0.2);
            margin-bottom: 0;
        }

        .brands-title {
            color: var(--gu-indigo);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .brands-image {
            width: 100%;
            max-width: 450px;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            margin: 0 auto 12px;
            display: block;
        }

        .brands-note {
            font-size: 0.8rem;
            color: #555;
            line-height: 1.5;
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            text-align: left;
            background: white;
            padding: 12px 15px;
            border-radius: 8px;
            border-left: 3px solid var(--gu-yellow);
        }

        .brands-note i {
            color: #28a745;
            margin-top: 2px;
            flex-shrink: 0;
            font-size: 0.95rem;
        }

        .brands-note span {
            flex: 1;
        }

        /* AC Type Selector */
        .ac-type-selector {
            padding: 12px 18px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-bottom: 1px solid rgba(154, 182, 231, 0.2);
        }

        .ac-type-title {
            color: var(--gu-indigo);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ac-type-title i {
            color: var(--gu-yellow);
        }

        .ac-type-options {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

        .ac-type-option {
            flex: 1;
            padding: 12px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ac-type-option:hover {
            border-color: var(--gu-yellow);
            box-shadow: 0 2px 8px rgba(255, 199, 44, 0.2);
        }

        .ac-type-header {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ac-type-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-align: center;
        }

        .ac-type-option .type-icon {
            font-size: 1.6rem;
            color: var(--gu-indigo);
        }

        .ac-type-details {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .ac-type-option .type-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--gu-indigo);
        }

        .ac-type-option .type-price {
            font-size: 0.72rem;
            color: var(--gu-yellow);
            font-weight: 600;
            margin-top: 2px;
        }

        .ac-type-qty-controls {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            padding: 5px 8px;
            border-radius: 8px;
            border: 2px solid #e0e0e0;
            justify-content: center;
        }

        .ac-type-qty-btn {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            border: none;
            border-radius: 6px;
            color: var(--gu-indigo);
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ac-type-qty-btn:hover:not(:disabled) {
            transform: scale(1.1);
            box-shadow: 0 2px 6px rgba(255, 199, 44, 0.4);
        }

        .ac-type-qty-btn:disabled {
            background: #e0e0e0;
            color: #999;
            cursor: not-allowed;
        }

        .ac-type-qty-value {
            min-width: 40px;
            text-align: center;
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--gu-indigo);
        }

        /* Quantity Controls */
        .quantity-section {
            padding: 15px 20px;
            background: white;
            border-bottom: 1px solid rgba(154, 182, 231, 0.2);
        }

        .quantity-title {
            color: var(--gu-indigo);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .qty-btn {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            border: none;
            border-radius: 8px;
            color: var(--gu-indigo);
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
        }

        .qty-btn:disabled {
            background: #e0e0e0;
            color: #999;
            cursor: not-allowed;
            transform: none;
        }

        .qty-display {
            flex: 1;
            text-align: center;
            padding: 10px 20px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-radius: 8px;
            border: 2px solid var(--gu-yellow);
        }

        .qty-value {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gu-indigo);
        }

        .qty-label {
            font-size: 0.7rem;
            color: #666;
            margin-top: 2px;
        }

        .total-price-label {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .total-price-value {
            color: var(--gu-indigo);
            font-size: 1.5rem;
            font-weight: 800;
        }

        .btn-done {
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #3f4d99 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(47, 60, 126, 0.3);
            flex: 1;
        }

        .btn-done:hover {
            background: linear-gradient(135deg, #3f4d99 0%, var(--gu-indigo) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(47, 60, 126, 0.4);
        }

        @media (max-width: 768px) {
            .modal-service-image {
                height: 210px;
            }

            .modal-price-overlay {
                padding: 18px 20px;
            }

            .modal-overlay-price {
                font-size: 1.7rem;
            }

            .modal-overlay-price .original-price {
                font-size: 1.1rem;
            }

            .modal-close-btn {
                width: 36px;
                height: 36px;
                top: 12px;
                right: 12px;
            }

            .process-step {
                padding: 18px 20px;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 1.15rem;
                margin-right: 15px;
            }

            .step-title {
                font-size: 1.05rem;
            }

            .step-description {
                font-size: 0.9rem;
            }

            .brands-section {
                padding: 15px 20px;
            }

            .brands-title {
                font-size: 0.95rem;
            }

            .brands-image {
                max-width: 400px;
                margin-bottom: 10px;
            }

            .brands-note {
                font-size: 0.75rem;
                padding: 10px 12px;
            }

            .ac-type-selector {
                padding: 10px 15px;
            }

            .ac-type-title {
                font-size: 0.85rem;
                margin-bottom: 8px;
            }

            .ac-type-options {
                gap: 8px;
            }

            .ac-type-option {
                padding: 10px;
            }

            .ac-type-option .type-icon {
                font-size: 1.4rem;
            }

            .ac-type-option .type-name {
                font-size: 0.8rem;
            }

            .ac-type-option .type-price {
                font-size: 0.68rem;
            }

            .ac-type-qty-btn {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .ac-type-qty-value {
                min-width: 38px;
                font-size: 0.88rem;
            }
        }

        @media (max-width: 576px) {
            .modal-service-image {
                height: 180px;
            }

            .modal-price-overlay {
                padding: 15px;
            }

            .modal-overlay-price {
                font-size: 1.5rem;
            }

            .modal-overlay-price .original-price {
                font-size: 0.95rem;
                margin-left: 8px;
            }

            .modal-close-btn {
                width: 32px;
                height: 32px;
                top: 10px;
                right: 10px;
            }

            .modal-close-btn i {
                font-size: 1.1rem;
            }

            .process-step {
                padding: 12px 15px;
                border-left: 3px solid transparent;
                margin-bottom: 2px;
            }

            .process-step:hover {
                transform: translateX(0);
            }

            .step-wrapper {
                display: flex;
                align-items: flex-start;
                gap: 10px;
            }

            .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
                margin-right: 0;
                border-radius: 8px;
                flex-shrink: 0;
            }

            .step-content {
                flex: 1;
            }

            .step-title {
                font-size: 0.95rem;
                margin-bottom: 4px;
                line-height: 1.3;
            }

            .step-description {
                font-size: 0.82rem;
                line-height: 1.4;
            }

            .modal-footer-custom {
                padding: 12px 15px;
                flex-direction: column;
                gap: 10px;
            }

            .btn-add-to-cart {
                width: 100%;
                padding: 11px 25px;
                order: 1;
                font-size: 0.95rem;
            }

            .btn-done {
                width: 100%;
                padding: 11px 25px;
                order: 2;
                font-size: 0.95rem;
            }

            .brands-section {
                padding: 12px 15px;
            }

            .brands-title {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .brands-image {
                max-width: 100%;
                margin-bottom: 10px;
            }

            .brands-note {
                font-size: 0.72rem;
                padding: 8px 10px;
                gap: 6px;
            }

            .brands-note i {
                font-size: 0.85rem;
            }

            .ac-type-selector {
                padding: 10px 15px;
            }

            .ac-type-title {
                font-size: 0.85rem;
                margin-bottom: 10px;
            }

            .ac-type-options {
                gap: 8px;
            }

            .ac-type-option {
                padding: 10px 8px;
            }

            .ac-type-header {
                gap: 8px;
            }

            .ac-type-info {
                gap: 6px;
            }

            .ac-type-option .type-icon {
                font-size: 1.3rem;
            }

            .ac-type-option .type-name {
                font-size: 0.75rem;
            }

            .ac-type-option .type-price {
                font-size: 0.65rem;
            }

            .ac-type-qty-controls {
                gap: 6px;
                padding: 4px 6px;
            }

            .ac-type-qty-btn {
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }

            .ac-type-qty-value {
                min-width: 35px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .modal-dialog {
                max-width: 100%;
                margin: 0;
                max-height: 100vh;
                border-radius: 0;
            }

            .modal-dialog-scrollable .modal-body {
                max-height: calc(100vh - 100px);
            }

            .modal-content {
                border-radius: 0;
                min-height: 100vh;
            }

            .modal-service-image-scroll {
                height: 140px;
                border-radius: 8px;
            }

            .modal-price-overlay {
                padding: 8px 10px;
            }

            .modal-overlay-price {
                font-size: 1.1rem;
            }

            .modal-overlay-price .original-price {
                font-size: 0.8rem;
                margin-left: 6px;
            }

            .process-details-section {
                padding: 8px 12px;
            }

            .process-detail-item {
                padding: 6px;
                margin-bottom: 5px;
            }

            .process-detail-header {
                gap: 6px;
            }

            .process-detail-icon {
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }

            .process-detail-title {
                font-size: 0.8rem;
            }

            .process-detail-desc {
                font-size: 0.7rem;
                padding-left: 0;
                margin-top: 4px;
            }

            .included-section,
            .not-included-section-new {
                padding: 12px 15px;
            }

            .section-title {
                font-size: 0.95rem;
                margin-bottom: 10px;
            }

            .section-title i {
                font-size: 1rem;
            }

            .included-list li,
            .not-included-list li {
                padding: 7px 8px;
                font-size: 0.8rem;
                gap: 8px;
                margin-bottom: 6px;
            }

            .included-list li i,
            .not-included-list li i {
                font-size: 0.9rem;
            }

            .disclaimer-section {
                padding: 10px 15px;
            }

            .disclaimer-text {
                font-size: 0.7rem;
            }

            .modal-footer-custom {
                padding: 10px 12px;
                gap: 8px;
            }

            .modal-service-image {
                height: 140px;
            }

            .modal-price-overlay {
                padding: 10px 12px;
                flex-direction: column;
                align-items: flex-start;
            }

            .modal-overlay-price {
                font-size: 1.2rem;
            }

            .modal-overlay-price .original-price {
                font-size: 0.9rem;
                display: block;
                margin-left: 0;
                margin-top: 4px;
            }

            .process-step {
                padding: 10px 12px;
                border-left: 3px solid transparent;
                margin-bottom: 1px;
            }

            .process-step:hover {
                transform: none;
                background: white;
            }

            .step-wrapper {
                display: flex;
                align-items: flex-start;
                gap: 8px;
                flex-direction: row;
                text-align: left;
            }

            .step-number {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
                margin-right: 0;
                margin-bottom: 0;
                border-radius: 6px;
                flex-shrink: 0;
            }

            .step-content {
                flex: 1;
            }

            .step-title {
                font-size: 0.88rem;
                margin-bottom: 3px;
                line-height: 1.2;
            }

            .step-description {
                font-size: 0.78rem;
                line-height: 1.35;
            }

            .modal-footer-custom {
                padding: 12px;
                gap: 10px;
            }

            .btn-add-to-cart {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .btn-done {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .brands-section {
                padding: 12px 10px;
            }

            .brands-title {
                font-size: 0.85rem;
                margin-bottom: 8px;
            }

            .brands-image {
                max-width: 100%;
                border-radius: 6px;
                margin-bottom: 10px;
            }

            .brands-note {
                font-size: 0.7rem;
                padding: 8px 10px;
                gap: 6px;
            }

            .brands-note i {
                font-size: 0.85rem;
            }
        }

        .modal-dialog {
            max-width: 650px;
            max-height: 95vh;
            margin: 1.75rem auto;
        }

        .modal-dialog-scrollable .modal-body {
            overflow-y: auto;
            max-height: calc(95vh - 150px);
        }

        .modal-content {
            border-radius: 16px;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
        }

        .modal-body {
            padding: 0;
            background: white;
            flex: 1;
            overflow-y: auto;
        }

        /* Detailed Process Section - Compact */
        .process-details-section {
            padding: 15px 20px;
            background: white;
        }

        .process-detail-item {
            padding: 10px 12px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-left: 3px solid var(--gu-yellow);
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .process-detail-item:hover {
            border-left-color: var(--gu-indigo);
            transform: translateX(3px);
            box-shadow: 0 2px 8px rgba(47, 60, 126, 0.08);
        }

        .process-detail-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }

        .process-detail-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gu-indigo);
            font-weight: 800;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .process-detail-title {
            color: var(--gu-indigo);
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0;
        }

        .process-detail-desc {
            color: #555;
            font-size: 0.8rem;
            line-height: 1.4;
            margin: 0;
            padding-left: 40px;
        }

        /* Included Section */
        .included-section {
            padding: 20px 25px;
            background: white;
        }

        .section-title {
            color: var(--gu-indigo);
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-title i {
            color: var(--gu-yellow);
            font-size: 1.2rem;
        }

        .included-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .included-list li {
            padding: 10px 12px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: #333;
            transition: all 0.2s ease;
        }

        .included-list li:hover {
            background: linear-gradient(135deg, #e3f2ff 0%, #f5f8ff 100%);
            transform: translateX(5px);
        }

        .included-list li i {
            color: #28a745;
            font-size: 1rem;
            flex-shrink: 0;
        }

        /* Divider */
        .modal-divider {
            margin: 0 25px;
            border: 0;
            border-top: 2px solid rgba(255, 199, 44, 0.3);
        }

        /* Not Included Section */
        .not-included-section-new {
            padding: 20px 25px;
            background: white;
        }

        .not-included-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .not-included-list li {
            padding: 10px 12px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: #333;
            transition: all 0.2s ease;
        }

        .not-included-list li:hover {
            background: linear-gradient(135deg, #ffe8e8 0%, #fff5f5 100%);
            transform: translateX(5px);
        }

        .not-included-list li i {
            color: #e74c3c;
            font-size: 1rem;
            flex-shrink: 0;
        }

        /* Disclaimer */
        .disclaimer-section {
            padding: 15px 25px;
            background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
            border-top: 1px solid rgba(255, 199, 44, 0.2);
        }

        .disclaimer-text {
            font-size: 0.8rem;
            color: #666;
            line-height: 1.5;
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .disclaimer-text i {
            color: #ff9800;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* Static Footer */
        .modal-footer-custom {
            background: white;
            padding: 15px 20px;
            border-top: 2px solid rgba(255, 199, 44, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            position: sticky;
            bottom: 0;
            z-index: 10;
        }
        
        .info-section {
            background: #fdfdfd;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            border: 1px solid #eee;
        }

        .check-list li {
            list-style: none;
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        /* --- Process Details Modal --- */
        .process-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 22px;
            margin-bottom: 18px;
            border-left: 5px solid var(--gu-yellow);
            box-shadow: 0 3px 10px rgba(47, 60, 126, 0.1);
            transition: all 0.3s ease;
        }

        .process-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(47, 60, 126, 0.15);
            border-left-color: var(--gu-indigo);
        }

        .process-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            gap: 5px;
        }

        .process-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(255, 199, 44, 0.3);
        }

        .process-icon i {
            font-size: 1.4rem;
            color: var(--gu-indigo);
        }

        .process-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--gu-indigo);
            margin: 0;
            letter-spacing: 0.3px;
        }

        .process-description {
            color: #555;
            font-size: 0.96rem;
            line-height: 1.7;
            margin: 0;
            padding-left: 70px;
        }

        .process-description strong {
            color: var(--gu-indigo);
            font-weight: 700;
            background: linear-gradient(120deg, #fff9e6 0%, transparent 100%);
            padding: 2px 6px;
            border-radius: 4px;
            display: inline-block;
        }

        .not-included-section {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border-radius: 12px;
            padding: 22px;
            border-left: 5px solid #e74c3c;
            margin-top: 25px;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.1);
        }

        .not-included-section h6 {
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 18px;
            font-size: 1.15rem;
            letter-spacing: 0.3px;
        }

        .not-included-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .not-included-list li {
            color: #555;
            font-size: 0.94rem;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
            padding: 10px 12px;
            background: #fff;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .not-included-list li:hover {
            background: #ffeded;
            transform: translateX(5px);
        }

        .not-included-list li i {
            color: #e74c3c;
            margin-right: 12px;
            margin-top: 4px;
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .not-included-list li strong {
            color: #c0392b;
            font-weight: 700;
        }

        .process-badge {
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #3f4d99 100%);
            color: white;
            font-size: 0.75rem;
            padding: 5px 14px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-left: auto;
            box-shadow: 0 2px 6px rgba(47, 60, 126, 0.2);
        }

        @media (max-width: 768px) {
            .modal-dialog {
                max-width: 95%;
                margin: 0.5rem auto;
                max-height: 98vh;
            }

            .modal-dialog-scrollable .modal-body {
                max-height: calc(98vh - 140px);
            }

            .modal-service-image-scroll {
                height: 180px;
            }

            .modal-price-overlay {
                padding: 12px 15px;
            }

            .process-details-section {
                padding: 12px 18px;
            }

            .process-detail-item {
                padding: 8px 10px;
                margin-bottom: 6px;
            }

            .process-detail-icon {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .process-detail-title {
                font-size: 0.9rem;
            }

            .process-detail-desc {
                font-size: 0.78rem;
                padding-left: 38px;
            }
        }

        @media (max-width: 576px) {
            .modal-dialog {
                max-width: 98%;
                margin: 0.25rem auto;
                max-height: 99vh;
            }

            .modal-dialog-scrollable .modal-body {
                max-height: calc(99vh - 120px);
            }

            .modal-content {
                border-radius: 12px;
            }

            .modal-service-image-scroll {
                height: 160px;
                border-radius: 10px;
            }

            .modal-price-overlay {
                padding: 10px 12px;
            }

            .modal-overlay-price {
                font-size: 1.3rem;
            }

            .modal-overlay-price .original-price {
                font-size: 0.85rem;
            }

            .process-details-section {
                padding: 10px 15px;
            }

            .process-detail-item {
                padding: 8px;
                margin-bottom: 6px;
            }

            .process-detail-icon {
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }

            .process-detail-title {
                font-size: 0.85rem;
            }

            .process-detail-desc {
                font-size: 0.75rem;
                padding-left: 0;
                margin-top: 5px;
            }

            .included-section,
            .not-included-section-new {
                padding: 15px 20px;
            }

            .section-title {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .included-list li,
            .not-included-list li {
                padding: 8px 10px;
                font-size: 0.85rem;
                gap: 10px;
            }

            .disclaimer-section {
                padding: 12px 20px;
            }

            .disclaimer-text {
                font-size: 0.75rem;
            }

            .modal-footer-custom {
                padding: 12px 15px;
                gap: 10px;
            }

            .process-card {
                padding: 16px;
                margin-bottom: 14px;
            }
            
            .process-icon {
                width: 46px;
                height: 46px;
                margin-right: 10px;
            }
            
            .process-icon i {
                font-size: 1.15rem;
            }
            
            .process-title {
                font-size: 1rem;
            }
            
            .process-description {
                font-size: 0.88rem;
                padding-left: 0;
                margin-top: 8px;
                line-height: 1.6;
            }

            .process-description strong {
                display: block;
                margin-bottom: 6px;
                padding: 3px 8px;
            }
            
            .not-included-section {
                padding: 16px;
                margin-top: 18px;
            }

            .not-included-section h6 {
                font-size: 1rem;
                margin-bottom: 14px;
            }

            .not-included-list li {
                font-size: 0.86rem;
                margin-bottom: 8px;
                padding: 8px 10px;
            }

            .not-included-list li i {
                font-size: 1rem;
                margin-right: 10px;
            }

            .process-badge {
                font-size: 0.68rem;
                padding: 3px 8px;
            }

            .modal-header-custom .modal-title {
                font-size: 1rem;
            }

            .modal-body {
                padding: 15px;
            }
        }

        @media (max-width: 400px) {
            .process-header {
                flex-wrap: wrap;
            }

            .process-badge {
                margin-left: 56px;
                margin-top: -8px;
            }

            .process-description {
                font-size: 0.85rem;
            }

            .not-included-list li {
                font-size: 0.84rem;
            }
        }

        /* --- Sticky Bottom Bar --- */
        .sticky-cart-bar {
            position: fixed;
            bottom: -120px;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, var(--gu-white) 0%, #fafbfc 100%);
            box-shadow: 0 -8px 25px rgba(47, 60, 126, 0.15);
            padding: 15px 20px;
            z-index: 1050;
            transition: bottom 0.4s ease-in-out;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 4px solid var(--gu-yellow);
        }

        .sticky-cart-bar.active {
            bottom: 0;
        }

        .cart-info h6 {
            margin: 0;
            color: var(--gu-indigo);
            font-weight: 800;
            font-size: 1.3rem;
        }
        
        .view-cart-link {
            font-size: 0.85rem;
            color: var(--gu-indigo);
            text-decoration: none;
            cursor: pointer;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .view-cart-link:hover {
            color: var(--gu-yellow);
        }

        .sticky-cart-bar .btn-gold {
            width: auto;
            padding: 5px 5px;
            font-size: 0.9rem;
        }

        @media (max-width: 576px) {
            .sticky-cart-bar {
                padding: 12px 15px;
            }

            .cart-info h6 {
                font-size: 1.1rem;
            }

            .view-cart-link {
                font-size: 0.8rem;
            }

            .sticky-cart-bar .btn-gold {
                padding:  5px 5px;                font-size: 0.85rem;
            }
        }

        /* --- Cart Summary Modal (Cart Items) --- */
        .cart-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 2px solid rgba(255, 199, 44, 0.2);
            transition: all 0.3s ease;
        }

        .cart-item-row:hover {
            background: rgba(255, 199, 44, 0.05);
            padding-left: 10px;
            padding-right: 10px;
            border-radius: 8px;
        }

        .cart-item-row:last-child {
            border-bottom: none;
        }

        #cartModal .modal-header {
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #3f4d99 100%);
            color: white;
            border-bottom: 3px solid var(--gu-yellow);
        }

        #cartModal .modal-title {
            color: white;
        }

        #cartModal .btn-close {
            filter: brightness(0) invert(1);
        }

        @media (max-width: 576px) {
            .cart-item-row {
                padding: 10px 0;
                font-size: 0.9rem;
            }
        }

        /* custom indigo text utility */
        .text-indigo { color: var(--gu-indigo) !important; }

        /* --- Section Styling --- */
        .services-section-title {
            text-align: center;
            color: var(--gu-indigo);
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .services-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--gu-yellow) 0%, #ffdc6e 100%);
            border-radius: 2px;
        }

        @media (max-width: 576px) {
            .services-section-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
        }

        /* --- AC Service Banner Section --- */
        .ac-service-banner {
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #3f4d99 100%);
            padding: 40px 20px;
            border-radius: 0;
            margin-bottom: 40px;
            /* margin-left: -15px;
            margin-right: -15px; */
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(47, 60, 126, 0.25);
        }

        .ac-service-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: var(--gu-yellow);
            opacity: 0.1;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .ac-service-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 200px;
            height: 200px;
            background: var(--gu-yellow);
            opacity: 0.08;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .banner-title {
            color: var(--gu-white);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .banner-subtitle {
            color: var(--gu-yellow);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.3px;
        }

        .banner-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .banner-icons {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .banner-icon-item {
            text-align: center;
            color: var(--gu-white);
        }

        .banner-icon-circle {
            width: 65px;
            height: 65px;
            background: rgba(255, 199, 44, 0.2);
            border: 2px solid var(--gu-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            transition: all 0.3s ease;
        }

        .banner-icon-item:hover .banner-icon-circle {
            background: var(--gu-yellow);
            transform: scale(1.1) rotate(5deg);
        }

        .banner-icon-circle i {
            font-size: 1.7rem;
            color: var(--gu-yellow);
            transition: color 0.3s ease;
        }

        .banner-icon-item:hover .banner-icon-circle i {
            color: var(--gu-indigo);
        }

        .banner-icon-label {
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 6px;
        }

        .banner-highlight {
            background: var(--gu-yellow);
            color: var(--gu-indigo);
            padding: 2px 10px;
            border-radius: 6px;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .ac-service-banner {
                padding: 35px 20px;
                margin-bottom: 30px;
            }

            .banner-title {
                font-size: 1.8rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .banner-description {
                font-size: 0.9rem;
            }

            .banner-icons {
                gap: 25px;
            }

            .banner-icon-circle {
                width: 60px;
                height: 60px;
            }

            .banner-icon-circle i {
                font-size: 1.5rem;
            }

             .ac-service-banner::before {
            top: -90%;
        }

             .ac-service-banner::after {
            bottom: -50%;       
        }

        }

        @media (max-width: 576px) {
            .ac-service-banner {
                padding: 25px 10px;
                margin-bottom: 20px;
                margin-left: 0;
                margin-right: 0;
            }

            .banner-title {
                font-size: 1.4rem;
                margin-bottom: 6px;
            }

            .banner-subtitle {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .banner-description {
                font-size: 0.82rem;
                margin-bottom: 15px;
                padding: 0 5px;
                line-height: 1.4;
            }

            .banner-icons {
                gap: 15px;
                margin-top: 15px;
            }

            .banner-icon-circle {
                width: 52px;
                height: 52px;
            }

            .banner-icon-circle i {
                font-size: 1.25rem;
            }

            .banner-icon-label {
                font-size: 0.78rem;
            }
        }

        @media (max-width: 400px) {
            .brands-section {
                padding: 10px 8px;
            }

            .brands-title {
                font-size: 0.8rem;
            }

            .brands-note {
                font-size: 0.68rem;
                padding: 6px 8px;
            }

            .ac-type-selector {
                padding: 8px 12px;
            }

            .ac-type-title {
                font-size: 0.8rem;
                margin-bottom: 8px;
            }

            .ac-type-options {
                gap: 6px;
            }

            .ac-type-option {
                padding: 8px 6px;
            }

            .ac-type-header {
                gap: 6px;
            }

            .ac-type-info {
                gap: 4px;
            }

            .ac-type-option .type-icon {
                font-size: 1.1rem;
            }

            .ac-type-option .type-name {
                font-size: 0.68rem;
            }

            .ac-type-option .type-price {
                font-size: 0.6rem;
            }

            .ac-type-qty-controls {
                gap: 4px;
                padding: 3px 4px;
            }

            .ac-type-qty-btn {
                width: 24px;
                height: 24px;
                font-size: 0.7rem;
            }

            .ac-type-qty-value {
                min-width: 30px;
                font-size: 0.8rem;
            }

            .ac-service-banner {
                padding: 20px 8px;
                margin-bottom: 15px;
            }

            .banner-title {
                font-size: 1.25rem;
            }

            .banner-subtitle {
                font-size: 0.85rem;
            }

            .banner-description {
                font-size: 0.78rem;
                line-height: 1.3;
            }

            .banner-icons {
                gap: 12px;
                margin-top: 12px;
            }

            .banner-icon-circle {
                width: 48px;
                height: 48px;
            }

            .banner-icon-circle i {
                font-size: 1.1rem;
            }

            .banner-icon-label {
                font-size: 0.72rem;
            }
        }

        .modal-footer {
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
            padding: 15px 25px;
        }

        .modal-footer .btn-secondary {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
            border: none;
            font-weight: 600;
            padding: 8px 20px;
            transition: all 0.3s ease;
        }

        .modal-footer .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        /* ============================================
           BOOKING MODAL STYLES
           ============================================ */

        .booking-modal-content {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(47, 60, 126, 0.15);
            overflow: hidden;
        }

        .booking-modal-header {
            background: linear-gradient(135deg, var(--gu-indigo) 0%, #1a2456 100%);
            color: var(--gu-white);
            padding: 20px 25px;
            border: none;
        }

        .booking-modal-header .modal-title {
            font-weight: 700;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }

        .booking-modal-header .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .booking-modal-header .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }

        .booking-modal-body {
            padding: 25px;
            background: var(--gu-light-bg);
        }

        /* Booking Sections */
        .booking-section {
            background: var(--gu-white);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(47, 60, 126, 0.06);
            border: 1px solid rgba(47, 60, 126, 0.08);
        }

        .booking-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gu-indigo);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gu-yellow);
        }

        .booking-section-title i {
            color: var(--gu-yellow);
            font-size: 1.3rem;
        }

        /* Form Inputs */
        .booking-input {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .booking-input:focus {
            border-color: var(--gu-indigo);
            box-shadow: 0 0 0 0.2rem rgba(47, 60, 126, 0.15);
            outline: none;
        }

        .booking-input::placeholder {
            color: #aaa;
        }

        .form-label {
            color: var(--gu-grey);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-label i {
            color: var(--gu-indigo);
            opacity: 0.7;
        }

        .input-group-text {
            background: var(--gu-indigo);
            color: var(--gu-white);
            border: 2px solid var(--gu-indigo);
            font-weight: 600;
            border-radius: 10px 0 0 10px;
        }

        .input-group .booking-input {
            border-left: none;
            border-radius: 0 10px 10px 0;
        }

        .input-group .booking-input:focus {
            border-left: 2px solid var(--gu-indigo);
        }

        /* Location Input with Button */
        .location-input-wrapper {
            position: relative;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .location-input-wrapper .booking-input {
            flex: 1;
        }

        .btn-detect-location {
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffb700 100%);
            border: none;
            border-radius: 10px;
            padding: 12px 18px;
            color: var(--gu-grey);
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 199, 44, 0.3);
            min-width: 50px;
        }

        .btn-detect-location:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
        }

        .btn-detect-location:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-detect-location i {
            font-size: 1.1rem;
        }

        /* Booking Summary */
        .booking-summary {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 2px solid var(--gu-indigo);
        }

        .booking-summary-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gu-indigo);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 15px;
        }

        .booking-summary-title i {
            color: var(--gu-yellow);
            font-size: 1.3rem;
        }

        .booking-summary-content {
            margin-bottom: 15px;
        }

        .booking-summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(47, 60, 126, 0.1);
        }

        .booking-summary-item:last-child {
            border-bottom: none;
        }

        .booking-item-name {
            color: var(--gu-grey);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .booking-item-price {
            color: var(--gu-indigo);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .booking-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 2px solid var(--gu-indigo);
            margin-top: 10px;
        }

        .booking-total span:first-child {
            color: var(--gu-grey);
            font-weight: 700;
            font-size: 1.15rem;
        }

        .booking-total-amount {
            color: var(--gu-indigo);
            font-weight: 800;
            font-size: 1.5rem;
        }

        /* Booking Notes */
        .booking-notes {
            background: #fff8e1;
            border-left: 4px solid var(--gu-yellow);
            padding: 15px;
            border-radius: 8px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .booking-notes i {
            color: var(--gu-yellow);
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .booking-notes div {
            color: var(--gu-grey);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .booking-notes strong {
            color: var(--gu-indigo);
        }

        /* Payment Notice - Highlighted */
        .payment-notice {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border: 2px solid #4caf50;
            border-radius: 12px;
            padding: 18px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
            position: relative;
            overflow: hidden;
        }

        .payment-notice::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #4caf50 0%, #66bb6a 100%);
        }

        .payment-notice i {
            color: #4caf50;
            font-size: 1.8rem;
            flex-shrink: 0;
            margin-top: 2px;
            animation: paymentPulse 2s ease-in-out infinite;
        }

        @keyframes paymentPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .payment-notice div {
            flex: 1;
        }

        .payment-notice strong {
            color: #2e7d32;
            font-size: 1.15rem;
            font-weight: 700;
            display: block;
            margin-bottom: 6px;
        }

        .payment-notice p {
            color: #1b5e20;
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 500;
        }

        @media (max-width: 576px) {
            .payment-notice {
                padding: 15px;
                gap: 12px;
            }

            .payment-notice i {
                font-size: 1.5rem;
            }

            .payment-notice strong {
                font-size: 1rem;
            }

            .payment-notice p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 420px) {
            .payment-notice {
                padding: 12px;
                gap: 10px;
                border-width: 1.5px;
            }

            .payment-notice i {
                font-size: 1.3rem;
            }

            .payment-notice strong {
                font-size: 0.95rem;
            }

            .payment-notice p {
                font-size: 0.8rem;
            }
        }

        /* Modal Footer */
        .booking-modal-footer {
            background: var(--gu-white);
            border-top: 2px solid rgba(47, 60, 126, 0.1);
            padding: 20px 25px;
            display: flex;
            gap: 15px;
        }

        .btn-confirm-booking {
            background: linear-gradient(135deg, var(--gu-yellow) 0%, #ffb700 100%);
            color: var(--gu-grey);
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 199, 44, 0.3);
            flex: 1;
        }

        .btn-confirm-booking:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 199, 44, 0.4);
            background: linear-gradient(135deg, #ffb700 0%, var(--gu-yellow) 100%);
        }

        .btn-confirm-booking:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(255, 199, 44, 0.3);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .booking-modal-content {
                border-radius: 16px;
            }

            .booking-modal-header {
                padding: 18px 20px;
            }

            .booking-modal-header .modal-title {
                font-size: 1.2rem;
            }

            .booking-modal-body {
                padding: 20px;
            }

            .booking-section {
                padding: 18px;
                margin-bottom: 18px;
            }

            .booking-section-title {
                font-size: 1.05rem;
                margin-bottom: 15px;
            }

            .booking-input {
                padding: 11px 14px;
                font-size: 0.95rem;
            }

            .btn-detect-location {
                padding: 11px 16px;
            }

            .booking-summary {
                padding: 18px;
            }

            .booking-summary-title {
                font-size: 1.1rem;
            }

            .booking-item-name {
                font-size: 0.9rem;
            }

            .booking-item-price {
                font-size: 1.05rem;
            }

            .booking-total-amount {
                font-size: 1.35rem;
            }

            .booking-notes {
                padding: 14px;
                font-size: 0.85rem;
            }

            .booking-modal-footer {
                padding: 18px 20px;
                flex-direction: column;
                gap: 10px;
            }

            .btn-confirm-booking {
                width: 100%;
                padding: 5px 5px;
            }

            .booking-modal-footer .btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .booking-modal-header .modal-title {
                font-size: 1.1rem;
            }

            .booking-section-title {
                font-size: 1rem;
            }

            .booking-input {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

            .booking-summary-title {
                font-size: 1.05rem;
            }

            .booking-item-name {
                font-size: 0.85rem;
            }

            .booking-item-price {
                font-size: 1rem;
            }

            .booking-total span:first-child {
                font-size: 1.05rem;
            }

            .booking-total-amount {
                font-size: 1.25rem;
            }

            .location-input-wrapper {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-detect-location {
                width: 100%;
                padding: 12px;
            }
        }

        /* Form Text Styling */
        .form-text {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
            font-size: 0.85rem;
        }

        .form-text.text-primary {
            color: var(--gu-indigo) !important;
        }

        .form-text.text-success {
            color: #28a745 !important;
        }

        .form-text.text-danger {
            color: #dc3545 !important;
        }

        .form-text.text-warning {
            color: #ffc107 !important;
        }

        .form-text i {
            font-size: 0.9rem;
        }