/* ============================================================ */
/* MAIN NAVIGATION MENU STYLING                                 */
/* Ruskin Square Car Park - Top Navigation Bar                  */
/* ============================================================ */

/* Main Navigation Bar */
#mainNav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Navbar Brand - Logo */
.navbar-brand {
    padding: 0;
    margin-right: 30px;
}

#sitelogo {
    width: auto;
    object-fit: contain;
}

/* Navigation List */
#inner-header-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top:0px !important;
}

ul#inner-header-menu li {
    border-right: none;
}

ul#inner-header-menu li:last-child:hover {
    text-decoration: none;
}

/* Navigation Items - List items in main menu */
ul#inner-header-menu li.nav-item {
    position: relative;
}

/* Navigation Links - Uppercase, bold, with hover underline */
ul#inner-header-menu li.nav-item a.nav-link {
    color: #2b2b2b !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 18px !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

/* Bottom border animation on hover - Expands from center */
ul#inner-header-menu li.nav-item a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #2b2b2b;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Hover state - Show bottom border */
ul#inner-header-menu li.nav-item a.nav-link:hover {
    color: #2b2b2b !important;
}

ul#inner-header-menu li.nav-item a.nav-link:hover::after {
    transform: scaleX(1);
}

/* Active/Current link - Always show bottom border */
ul#inner-header-menu li.nav-item a.nav-link.active {
    color: #2b2b2b !important;
}

ul#inner-header-menu li.nav-item a.nav-link.active::after {
    transform: scaleX(1);
}

/* Authentication Links Section - Right side menu items */
ul.auth-links {
    gap: 12px;
    align-items: center;
}

/* Auth section heading */
ul.auth-links h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Auth button styling */
ul.auth-links a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Login Button - Gray */
ul.auth-links a#login-button {
    background-color: #6c757d !important;
    color: #ffffff !important;
    border: 2px solid #6c757d;
}

ul.auth-links a#login-button:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Register Button - Yellow (Brand color) */
ul.auth-links a#register-button {
    background-color: #ffed00 !important;
    color: #2b2b2b !important;
    border: 2px solid #ffed00;
}

ul.auth-links a#register-button:hover {
    background-color: #ffd700 !important;
    border-color: #ffd700;
    box-shadow: 0 4px 8px rgba(255, 237, 0, 0.3);
}

/* Navbar Toggler - Mobile Menu Button */
.navbar-toggler {
    border: none;
    padding: 8px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232b2b2b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - TABLET                               */
/* ============================================================ */

@media (max-width: 1200px) {
    ul#inner-header-menu {
        gap: 0;
    }

    ul#inner-header-menu li.nav-item a.nav-link {
        padding: 12px 14px !important;
        font-size: 13px;
    }

    ul.auth-links h5 {
        font-size: 13px;
    }

    ul.auth-links a {
        padding: 9px 14px !important;
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    #mainNav {
        padding: 12px 0;
    }

    #sitelogo {
        height: 90px;
    }

    .navbar-brand {
        margin-right: 20px;
    }

    ul#inner-header-menu li.nav-item a.nav-link {
        padding: 10px 12px !important;
        font-size: 12px;
    }

    ul.auth-links h5 {
        font-size: 12px;
        gap: 8px;
    }

    ul.auth-links a {
        padding: 8px 12px !important;
        font-size: 10px;
    }
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - MOBILE                               */
/* ============================================================ */

@media (max-width: 768px) {
    #mainNav {
        padding: 10px 0;
    }

    #sitelogo {
        height: 50px;
    }

    /* Collapse menu styling */
    .navbar-collapse {
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }

    /* Mobile menu items stack vertically */
    ul#inner-header-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
    }

    ul#inner-header-menu li.nav-item {
        width: 100%;
    }

    ul#inner-header-menu li.nav-item a.nav-link {
        padding: 12px 16px !important;
        font-size: 13px;
        border-bottom: 1px solid #f9f9f9;
    }

    ul#inner-header-menu li.nav-item a.nav-link::after {
        height: 3px;
        bottom: -1px;
    }

    /* Mobile authentication section */
    ul.auth-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }

    ul.auth-links h5 {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
        gap: 8px;
    }

    ul.auth-links a {
        width: 100%;
        text-align: center;
        padding: 10px 16px !important;
        font-size: 11px;
    }
}


/* Home Banner Container - Background already set */
.home-banner {
    background-repeat: no-repeat;
    background-image: url('../images/ruskinsquarecarpark-banner.jpg');
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 500px;
    opacity: 1;
    visibility: inherit;
    display: flex;
    align-items: center;
    position: relative;
}

.home-banner .container {
    width: 100%;
}

/* Welcome Title - Left side large text */
.welcome-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background-color: rgba(0, 0, 0, 0.71);
    padding:30px;
}

/* Tagline Box - Yellow background with text */
.tagline-box {
    background-color: #ffed00;
    color: rgb(54, 54, 54);
    padding: 15px 20px;
    display: inline-block;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 24/7 Open Badge - Circular on right */
.open-badge {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.open-badge-text {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.open-badge-time {
    color: #ffed00;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 42px;
    }

    .tagline-box {
        font-size: 14px;
        padding: 12px 15px;
    }

    .open-badge {
        width: 140px;
        height: 140px;
        right: 20px;
    }

    .open-badge-text {
        font-size: 18px;
    }

    .open-badge-time {
        font-size: 32px;
    }
}
/**
home below banner
 */
/* Main Inner Content Section */
#main-inner-content {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Welcome Heading */
.welcome {
    font-size: 42px;
    font-weight: 900;
    color: #2b2b2b;
    text-transform: capitalize;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Yellow underline accent under welcome heading */
.welcome::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #ffed00;
    margin: 15px auto 0;
}

/* Welcome Description Paragraph */
.welcome-paragraph {
    font-size: 16px;
    color: #444444;
    line-height: 2;
    margin-top: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.05) 0%, rgba(255, 237, 0, 0) 100%);
    padding: 30px 35px;
    border-left: 4px solid #ffed00;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Highlight important words within the description */
.welcome-paragraph strong {
    color: #2b2b2b;
    font-weight: 700;
}

/* Icon before paragraph */
.welcome-paragraph::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;  /* Changed from 400 to 900 */
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #ffed00;
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;  /* Added for proper rendering */
}

