html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* Hard-disable horizontal swiping (navigation) */
    overscroll-behavior: none;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

:root {
    /* Color Palette */
    --primary-blue: #2196F3;
    --dark-blue: #1565C0;
    --teal: #0097A7;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --danger: #d32f2f;

    /* Spacing & Layout */
    --screen-padding: 40px;
    --header-height: 100px;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling and swiping to navigate back */
    overscroll-behavior: none;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;

    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
    font-size: 22px;
    /* Hide Scrollbar for Kiosk purity */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

@media (min-width: 1400px) {
    body {
        zoom: 1.2;
        /* Scale up for larger screens */
    }
}

/* Screen Layout */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: var(--screen-padding);
    overflow: hidden;
}

.screen.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Header */
.screen-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

#ads-page-1 .screen-header,
#ads-page-2 .screen-header {
    height: auto;
    justify-content: center;
    /* Center header for Ad Pages */
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

#ads-page-1 .logo-container,
#ads-page-2 .logo-container {
    flex-direction: column;
    /* Vertical logo for Ad Pages */
    gap: 10px;
    text-align: center;
}

.mpm-logo {
    height: 80px;
    width: auto;
}

#ads-page-1 .mpm-logo,
#ads-page-2 .mpm-logo {
    height: 120px;
    /* Larger logo for Ad Pages */
}

.agency-name {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

#ads-page-1 .agency-name,
#ads-page-2 .agency-name {
    font-size: 2rem;
}

.agency-subtitle {
    font-weight: 300;
    font-size: 1rem;
    opacity: 0.9;
}

/* Content Area */
.screen-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

/* Left Content (Services List) */
.content-left {
    flex: 1;
    padding-right: 40px;
}

#ads-page-1 .content-left {
    flex: 1.1;
    padding-left: 80px;
}

#ads-page-1 .main-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-size: 4.5rem;
    /* Increased from 3.5rem */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#ads-page-1 .subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: left;
    width: 100%;
    padding-left: 80px;
}

.subtitle {
    font-size: 2.2rem;
    /* Increased from 1.8rem */
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0.95;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* More spacing */
}

#ads-page-1 .services-list li {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-list li {
    font-size: 1.8rem;
    /* Increased from 1.5rem */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 25px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#ads-page-1 .checkmark {
    color: #4CAF50;
    font-size: 2.8rem;
    font-weight: 900;
}

.checkmark {
    color: #4CAF50;
    /* Vibrant Material Green */
    font-size: 2rem;
    font-weight: 900;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    display: inline-block;
}

/* Right Content (Illustration) */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kiosk-image {
    max-height: 95vh;
    width: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
    transform: scale(1.45);
    transform-origin: center center;
}

/* Footer & Button */
.screen-footer {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 15;
}

.start-button {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    color: #555555;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: none;
    z-index: 999;
    position: relative;
    border: none;
    display: inline-block;
    cursor: pointer;
}

.start-button:active {
    transform: scale(0.98);
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.1), inset -5px -5px 15px rgba(255, 255, 255, 0.7);
}

/* Vertical Instruction Steps */
.instructions-container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ads-page-2 .main-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

#ads-page-2 .subtitle {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    padding: 0;
}

.step-row {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    justify-content: center;
    margin-bottom: 10px;
}

/* Number Circle on the Left */
.step-number-circle {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    z-index: 5;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid #ffffff;
}

.step-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 35px;
    display: flex;
    align-items: center;
    padding: 25px 60px 25px 100px;
    justify-content: flex-start;
    gap: 60px;
    width: 750px;
    /* Fixed width for perfect uniformity */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
}

