/**
 * Gateway Booking System - Matching Figma Design Exactly
 * Recreated from React app styles
 */

/* Reset and Base */
#gateway-booking-root * {
    box-sizing: border-box;
}

#gateway-booking-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    line-height: 1.6;
}

/* Container Layout */
.gbs-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.gbs-main {
    flex: 2;
    min-width: 300px;
}

.gbs-sidebar {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

/* Step Container */
.gbs-step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

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

/* Logo and Branding - Step 1 */
.gbs-logo-image {
    max-width: 150px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
}

.gbs-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #2A3762;
    margin: 0 0 16px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gbs-subtitle {
    font-size: 16px;
    color: #2A3762;
    margin: 0 0 32px 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Step Titles */
.gbs-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #2A3762;
    margin: 0 0 8px 0;
    text-align: center;
}

.gbs-step-subtitle {
    font-size: 16px;
    color: #2A3762;
    margin: 0 0 24px 0;
    text-align: center;
}

.gbs-property-title,
.gbs-bedroom-title,
.gbs-stage-title,
.gbs-agent-title {
    font-size: 20px;
    font-weight: 700;
    color: #2A3762;
    margin: 0 0 8px 0;
}

.gbs-property-title {
    color: #000;
    font-size: 24px;
}

.gbs-property-subtitle,
.gbs-bedroom-subtitle,
.gbs-stage-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px 0;
}

/* Buttons */
.gbs-btn {
    background: #2A3762;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.gbs-btn:hover {
    background: #1f2a4a;
}

.gbs-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gbs-btn-primary {
    background: #2A3762;
    min-width: 200px;
}

.gbs-btn-secondary {
    background: transparent;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 10px 24px;
}

.gbs-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.gbs-btn-full {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.gbs-btn-center {
    text-align: center;
    margin-top: 24px;
}

/* Input Fields */
.gbs-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.gbs-input:focus {
    outline: none;
    border-color: #2A3762;
    box-shadow: 0 0 0 3px rgba(42, 55, 98, 0.1);
}

.gbs-textarea {
    resize: vertical;
    min-height: 80px;
}

.gbs-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.gbs-input-icon {
    position: relative;
}

.gbs-card-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.gbs-input-with-icon {
    padding-left: 40px;
}

/* Address Input with Location Icon */
.gbs-address-input-wrapper {
    position: relative;
    width: 100%;
}

.gbs-address-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #D97706;
    z-index: 1;
}

.gbs-input-with-location-icon {
    padding-left: 48px;
}

/* Inspection Type List - Step 2 */
.gbs-inspection-list {
    max-width: 500px;
    margin: 0 auto 24px;
}

.gbs-inspection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.gbs-inspection-item:hover {
    border-color: #9ca3af;
}

.gbs-inspection-item.selected {
    border-color: #2A3762;
    background: #eff6ff;
}

.gbs-inspection-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}

.gbs-inspection-label {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
}

.gbs-chevron {
    color: #9ca3af;
    flex-shrink: 0;
}

/* Property Grid - Step 3 */
.gbs-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.gbs-property-card {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gbs-property-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gbs-property-card.selected {
    border-color: #2A3762;
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(42, 55, 98, 0.15);
}

.gbs-property-image {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}

.gbs-property-name {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Bedroom Grid */
.gbs-bedroom-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.gbs-bedroom-btn {
    padding: 12px 20px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
}

.gbs-bedroom-btn:hover {
    border-color: #9ca3af;
}

.gbs-bedroom-btn.selected {
    border-color: #2A3762;
    background: #eff6ff;
}

/* Construction Stage List */
.gbs-stage-list {
    max-width: 700px;
    margin-bottom: 32px;
}

.gbs-stage-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.gbs-stage-item:hover {
    border-color: #9ca3af;
}

.gbs-stage-item.selected {
    border-color: #2A3762;
    background: #eff6ff;
}

.gbs-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    flex-shrink: 0;
}

.gbs-radio.checked {
    border-color: #2A3762;
    background: #2A3762;
}

.gbs-stage-label {
    flex: 1;
}

/* Date Picker - Step 4 */
.gbs-date-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0 20px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
}

.gbs-date-scroll::-webkit-scrollbar {
    height: 8px;
}

.gbs-date-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.gbs-date-scroll::-webkit-scrollbar-thumb {
    background: #2A3762;
    border-radius: 4px;
}

.gbs-date-card {
    flex-shrink: 0;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
    min-width: 100px;
    transition: all 0.3s ease;
}

.gbs-date-card:hover {
    border-color: #9ca3af;
}