/* Step counter or emphasis styling */
.silverstone-highlight {
    color: #ffed00;
    font-weight: 700;
}

.silverstone-step {
    display: inline-block;
    background-color: #ffed00;
    color: #2b2b2b;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    margin: 0 6px;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #main-inner-content {
        padding: 40px 0;
    }

    .welcome {
        font-size: 28px;
    }

    .welcome::after {
        width: 80px;
    }

    .welcome-paragraph {
        font-size: 15px;
        line-height: 1.9;
        margin-top: 25px;
        margin-bottom: 35px;
        padding: 25px 25px;
    }

    .welcome-paragraph::before {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #main-inner-content {
        padding: 30px 0;
    }

    .welcome {
        font-size: 22px;
    }

    .welcome-paragraph {
        font-size: 14px;
        line-height: 1.8;
        padding: 20px 20px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .welcome-paragraph::before {
        font-size: 14px;
        margin-right: 8px;
    }

    .silverstone-step {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
    }
}

/* ============================================================ */
/* COPY AND PASTE THIS SECTION INTO YOUR CSS FILE               */
/* NEW: OPTION BOXES STYLING FOR PAYG & PERMIT BOXES             */
/* ============================================================ */

/* Main Option Box Container - Wrapper for each parking option */
.option-box {
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Hover effect - Box elevates and border turns yellow */
.option-box:hover {
    border-color: #ffed00;
    box-shadow: 0 8px 24px rgba(255, 237, 0, 0.15);
    transform: translateY(-4px);
}

/* Yellow top border accent - Animates in from left on hover */
.option-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffed00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.option-box:hover::before {
    transform: scaleX(1);
}

/* Icon Styling - Circular yellow icon container */
.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffed00 0%, #ffca2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #2b2b2b;
    transition: transform 0.3s ease;
}

/* Icon scales and rotates on box hover */
.option-box:hover .option-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Option Title - Heading for each option box */
.option-title {
    font-size: 24px;
    font-weight: 900;
    color: #2b2b2b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Option Description - Body text for each option */
.option-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-weight: 400;
}

/* Option Button - Call-to-action button with hover effects */
.option-button {
    display: inline-block;
    background-color: #ffed00;
    color: #2b2b2b;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ffed00;
    cursor: pointer;
    align-self: center;
}

/* Button hover state - Colors invert and button shifts right */
.option-button:hover {
    background-color: #2b2b2b;
    color: #ffed00;
    box-shadow: 0 4px 12px rgba(255, 237, 0, 0.3);
    transform: translateX(4px);
}

/* Arrow icon animation - Moves right on hover */
.option-button i {
    transition: transform 0.3s ease;
}

.option-button:hover i {
    transform: translateX(4px);
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - ADD THESE TO YOUR MEDIA QUERIES      */
/* ============================================================ */

/* Add this to your existing @media (max-width: 768px) section: */
@media (max-width: 768px) {
    .option-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .option-title {
        font-size: 20px;
    }

    .option-description {
        font-size: 14px;
    }

    .option-button {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Add this to your existing @media (max-width: 480px) section: */
@media (max-width: 480px) {
    .option-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .option-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .option-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .option-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .option-button {
        padding: 11px 20px;
        font-size: 12px;
    }
}

/* ============================================================ */
/* PAY FOR PARKING INDEX PAGE STYLING                            */
/* Ruskin Square Car Park - PAYG Booking System                  */
/* ============================================================ */

/* Main Wrapper - Contains entire page layout */
.payg-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}


/* ============================================================ */
/* TOPBAR / HEADER SECTION                                       */
/* ============================================================ */

/* Topbar Container - Header with branding and progress steps */
.payg-topbar {
    background-color: #2b2b2b;
    padding: 20px 0;
    border-bottom: 3px solid #ffed00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Topbar Inner - Flexbox layout for brand and steps */
.payg-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Brand Link - Logo and text */
.payg-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.payg-brand:hover {
    color: #ffed00;
}

/* Brand Icon - SVG parking icon */
.payg-brand-icon {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    color: #ffed00;
}

.payg-brand-icon svg {
    width: 100%;
    height: 100%;
}

/* Progress Steps Navigation */
.payg-steps {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

/* Individual Step */
.payg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #999999;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Active Step */
.payg-step.active {
    color: #ffed00;
}

/* Step Dot - Numbered circle indicator */
.payg-step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #666666;
    font-weight: 900;
    font-size: 13px;
    color: #999999;
    transition: all 0.3s ease;
}

.payg-step.active .payg-step-dot {
    background-color: #ffed00;
    border-color: #ffed00;
    color: #2b2b2b;
    box-shadow: 0 0 12px rgba(255, 237, 0, 0.4);
}

/* Step Separator - Line between steps */
.payg-step-sep {
    width: 40px;
    height: 2px;
    background-color: #666666;
    margin: 0 8px;
    transition: background-color 0.3s ease;
}

.payg-step.active ~ .payg-step-sep {
    background-color: #ffed00;
}


/* ============================================================ */
/* MAIN CONTENT SECTION                                          */
/* ============================================================ */

/* Main Content Area - Flex to push footer down */
.payg-main {
    flex: 1;
    padding: 50px 0;
}

/* Page Header - Title and description */
.payg-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.payg-page-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #2b2b2b;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.payg-page-header p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}


/* ============================================================ */
/* CARD STYLING                                                  */
/* ============================================================ */

/* Card Container - White box with shadow */
.payg-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.payg-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ffed00;
}

/* Card Body - Padding inside card */
.payg-card-body {
    padding: 30px;
}

/* Card Label - Title inside card */
.payg-card-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2b2b;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}


/* ============================================================ */
/* INPUT STYLING                                                */
/* ============================================================ */

/* Area Code Input */
.payg-code-input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #2b2b2b;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.payg-code-input:focus {
    outline: none;
    border-color: #ffed00;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 237, 0, 0.2);
}