.step-label {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    color: white;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

/* Images */
.step-img-left,
.step-img-right {
    height: 140px;
    /* Larger icons as per image */
    width: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

/* Layout Adjustments for All Content */
.step-row .step-card {
    justify-content: flex-start;
    gap: 50px;
    padding: 25px 60px 25px 100px;
    /* Consistent padding for all cards */
}

/* Maintenance Page Styles */
.maintenance-content {
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.maintenance-message {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.maintenance-icon {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: rotate 3s infinite linear;
    display: inline-block;
}

.maintenance-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.maintenance-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFD54F;
    /* Warning Yellow */
}

.maintenance-info {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Utilities */
/* =========================================
   SERVICES PAGE STYLES
   ========================================= */

/* Override global screen padding for this page to allow full bleeding header/banner */
#services-page {
    padding: 0;
}

/* Header Area */
.services-header {
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Removed max-width 800px to fill screen edge-to-edge */
    background: linear-gradient(135deg, #1e88e5 0%, #1565C0 100%);
    border-radius: 0 0 20px 20px;
    /* Rounded bottom again for isolated look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.mpm-logo-small {
    height: 55px;
    width: auto;
}

.white-text p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
    font-size: 1.1rem;
}

/* Content Area */
.services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
    width: 100%;
    /* Removed max-width 800px to fill screen */
    padding-bottom: 90px;
}

/* Building Banner */
.building-banner {
    width: 100%;
    height: 220px;
    /* Balanced height */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    /* Flush edges */
    overflow: hidden;
    margin-top: 0;
    /* Flush with header */
    position: relative;
    z-index: 10;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    text-shadow: none;
    background: white;
    padding: 15px 60px;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

/* Centered Row for last 2 items (using grid-column) */
.grid-row-centered {
    grid-column: 1 / -1;
    /* Span full width */
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

/* Ensure cards in centered row match the exact width of grid columns */
.grid-row-centered .service-card {
    width: calc((100% - 50px) / 3);
    /* (TotalWidth - 2*Gap) / 3 columns */
    flex: 0 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 35px;
    padding: 35px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card:active {
    transform: scale(0.95);
}

/* Card Colors */
.service-card.orange {
    background: linear-gradient(135deg, #FFAB91 0%, #FF8A65 100%);
}

.service-card.blue {
    background: linear-gradient(135deg, #90CAF9 0%, #64B5F6 100%);
}

.service-card.teal {
    background: linear-gradient(135deg, #80DEEA 0%, #4DD0E1 100%);
}

/* Icons */
.icon-circle {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    border: none !important;
    box-shadow: none !important;
}

.icon-circle img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.service-name {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 90%;
    margin-top: auto;
}

/* Footer Buttons */
.services-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Removed max-width 800px */
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background: white;
    border-radius: 30px 30px 0 0;
    z-index: 100;
    transform: none;
    /* Removed centering transform */
}

.btn-back {
    background: #9E9E9E;
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.btn-back:active {
    background: #757575;
}

.btn-help {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 600;
}

.help-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* =========================================
   SEARCH / INPUT PAGE STYLES
   ========================================= */

.search-screen-container {
    width: 100%;
    height: 100vh;
    background: #f0f4f8;
    /* Light grey background from mockup */
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

/* Header */
.search-header {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: white;
    /* White header strip */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.search-nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-home-circle {
    width: 50px;
    height: 50px;
    background: #9E9E9E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.btn-home-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    display: block;
}

.btn-back-pill {
    background: #9E9E9E;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-help-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 5px;
    cursor: pointer;
}

.help-icon-small {
    width: 45px;
    height: 45px;
}

/* Main Content Wrapper */
.search-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    padding-bottom: 200px;
    /* Shifts content upwards */
}

/* Central Card */
.search-card {
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-card-top {
    height: 180px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 45px;
    position: relative;
    border-bottom: 5px solid rgba(0, 0, 0, 0.05);
}

.service-title-large {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 70%;
    line-height: 1.1;
}

.service-icon-large-container {
    background: rgba(255, 255, 255, 0.15);
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.service-icon-large {
    width: 65px;
    /* Slightly larger for the search card */
    height: 65px;
    object-fit: contain;
}

/* Bottom White Section */
.search-card-bottom {
    padding: 40px;
    background: white;
}

.input-label {
    display: block;
    font-size: 1.5rem;
    /* Increased from 1.1rem */
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.search-input {
    width: 100%;
    padding: 20px 25px;
    /* Increased padding */
    font-size: 1.6rem;
    /* Increased from 1.1rem */
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    /* Increased radius */
    outline: none;
    color: #333;
    background: #f9f9f9;
    transition: border 0.2s;
    text-transform: uppercase;
}

.search-input:focus {
    border-color: #2196F3;
    background: white;
}

/* Buttons */
.search-actions {
    display: flex;
    gap: 30px;
    width: 90%;
    max-width: 600px;
    justify-content: space-between;
    margin-top: 25px;
}

.btn-scan-qr,
.btn-continue {
    flex: 1;
    padding: 24px 0;
    /* Increased padding */
    border-radius: 50px;
    font-size: 1.5rem;
    /* Increased from 1.1rem */
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn-scan-qr {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-continue {
    background: #2196F3;
    /* Blue */
    color: white;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.btn-continue:active,
.btn-scan-qr:active {
    transform: scale(0.98);
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Radio Button Styles */
.input-label-bold {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    /* Bold */
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    /* Space before the next input */
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 24px;
    height: 24px;
    accent-color: #333;
    /* Dark Radio Button */
}

.radio-text {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
}

/* ==========================================================================
   LANGUAGE SELECTION PAGE (Segmented Toggle Rebrand)
   ========================================================================== */
.kiosk-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.kiosk-language-toggle {
    display: inline-flex;
    background: #E3F2FD;
    /* Soft blue background */
    border: 4px solid #4FC3F7;
    /* Distinct blue border */
    border-radius: 100px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.toggle-option {
    padding: 30px 80px;
    border-radius: 80px;
    font-size: 3rem;
    font-weight: 800;
    text-decoration: none;
    color: #4FC3F7;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.toggle-option.active {
    background: #03A9F4;
    /* Active blue */
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(3, 169, 244, 0.4);
}

.btn-proceed-kiosk {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    padding: 25px 120px;
    border-radius: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 15px 35px rgba(245, 124, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-proceed-kiosk:active {
    transform: scale(0.95);
    box-shadow: 0 8px 20px rgba(245, 124, 0, 0.2);
}

.loading-content .spinner {
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: #FF9800;
}

.btn-cancel-gray {
    background: #546e7a;
    /* Professional Slate Grey */
    color: white !important;
    padding: 20px 80px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cancel-gray:active {
    transform: scale(0.95);
    background: #455a64;
}

/* =========================================
   KIOSK IDLE / ADS PAGE STYLES
   ========================================= */

/* Main Idle Screen with Gradient */
#ads-page-1,
#ads-page-2 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%) !important;
    color: var(--white) !important;
}

/* Ensure Logo and Text are Visible */
.agency-name {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.agency-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Left Content Area */
.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Service List Items */
.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkmark {
    color: #4CAF50;
    /* Distinct Green Check */
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Right Content Area */
.content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kiosk-image {
    max-height: 70vh;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    /* Slight float animation */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Footer Start Button */
.screen-footer {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 20;
}


.start-button {
    background: #ffffff;
    color: var(--primary-blue) !important;
    border: none;
    padding: 20px 80px;
    border-radius: 60px;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.start-button:active {
    transform: scale(0.95);
    background: #f0f0f0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Screen Content Layout - Center everything */
.screen-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding: 20px 0;
}

/* =========================================
   CONFIRMATION PAGE (Step 3)
   Fixed bottom action bar; cart scrolls above
   ========================================= */

.confirmation-screen {
    color: #333;
}

.confirmation-screen.search-screen-container {
    height: 100vh;
    max-height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    overflow: hidden;
}

.confirmation-screen .search-header,
.confirmation-screen .progress-container {
    flex-shrink: 0;
}

.confirmation-body {
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.confirmation-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    width: 100%;
    padding: 20px 24px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.confirmation-title {
    color: #333;
    margin: 0 auto 20px;
    text-align: center;
    width: 90%;
    max-width: 750px;
}

.confirmation-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    flex-shrink: 0;
    width: 100%;
    padding: 16px 24px max(24px, env(safe-area-inset-bottom, 0px));
    background: #f0f4f8;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirmation-actions .search-actions {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 750px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 24px;
}

.confirmation-actions .cart-actions {
    margin-top: 0;
}

.confirmation-actions .btn-add-more {
    flex: 0 0 auto;
    background: white;
    color: #FF9800;
    border: 3px solid #FF9800;
    padding: 24px 52px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.65rem;
}

.confirmation-actions .btn-continue {
    flex: 0 0 auto;
    background: #FF9800;
    color: white;
    padding: 24px 68px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.65rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.cart-full-message {
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    align-self: center;
}

.cart-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cart-item {
    width: 90%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FF9800;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.service-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.btn-remove {
    color: #d32f2f;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 8px;
    padding: 15px 20px;
}

.info-label {
    color: #888;
    font-size: 1.3rem;
}

.info-value {
    color: #333;
    font-weight: 500;
    font-size: 1.4rem;
}

.info-value.highlight {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.8rem;
}

.total-card {
    width: 90%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 12px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF9800;
}

.cart-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-add-more {
    background: white;
    color: #FF9800;
    border: 3px solid #FF9800;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-add-more:hover {
    background: #fff8f0;
}