.gbs-date-card.selected {
    border-color: #2A3762;
    background: #eff6ff;
}

.gbs-date-day {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.gbs-date-number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* Calendar Dates */
.gbs-calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #fff;
}

.gbs-calendar-date:hover {
    border-color: #2A3762;
    background: #eff6ff;
}

.gbs-calendar-date.selected {
    border-color: #2A3762;
    background: #2A3762;
    color: #fff;
}

.gbs-calendar-date.today {
    border-color: #60a5fa;
    background: #eff6ff;
    color: #2A3762;
}

.gbs-calendar-date.today:hover {
    border-color: #2A3762;
}

.gbs-calendar-date.past {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.gbs-calendar-date.past:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

/* Month Navigation Buttons */
.gbs-month-nav-btn {
    padding: 8px 16px;
    color: #2A3762;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gbs-month-nav-btn:hover {
    background: #f3f4f6;
}

/* Time Slots */
.gbs-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .gbs-time-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .gbs-time-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.gbs-time-slot {
    padding: 10px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.gbs-time-slot:hover {
    border-color: #9ca3af;
}

.gbs-time-slot.selected {
    border-color: #2A3762;
    background: #eff6ff;
}

/* Notice Box */
.gbs-notice {
    background: #C9E2EE;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.gbs-notice h4 {
    color: #156A96;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.gbs-notice p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.gbs-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

/* Agent/Builder Form */
.gbs-agent-form {
    max-width: 600px;
}

.gbs-form-group {
    margin-bottom: 20px;
}

.gbs-yesno-group {
    display: flex;
    gap: 16px;
}

.gbs-yesno-btn {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gbs-yesno-btn:hover {
    border-color: #9ca3af;
}

.gbs-yesno-btn.selected {
    border-color: #2A3762;
    background: #2A3762;
    color: #fff;
}

/* Address Confirmation - Step 5 */
.gbs-address-confirm {
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Payment - Step 6 */
.gbs-payment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.gbs-lock-icon {
    color: #22c55e;
}

.gbs-payment-title {
    font-size: 24px;
    font-weight: 700;
    color: #2A3762;
    margin: 0;
}

.gbs-payment-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px 0;
}

.gbs-payment-summary {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.gbs-payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.gbs-payment-total {
    font-size: 24px;
    font-weight: 700;
    color: #2A3762;
}

.gbs-payment-type {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.gbs-payment-form {
    max-width: 600px;
}

.gbs-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gbs-payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.gbs-payment-method:hover {
    border-color: #2A3762;
    background: #f9fafb;
}

.gbs-payment-method.selected {
    border-color: #2A3762;
    background: #f0f4ff;
}

.gbs-payment-method-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.gbs-payment-method.selected .gbs-payment-method-radio {
    border-color: #2A3762;
}

.gbs-payment-method-radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
}

.gbs-payment-method.selected .gbs-payment-method-radio-inner {
    background: #2A3762;
}

.gbs-payment-method-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-left: auto;
}

.gbs-payment-row-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gbs-security-notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gbs-security-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0 0 4px 0;
}

.gbs-security-text {
    font-size: 12px;
    color: #1e40af;
    margin: 0;
}

.gbs-test-notice {
    background: #fef9c3;
    border: 1px solid #fde047;
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.gbs-test-notice p {
    font-size: 14px;
    color: #854d0e;
    margin: 0;
}

/* Step Navigation */
.gbs-step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.gbs-step-navigation .gbs-btn {
    flex: 1;
}

/* Summary Sidebar - Figma Design */
.gbs-summary {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gbs-summary-header {
    margin-bottom: 24px;
}

.gbs-summary-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    margin: 0 0 24px 0;
}

.gbs-summary-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.gbs-summary-detail-item {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.5;
}

.gbs-summary-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 24px 0;
}

.gbs-summary-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.gbs-summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1E5A8E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gbs-summary-icon svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.gbs-summary-section-content {
    flex: 1;
}

.gbs-summary-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
}

.gbs-summary-section-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.gbs-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 0;
    border-top: none;
}

.gbs-summary-total-label {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.gbs-summary-total-price {
    font-size: 32px;
    font-weight: 700;
    color: #1E5A8E;
}

/* Success Page */
.gbs-success {
    text-align: center;
}

.gbs-success-icon {
    margin: 0 auto 24px;
}

.gbs-success-title {
    font-size: 32px;
    color: #22c55e;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.gbs-success-text {
    font-size: 18px;
    color: #666;
    margin: 0 0 16px 0;
}

.gbs-order-id {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

.gbs-booking-details {
    background: #f8f9fb;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.gbs-booking-details h3 {
    margin-top: 0;
    color: #2A3762;
    font-size: 18px;
}

.gbs-booking-details p {
    margin: 8px 0;
    font-size: 14px;
}

/* Spinner */
.gbs-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Commercial Inspection Page */
.gbs-commercial-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 32px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gbs-back-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 24px;
    color: #333;
    transition: color 0.2s;
}

.gbs-back-btn:hover {
    color: #0B7A9F;
}

.gbs-commercial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gbs-commercial-left {
    padding-right: 20px;
}

.gbs-commercial-tagline {
    color: #0B7A9F;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.gbs-commercial-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.gbs-commercial-secure {
    color: #0B7A9F;
}

.gbs-commercial-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.gbs-commercial-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.gbs-commercial-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gbs-commercial-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.gbs-check-icon {
    flex-shrink: 0;
}

.gbs-commercial-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gbs-commercial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gbs-commercial-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.4;
}

.gbs-commercial-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.gbs-commercial-input:focus {
    outline: none;
    border-color: #0B7A9F;
}

.gbs-btn-callback {
    width: 100%;
    background: #0B7A9F;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.gbs-btn-callback:hover:not(:disabled) {
    background: #096580;
}

.gbs-btn-callback:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gbs-commercial-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gbs-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gbs-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.gbs-contact-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.gbs-contact-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

@media (max-width: 968px) {
    .gbs-commercial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gbs-commercial-left {
        padding-right: 0;
    }
    
    .gbs-commercial-title {
        font-size: 28px;
    }
}

/* Booking Confirmation Page */
.gbs-confirmation-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gbs-confirmation-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.gbs-confirmation-icon {
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

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

.gbs-confirmation-title {
    font-size: 36px;
    font-weight: 700;
    color: #2A6E8D;
    margin: 0 0 16px 0;
}

.gbs-confirmation-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.gbs-confirmation-message {
    font-size: 14px;
    color: #999;
    margin: 0 0 32px 0;
}

.gbs-confirmation-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.gbs-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.gbs-detail-row:last-child {
    border-bottom: none;
}

.gbs-detail-label {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.gbs-detail-value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

.gbs-btn-home {
    width: 100%;
    background: #2A6E8D;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gbs-btn-home:hover {
    background: #235a73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 110, 141, 0.3);
}

.gbs-btn-home:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gbs-container {
        flex-direction: column;
    }
    
    .gbs-sidebar {
        max-width: 100%;
    }
    
    .gbs-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    #gateway-booking-root {
        padding: 15px;
    }
    
    .gbs-step {
        padding: 24px 20px;
    }
    
    .gbs-main-title {
        font-size: 24px;
    }
    
    .gbs-property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gbs-bedroom-grid {
        justify-content: stretch;
    }
    
    .gbs-bedroom-btn {
        flex: 1;
        min-width: 0;
    }
    
    .gbs-payment-row-inputs {
        grid-template-columns: 1fr;
    }
    
    .gbs-step-navigation {
        flex-direction: column;
    }
    
    .gbs-step-navigation .gbs-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gbs-main-title {
        font-size: 20px;
    }
    
    .gbs-subtitle {
        font-size: 14px;
    }
    
    .gbs-inspection-image {
        width: 60px;
        height: 60px;
    }
    
    .gbs-property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gbs-property-image {
        height: 90px;
    }
    
    .gbs-date-card {
        min-width: 85px;
        padding: 10px 12px;
    }
}

/* Accessibility */
.gbs-btn:focus,
.gbs-input:focus,
.gbs-inspection-item:focus,
.gbs-property-card:focus,
.gbs-bedroom-btn:focus,
.gbs-time-slot:focus,
.gbs-date-card:focus {
    outline: 2px solid #2A3762;
    outline-offset: 2px;
}

/* Stripe Elements Styling */
.gbs-stripe-card-element {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 16px;
    background-color: white;
    transition: all 0.3s ease;
}

.gbs-stripe-card-element:focus-within {
    border-color: #2A3762;
    box-shadow: 0 0 0 3px rgba(42, 55, 98, 0.1);
}

.gbs-stripe-card-element.StripeElement--focus {
    border-color: #2A3762;
    box-shadow: 0 0 0 3px rgba(42, 55, 98, 0.1);
}

.gbs-stripe-card-element.StripeElement--invalid {
    border-color: #EF4444;
}

.gbs-card-errors {
    color: #EF4444;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}