.payg-code-input::placeholder {
    color: #999999;
}


/* ============================================================ */
/* INPUT HINT TEXT                                               */
/* ============================================================ */

/* Hint Text - Helper text for inputs */
.payg-input-hint {
    font-size: 13px;
    color: #666666;
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.payg-input-hint svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    flex-shrink: 0;
}


/* ============================================================ */
/* CAR PARK PREVIEW / DETAILS                                    */
/* ============================================================ */

/* Car Park Preview - Shows selected car park info */
.payg-carpark-preview {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 20px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.payg-carpark-preview.has-result {
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.05) 0%, rgba(255, 237, 0, 0) 100%);
    border: 2px solid #ffed00;
}

/* Fade In Animation */
.payg-fade-in {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Area Badge - Small label showing area code */
.payg-area-badge {
    display: inline-block;
    background-color: #ffed00;
    color: #2b2b2b;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

/* Car Park Name */
.payg-carpark-name {
    font-size: 18px;
    font-weight: 900;
    color: #2b2b2b;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

/* Car Park Address */
.payg-carpark-address {
    font-size: 13px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}


/* ============================================================ */
/* BUTTON STYLING                                                */
/* ============================================================ */

/* Primary Button */
.payg-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffed00;
    color: #2b2b2b;
    padding: 14px 32px;
    border: 2px solid #ffed00;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.payg-btn-primary:hover {
    background-color: #2b2b2b;
    color: #ffed00;
    box-shadow: 0 4px 12px rgba(255, 237, 0, 0.3);
    transform: translateX(4px);
}

.payg-btn-primary:active {
    transform: translateX(2px);
}

/* Button Icon */
.payg-btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.payg-btn-primary:hover svg {
    transform: translateX(4px);
}

/* Full Width Button */
.payg-btn-primary.w-100 {
    width: 100%;
}

/* Margin Top Utility */
.mt-3 {
    margin-top: 20px;
}

.mt-2 {
    margin-top: 12px;
}

/* Margin Start (left) Utility */
.ms-1 {
    margin-left: 6px;
}


/* ============================================================ */
/* FOOTER SECTION                                                */
/* ============================================================ */

/* Footer - Security message at bottom */
.payg-footer {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444444;
    margin-top: auto;
}

.payg-footer svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    vertical-align: middle;
}

.payg-footer p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - TABLET                               */
/* ============================================================ */

@media (max-width: 768px) {
    .payg-topbar-inner {
        flex-direction: column;
        gap: 20px;
    }

    .payg-steps {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .payg-step {
        font-size: 11px;
        gap: 4px;
    }

    .payg-step-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .payg-step-sep {
        width: 30px;
        margin: 0 4px;
    }

    .payg-page-header h1 {
        font-size: 32px;
    }

    .payg-page-header p {
        font-size: 15px;
    }

    .payg-card-body {
        padding: 25px;
    }

    .payg-code-input {
        padding: 14px;
        font-size: 15px;
    }
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - MOBILE                               */
/* ============================================================ */

@media (max-width: 480px) {
    .payg-topbar {
        padding: 15px 0;
    }

    .payg-brand {
        font-size: 14px;
        gap: 8px;
    }

    .payg-brand-icon {
        width: 28px;
        height: 28px;
    }

    .payg-topbar-inner {
        gap: 15px;
    }

    .payg-steps {
        gap: 8px;
        order: 3;
        width: 100%;
    }

    .payg-step {
        font-size: 10px;
    }

    .payg-step-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .payg-step-sep {
        width: 20px;
        margin: 0 2px;
    }

    .payg-main {
        padding: 30px 0;
    }

    .payg-page-header {
        margin-bottom: 30px;
    }

    .payg-page-header h1 {
        font-size: 24px;
    }

    .payg-page-header p {
        font-size: 14px;
    }

    .payg-card {
        border-radius: 6px;
    }

    .payg-card-body {
        padding: 20px;
    }

    .payg-card-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .payg-code-input {
        padding: 12px;
        font-size: 16px;
    }

    .payg-carpark-preview {
        padding: 15px;
        min-height: auto;
    }

    .payg-carpark-name {
        font-size: 16px;
    }

    .payg-carpark-address {
        font-size: 12px;
    }

    .payg-btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .payg-input-hint {
        font-size: 12px;
    }

    .payg-input-hint svg {
        width: 14px;
        height: 14px;
    }

    .payg-footer {
        padding: 15px 0;
    }

    .payg-footer svg {
        width: 14px;
        height: 14px;
    }
}
/**
    STEP 2 - 5
 */

.payg-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f0f0f0;
    color: #2b2b2b;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* ============================================================ */
/* COPY AND PASTE THIS SECTION INTO YOUR CSS FILE                */
/* NEW: PAY FOR PARKING (PAYG) INDEX PAGE STYLING                */
/* Ruskin Square Car Park - PAYG Booking System                  */
/* ============================================================ */

/* Main Wrapper - Contains entire page layout */
.payg-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* Topbar Container - Header with branding and progress steps */
.payg-topbar {
    background-color: #2b2b2b;
    padding: 20px 0;
    border-bottom: 3px solid #ffed00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Topbar Inner - Flexbox layout for brand and steps */
.payg-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Brand Link - Logo and text */
.payg-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.payg-brand:hover {
    color: #ffed00;
}

/* Brand Icon - SVG parking icon */
.payg-brand-icon {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    color: #ffed00;
}

.payg-brand-icon svg {
    width: 100%;
    height: 100%;
}

/* Progress Steps Navigation */
.payg-steps {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

/* Individual Step */
.payg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #999999;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Active Step - Highlight current step */
.payg-step.active {
    color: #ffed00;
}

/* Step Dot - Numbered circle indicator */
.payg-step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #666666;
    font-weight: 900;
    font-size: 13px;
    color: #999999;
    transition: all 0.3s ease;
}

/* Active step dot - Yellow circle with glow */
.payg-step.active .payg-step-dot {
    background-color: #ffed00;
    border-color: #ffed00;
    color: #2b2b2b;
    box-shadow: 0 0 12px rgba(255, 237, 0, 0.4);
}

/* Step Separator - Line between steps */
.payg-step-sep {
    width: 40px;
    height: 2px;
    background-color: #666666;
    margin: 0 8px;
    transition: background-color 0.3s ease;
}

/* Main Content Area - Flex to push footer down */
.payg-main {
    flex: 1;
    padding: 50px 0;
}

/* Page Header - Title and description */
.payg-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.payg-page-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #2b2b2b;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.payg-page-header p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Card Container - White box with shadow */
.payg-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

/* Card hover effect - Elevate and border changes to yellow */
.payg-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ffed00;
}

/* Card Body - Padding inside card */
.payg-card-body {
    padding: 30px;
}

/* Card Label - Title inside card */
.payg-card-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2b2b;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

/* Area Code Input - Text input field */
.payg-code-input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #2b2b2b;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Input focus state - Border and shadow highlight */
.payg-code-input:focus {
    outline: none;
    border-color: #ffed00;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 237, 0, 0.2);
}

.payg-code-input::placeholder {
    color: #999999;
}

/* Hint Text - Helper text for inputs */
.payg-input-hint {
    font-size: 13px;
    color: #666666;
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

/* Hint icon styling */
.payg-input-hint svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    flex-shrink: 0;
}

/* Car Park Preview - Shows selected car park info */
.payg-carpark-preview {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 20px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Preview with results - Highlight with yellow gradient */
.payg-carpark-preview.has-result {
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.05) 0%, rgba(255, 237, 0, 0) 100%);
    border: 2px solid #ffed00;
}

/* Fade In Animation - Smooth appearance */
.payg-fade-in {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Area Badge - Small label showing area code */
.payg-area-badge {
    display: inline-block;
    background-color: #ffed00;
    color: #2b2b2b;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

/* Car Park Name */
.payg-carpark-name {
    font-size: 18px;
    font-weight: 900;
    color: #2b2b2b;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

/* Car Park Address */
.payg-carpark-address {
    font-size: 13px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Primary Button - Yellow CTA button */
.payg-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffed00;
    color: #2b2b2b;
    padding: 14px 32px;
    border: 2px solid #ffed00;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Button hover - Colors invert and button shifts right */
.payg-btn-primary:hover {
    background-color: #2b2b2b;
    color: #ffed00;
    box-shadow: 0 4px 12px rgba(255, 237, 0, 0.3);
    transform: translateX(4px);
}

.payg-btn-primary:active {
    transform: translateX(2px);
}

/* Button icon animation */
.payg-btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.payg-btn-primary:hover svg {
    transform: translateX(4px);
}

/* Full Width Button */
.payg-btn-primary.w-100 {
    width: 100%;
}

/* Back Link Button - Navigation button to go back */
.payg-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f0f0f0;
    color: #2b2b2b;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Back button hover - Changes to dark with yellow accent */
.payg-back-link:hover {
    background-color: #2b2b2b;
    color: #ffed00;
    border-color: #2b2b2b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(-4px);
}

/* Back arrow icon animation - Moves left on hover */
.payg-back-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.payg-back-link:hover svg {
    transform: translateX(-4px);
}

/* Utility Classes */
.mt-3 {
    margin-top: 20px;
}

.mt-2 {
    margin-top: 12px;
}

.ms-1 {
    margin-left: 6px;
}


/* ============================================================ */
/* DVLA VEHICLE DETAILS CARD - Step 2                            */
/* ============================================================ */

/* DVLA Card Container - Shows vehicle information from DVLA */
.payg-dvla-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

/* DVLA Card hover - Elevate and highlight */
.payg-dvla-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ffed00;
}

/* DVLA Header - Top section with title and badge */
.payg-dvla-header {
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.08) 0%, rgba(255, 237, 0, 0) 100%);
    border-bottom: 2px solid #ffed00;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* DVLA Title - Heading for vehicle details */
.payg-dvla-title {
    font-size: 16px;
    font-weight: 900;
    color: #2b2b2b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* DVLA Source Badge - Shows data comes from DVLA */
.payg-dvla-source {
    display: inline-block;
    background-color: #ffed00;
    color: #2b2b2b;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* DVLA Grid - Layout for vehicle details */
.payg-dvla-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #f0f0f0;
    padding: 1px;
}

/* DVLA Cell - Individual data item */
.payg-dvla-cell {
    background-color: #ffffff;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* DVLA Cell Label - Label for each field */
.payg-dvla-cell-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999999;
    letter-spacing: 1px;
}

/* DVLA Cell Value - Value display */
.payg-dvla-cell-value {
    font-size: 18px;
    font-weight: 900;
    color: #2b2b2b;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Colour Swatch - Visual indicator of vehicle color */
.payg-colour-swatch {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    flex-shrink: 0;
}

/* Footer - Security message at bottom */
.payg-footer {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444444;
    margin-top: auto;
}

.payg-footer svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    vertical-align: middle;
}

.payg-footer p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - TABLET (768px and below)              */
/* ============================================================ */

@media (max-width: 768px) {
    .payg-topbar-inner {
        flex-direction: column;
        gap: 20px;
    }

    .payg-steps {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .payg-step {
        font-size: 11px;
        gap: 4px;
    }

    .payg-step-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .payg-step-sep {
        width: 30px;
        margin: 0 4px;
    }

    .payg-page-header h1 {
        font-size: 32px;
    }

    .payg-page-header p {
        font-size: 15px;
    }

    .payg-card-body {
        padding: 25px;
    }

    .payg-code-input {
        padding: 14px;
        font-size: 15px;
    }

    .payg-back-link {
        padding: 11px 20px;
        font-size: 12px;
    }

    .payg-dvla-card {
        margin-bottom: 20px;
    }

    .payg-dvla-header {
        padding: 18px;
        gap: 15px;
    }

    .payg-dvla-title {
        font-size: 14px;
    }

    .payg-dvla-source {
        font-size: 10px;
        padding: 5px 10px;
    }

    .payg-dvla-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .payg-dvla-cell {
        padding: 20px 15px;
    }

    .payg-dvla-cell-label {
        font-size: 10px;
    }

    .payg-dvla-cell-value {
        font-size: 16px;
    }

    .payg-colour-swatch {
        width: 20px;
        height: 20px;
    }
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - MOBILE (480px and below)              */
/* ============================================================ */

@media (max-width: 480px) {
    .payg-topbar {
        padding: 15px 0;
    }

    .payg-brand {
        font-size: 14px;
        gap: 8px;
    }

    .payg-brand-icon {
        width: 28px;
        height: 28px;
    }

    .payg-topbar-inner {
        gap: 15px;
    }

    .payg-steps {
        gap: 8px;
        order: 3;
        width: 100%;
    }

    .payg-step {
        font-size: 10px;
    }

    .payg-step-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .payg-step-sep {
        width: 20px;
        margin: 0 2px;
    }

    .payg-main {
        padding: 30px 0;
    }

    .payg-page-header {
        margin-bottom: 30px;
    }

    .payg-page-header h1 {
        font-size: 24px;
    }

    .payg-page-header p {
        font-size: 14px;
    }

    .payg-card {
        border-radius: 6px;
    }

    .payg-card-body {
        padding: 20px;
    }

    .payg-card-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .payg-code-input {
        padding: 12px;
        font-size: 16px;
    }

    .payg-carpark-preview {
        padding: 15px;
        min-height: auto;
    }

    .payg-carpark-name {
        font-size: 16px;
    }

    .payg-carpark-address {
        font-size: 12px;
    }

    .payg-btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .payg-input-hint {
        font-size: 12px;
    }

    .payg-input-hint svg {
        width: 14px;
        height: 14px;
    }

    .payg-footer {
        padding: 15px 0;
    }

    .payg-footer svg {
        width: 14px;
        height: 14px;
    }

    .payg-back-link {
        padding: 10px 16px;
        font-size: 11px;
    }

    .payg-back-link svg {
        width: 14px;
        height: 14px;
    }

    .payg-dvla-card {
        margin-bottom: 15px;
    }

    .payg-dvla-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .payg-dvla-title {
        font-size: 13px;
    }

    .payg-dvla-source {
        font-size: 9px;
        padding: 4px 8px;
    }

    .payg-dvla-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .payg-dvla-cell {
        padding: 18px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .payg-dvla-cell:last-child {
        border-bottom: none;
    }

    .payg-dvla-cell-label {
        font-size: 9px;
    }

    .payg-dvla-cell-value {
        font-size: 16px;
    }

    .payg-colour-swatch {
        width: 18px;
        height: 18px;
    }
}
/* ============================================================ */
/* TARIFF & SUMMARY SECTION - Step 3                             */
/* ============================================================ */

/* Summary Pill - Vehicle/Carpark/Duration info */
.payg-summary-pill {
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.08) 0%, rgba(255, 237, 0, 0) 100%);
    border: 2px solid #ffed00;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    flex-wrap: wrap;
}

/* Pill Separator - Divider between pill items */
.payg-pill-sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #ffed00;
    margin: 0 4px;
}

/* Tariff Row - Individual tariff option container */
.payg-tariff-row {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

/* Tariff row hover effect */
.payg-tariff-row:hover {
    border-color: #ffed00;
    box-shadow: 0 4px 12px rgba(255, 237, 0, 0.2);
    transform: translateY(-2px);
}

/* Active tariff row - Highlighted selection */
.payg-tariff-row--active {
    border-color: #ffed00;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.05) 0%, rgba(255, 237, 0, 0) 100%);
    box-shadow: 0 6px 20px rgba(255, 237, 0, 0.25);
}

/* Active tariff top border accent */
.payg-tariff-row--active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ffed00;
}

/* Tariff Info - Left section with label and details */
.payg-tariff-info {
    flex: 1;
}

/* Tariff Label - Name of tariff */
.payg-tariff-label {
    font-size: 18px;
    font-weight: 900;
    color: #2b2b2b;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

/* Tariff Sub - Duration and exit time info */
.payg-tariff-sub {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.payg-tariff-sub strong {
    color: #2b2b2b;
    font-weight: 700;
}

/* Tariff Price - Amount on right side */
.payg-tariff-price {
    font-size: 28px;
    font-weight: 900;
    color: #2b2b2b;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

/* Tariff Exit Time - Exit deadline info */
.payg-tariff-exit {
    font-size: 12px;
    color: #999999;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.payg-tariff-exit svg {
    width: 14px;
    height: 14px;
    color: #ffed00;
}

/* Summary Card - Right column with details */
.payg-summary-card {
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    padding: 25px;
    height: fit-content;
    transition: all 0.3s ease;
}

.payg-summary-card:hover {
    border-color: #ffed00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Summary Card Head - Title/Header */
.payg-summary-card-head {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: #2b2b2b;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Summary Row - Individual row in summary */
.payg-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid #f9f9f9;
}

.payg-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.payg-summary-row span {
    color: #666666;
    font-weight: 400;
}

.payg-summary-row span:last-child {
    color: #2b2b2b;
    font-weight: 600;
}

.payg-summary-row span.plain {
    color: #999999;
    font-weight: 400;
}

/* Total Row - Highlighted total amount */
.payg-summary-row--total {
    padding: 15px 0;
    margin-top: 8px;
    border-top: 2px solid #f0f0f0;
    border-bottom: none;
    font-weight: 700;
}

.payg-summary-row--total span {
    color: #2b2b2b;
}

.payg-summary-row--total span:last-child {
    font-size: 18px;
    font-weight: 900;
    color: #ffed00;
}

/* Footer - Security message at bottom */
.payg-footer {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444444;
    margin-top: auto;
}

.payg-footer svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    vertical-align: middle;
}

.payg-footer p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - TABLET (768px and below)              */
/* ============================================================ */

@media (max-width: 768px) {
    .payg-topbar-inner {
        flex-direction: column;
        gap: 20px;
    }

    .payg-steps {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .payg-step {
        font-size: 11px;
        gap: 4px;
    }

    .payg-step-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .payg-step-sep {
        width: 30px;
        margin: 0 4px;
    }

    .payg-page-header h1 {
        font-size: 32px;
    }

    .payg-page-header p {
        font-size: 15px;
    }

    .payg-card-body {
        padding: 25px;
    }

    .payg-code-input {
        padding: 14px;
        font-size: 15px;
    }

    .payg-back-link {
        padding: 11px 20px;
        font-size: 12px;
    }

    .payg-dvla-card {
        margin-bottom: 20px;
    }

    .payg-dvla-header {
        padding: 18px;
        gap: 15px;
    }

    .payg-dvla-title {
        font-size: 14px;
    }

    .payg-dvla-source {
        font-size: 10px;
        padding: 5px 10px;
    }

    .payg-dvla-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .payg-dvla-cell {
        padding: 20px 15px;
    }

    .payg-dvla-cell-label {
        font-size: 10px;
    }

    .payg-dvla-cell-value {
        font-size: 16px;
    }

    .payg-colour-swatch {
        width: 20px;
        height: 20px;
    }

    .payg-summary-pill {
        padding: 12px 16px;
        gap: 10px;
        font-size: 12px;
    }

    .payg-pill-sep {
        height: 16px;
        margin: 0 3px;
    }

    .payg-tariff-row {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .payg-tariff-label {
        font-size: 16px;
    }

    .payg-tariff-sub {
        font-size: 12px;
    }

    .payg-tariff-price {
        font-size: 24px;
    }

    .payg-tariff-exit {
        font-size: 11px;
    }

    .payg-summary-card {
        padding: 20px;
        margin-top: 20px;
    }

    .payg-summary-card-head {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .payg-summary-row {
        padding: 10px 0;
        font-size: 12px;
    }

    .payg-summary-row--total {
        padding: 12px 0;
    }

    .payg-summary-row--total span:last-child {
        font-size: 16px;
    }
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - MOBILE (480px and below)              */
/* ============================================================ */

@media (max-width: 480px) {
    .payg-topbar {
        padding: 15px 0;
    }

    .payg-brand {
        font-size: 14px;
        gap: 8px;
    }

    .payg-brand-icon {
        width: 28px;
        height: 28px;
    }

    .payg-topbar-inner {
        gap: 15px;
    }

    .payg-steps {
        gap: 8px;
        order: 3;
        width: 100%;
    }

    .payg-step {
        font-size: 10px;
    }

    .payg-step-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .payg-step-sep {
        width: 20px;
        margin: 0 2px;
    }

    .payg-main {
        padding: 30px 0;
    }

    .payg-page-header {
        margin-bottom: 30px;
    }

    .payg-page-header h1 {
        font-size: 24px;
    }

    .payg-page-header p {
        font-size: 14px;
    }

    .payg-card {
        border-radius: 6px;
    }

    .payg-card-body {
        padding: 20px;
    }

    .payg-card-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .payg-code-input {
        padding: 12px;
        font-size: 16px;
    }

    .payg-carpark-preview {
        padding: 15px;
        min-height: auto;
    }

    .payg-carpark-name {
        font-size: 16px;
    }

    .payg-carpark-address {
        font-size: 12px;
    }

    .payg-btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .payg-input-hint {
        font-size: 12px;
    }

    .payg-input-hint svg {
        width: 14px;
        height: 14px;
    }

    .payg-footer {
        padding: 15px 0;
    }

    .payg-footer svg {
        width: 14px;
        height: 14px;
    }

    .payg-back-link {
        padding: 10px 16px;
        font-size: 11px;
    }

    .payg-back-link svg {
        width: 14px;
        height: 14px;
    }

    .payg-dvla-card {
        margin-bottom: 15px;
    }

    .payg-dvla-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .payg-dvla-title {
        font-size: 13px;
    }

    .payg-dvla-source {
        font-size: 9px;
        padding: 4px 8px;
    }

    .payg-dvla-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .payg-dvla-cell {
        padding: 18px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .payg-dvla-cell:last-child {
        border-bottom: none;
    }

    .payg-dvla-cell-label {
        font-size: 9px;
    }

    .payg-dvla-cell-value {
        font-size: 16px;
    }

    .payg-colour-swatch {
        width: 18px;
        height: 18px;
    }

    .payg-summary-pill {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 8px;
        font-size: 11px;
    }

    .payg-pill-sep {
        display: none;
    }

    .payg-tariff-row {
        padding: 16px;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .payg-tariff-label {
        font-size: 15px;
    }

    .payg-tariff-sub {
        font-size: 11px;
    }

    .payg-tariff-price {
        font-size: 22px;
        align-self: flex-start;
        margin-bottom: 6px;
    }

    .payg-tariff-exit {
        font-size: 10px;
    }

    .payg-summary-card {
        padding: 18px;
        margin-top: 20px;
    }

    .payg-summary-card-head {
        font-size: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .payg-summary-row {
        padding: 9px 0;
        font-size: 11px;
    }

    .payg-summary-row--total {
        padding: 11px 0;
        margin-top: 6px;
    }

    .payg-summary-row--total span:last-child {
        font-size: 15px;
    }
}
.payg-summary-row--total,.payg-summary-card-head {
    background:none;
}
/* ============================================================ */
/* PAYMENT CONFIRMATION SCREEN - Success Page                    */
/* ============================================================ */

/* Confirmation Wrapper - Main container for success screen */
.payg-confirmation-wrap {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.04) 0%, rgba(255, 237, 0, 0) 100%);
}

/* Success Icon - Large checkmark */
.payg-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #ffed00;
    border-radius: 50%;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.payg-success-icon svg {
    width: 48px;
    height: 48px;
    color: #2b2b2b;
}

/* Confirmation Title - Main success message */
.payg-confirmation-title {
    font-size: 42px;
    font-weight: 900;
    color: #2b2b2b;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Confirmation Subtitle - Details message */
.payg-confirmation-sub {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 25px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.payg-confirmation-sub strong {
    color: #2b2b2b;
    font-weight: 700;
}

/* Reference Section - Receipt/Transaction reference */
.payg-ref {
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.payg-ref svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    flex-shrink: 0;
}

/* Confirmation Grid - 2x2 or responsive grid layout */
.payg-confirmation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Confirmation Cell - Individual detail item */
.payg-conf-cell {
    text-align: left;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Confirmation Cell Label - Field label */
.payg-conf-cell-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999999;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* Confirmation Cell Value - Data value */
.payg-conf-cell-value {
    font-size: 16px;
    font-weight: 900;
    color: #2b2b2b;
    letter-spacing: -0.5px;
}

/* Monospace - For registration/amounts */
.payg-conf-cell-value.mono {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Outline Button - Secondary action button */
.payg-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #2b2b2b;
    padding: 14px 32px;
    border: 2px solid #2b2b2b;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Outline button hover - Invert colors */
.payg-btn-outline:hover {
    background-color: #2b2b2b;
    color: #ffed00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Outline button icon animation */
.payg-btn-outline svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.payg-btn-outline:hover svg {
    transform: rotate(90deg);
}

/* Summary Card Head - Title/Header */
.payg-summary-card-head {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: #2b2b2b;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Summary Row - Individual row in summary */
.payg-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid #f9f9f9;
}

.payg-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.payg-summary-row span {
    color: #666666;
    font-weight: 400;
}

.payg-summary-row span:last-child {
    color: #2b2b2b;
    font-weight: 600;
}

.payg-summary-row span.plain {
    color: #999999;
    font-weight: 400;
}

/* Total Row - Highlighted total amount */
.payg-summary-row--total {
    padding: 15px 0;
    margin-top: 8px;
    border-top: 2px solid #f0f0f0;
    border-bottom: none;
    font-weight: 700;
}

.payg-summary-row--total span {
    color: #2b2b2b;
}

.payg-summary-row--total span:last-child {
    font-size: 18px;
    font-weight: 900;
    color: #ffed00;
}

/* Footer - Security message at bottom */
.payg-footer {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444444;
    margin-top: auto;
}

.payg-footer svg {
    width: 16px;
    height: 16px;
    color: #ffed00;
    vertical-align: middle;
}

.payg-footer p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - TABLET (768px and below)              */
/* ============================================================ */

@media (max-width: 768px) {
    .payg-topbar-inner {
        flex-direction: column;
        gap: 20px;
    }

    .payg-steps {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .payg-step {
        font-size: 11px;
        gap: 4px;
    }

    .payg-step-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .payg-step-sep {
        width: 30px;
        margin: 0 4px;
    }

    .payg-page-header h1 {
        font-size: 32px;
    }

    .payg-page-header p {
        font-size: 15px;
    }

    .payg-card-body {
        padding: 25px;
    }

    .payg-code-input {
        padding: 14px;
        font-size: 15px;
    }

    .payg-back-link {
        padding: 11px 20px;
        font-size: 12px;
    }

    .payg-dvla-card {
        margin-bottom: 20px;
    }

    .payg-dvla-header {
        padding: 18px;
        gap: 15px;
    }

    .payg-dvla-title {
        font-size: 14px;
    }

    .payg-dvla-source {
        font-size: 10px;
        padding: 5px 10px;
    }

    .payg-dvla-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .payg-dvla-cell {
        padding: 20px 15px;
    }

    .payg-dvla-cell-label {
        font-size: 10px;
    }

    .payg-dvla-cell-value {
        font-size: 16px;
    }

    .payg-colour-swatch {
        width: 20px;
        height: 20px;
    }

    .payg-summary-pill {
        padding: 12px 16px;
        gap: 10px;
        font-size: 12px;
    }

    .payg-pill-sep {
        height: 16px;
        margin: 0 3px;
    }

    .payg-tariff-row {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .payg-tariff-label {
        font-size: 16px;
    }

    .payg-tariff-sub {
        font-size: 12px;
    }

    .payg-tariff-price {
        font-size: 24px;
    }

    .payg-tariff-exit {
        font-size: 11px;
    }

    .payg-summary-card {
        padding: 20px;
        margin-top: 20px;
    }

    .payg-summary-card-head {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .payg-summary-row {
        padding: 10px 0;
        font-size: 12px;
    }

    .payg-summary-row--total {
        padding: 12px 0;
    }

    .payg-summary-row--total span:last-child {
        font-size: 16px;
    }

    .payg-confirmation-wrap {
        padding: 30px 20px;
    }

    .payg-success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .payg-success-icon svg {
        width: 42px;
        height: 42px;
    }

    .payg-confirmation-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .payg-confirmation-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .payg-ref {
        padding: 12px 15px;
        font-size: 11px;
        margin-bottom: 25px;
    }

    .payg-ref svg {
        width: 14px;
        height: 14px;
    }

    .payg-confirmation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .payg-conf-cell {
        padding: 12px;
    }

    .payg-conf-cell-label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .payg-conf-cell-value {
        font-size: 15px;
    }

    .payg-btn-outline {
        padding: 12px 24px;
        font-size: 13px;
    }
}


/* ============================================================ */
/* RESPONSIVE ADJUSTMENTS - MOBILE (480px and below)              */
/* ============================================================ */

@media (max-width: 480px) {
    .payg-topbar {
        padding: 15px 0;
    }

    .payg-brand {
        font-size: 14px;
        gap: 8px;
    }

    .payg-brand-icon {
        width: 28px;
        height: 28px;
    }

    .payg-topbar-inner {
        gap: 15px;
    }

    .payg-steps {
        gap: 8px;
        order: 3;
        width: 100%;
    }

    .payg-step {
        font-size: 10px;
    }

    .payg-step-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .payg-step-sep {
        width: 20px;
        margin: 0 2px;
    }

    .payg-main {
        padding: 30px 0;
    }

    .payg-page-header {
        margin-bottom: 30px;
    }

    .payg-page-header h1 {
        font-size: 24px;
    }

    .payg-page-header p {
        font-size: 14px;
    }

    .payg-card {
        border-radius: 6px;
    }

    .payg-card-body {
        padding: 20px;
    }

    .payg-card-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .payg-code-input {
        padding: 12px;
        font-size: 16px;
    }

    .payg-carpark-preview {
        padding: 15px;
        min-height: auto;
    }

    .payg-carpark-name {
        font-size: 16px;
    }

    .payg-carpark-address {
        font-size: 12px;
    }

    .payg-btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .payg-input-hint {
        font-size: 12px;
    }

    .payg-input-hint svg {
        width: 14px;
        height: 14px;
    }

    .payg-footer {
        padding: 15px 0;
    }

    .payg-footer svg {
        width: 14px;
        height: 14px;
    }

    .payg-back-link {
        padding: 10px 16px;
        font-size: 11px;
    }

    .payg-back-link svg {
        width: 14px;
        height: 14px;
    }

    .payg-dvla-card {
        margin-bottom: 15px;
    }

    .payg-dvla-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .payg-dvla-title {
        font-size: 13px;
    }

    .payg-dvla-source {
        font-size: 9px;
        padding: 4px 8px;
    }

    .payg-dvla-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .payg-dvla-cell {
        padding: 18px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .payg-dvla-cell:last-child {
        border-bottom: none;
    }

    .payg-dvla-cell-label {
        font-size: 9px;
    }

    .payg-dvla-cell-value {
        font-size: 16px;
    }

    .payg-colour-swatch {
        width: 18px;
        height: 18px;
    }

    .payg-summary-pill {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 8px;
        font-size: 11px;
    }

    .payg-pill-sep {
        display: none;
    }

    .payg-tariff-row {
        padding: 16px;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .payg-tariff-label {
        font-size: 15px;
    }

    .payg-tariff-sub {
        font-size: 11px;
    }

    .payg-tariff-price {
        font-size: 22px;
        align-self: flex-start;
        margin-bottom: 6px;
    }

    .payg-tariff-exit {
        font-size: 10px;
    }

    .payg-summary-card {
        padding: 18px;
        margin-top: 20px;
    }

    .payg-summary-card-head {
        font-size: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .payg-summary-row {
        padding: 9px 0;
        font-size: 11px;
    }

    .payg-summary-row--total {
        padding: 11px 0;
        margin-top: 6px;
    }

    .payg-summary-row--total span:last-child {
        font-size: 15px;
    }

    .payg-confirmation-wrap {
        padding: 25px 15px;
    }

    .payg-success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .payg-success-icon svg {
        width: 36px;
        height: 36px;
    }

    .payg-confirmation-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .payg-confirmation-sub {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .payg-ref {
        padding: 11px 12px;
        font-size: 10px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        gap: 6px;
    }

    .payg-ref svg {
        width: 13px;
        height: 13px;
    }

    .payg-confirmation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        margin-bottom: 18px;
    }

    .payg-conf-cell {
        padding: 12px;
        text-align: center;
    }

    .payg-conf-cell-label {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .payg-conf-cell-value {
        font-size: 14px;
    }

    .payg-btn-outline {
        padding: 12px 20px;
        font-size: 12px;
        width: 100%;
    }
}

