/**
 * Airport Taxi Calculator - Complete Styles
 */

 .atc-calculator-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    position: relative;
}

/* ============================================
   STEP 1: COMPACT FORM (Fits in 50% Column)
   ============================================ */
#atc-step-1 {
    width: 100%;
    max-width: 70%;
    margin: 0;
    padding: 15px 0;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

/* Ensure Step 1 never breaks out of container */
#atc-step-1 * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Remove hero section - just show compact form */
.atc-hero-section {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* Hide right side content in Step 1 */
.atc-hero-content {
    display: none;
}

/* Left Side: Compact Form - Narrow */
.atc-hero-form {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.atc-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.atc-hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 30px;
}

.atc-hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.atc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.atc-feature-icon {
    width: 24px;
    height: 24px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   STEP 2: VEHICLE SELECTION (Full Width)
   ============================================ */
#atc-step-2 {
    width: 100%;
    max-width: 100%;
/*     margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%); */
    padding: 10px 20px;
    background: #f8f9fa;
    position: relative;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

#atc-step-2 .atc-vehicles-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* ============================================
   STEP 3: BOOKING FORM (Full-Width Checkout)
   ============================================ */
#atc-step-3 {
    width: 100%;
    max-width: 100%;
/*     margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%); */
    padding: 10px 20px;
    background: #fff;
    position: relative;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

#atc-step-3 .atc-booking-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Step Indicator */
.atc-step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.atc-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.atc-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.atc-step-item.completed:not(:last-child)::after {
    background: #28a745;
}

.atc-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.atc-step-item.active .atc-step-number {
    background: #ffc107;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
}

.atc-step-item.completed .atc-step-number {
    background: #28a745;
    color: #fff;
}

.atc-step-item.completed .atc-step-number::after {
    content: '✓';
    font-size: 20px;
}

.atc-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atc-step-item.active .atc-step-label {
    color: #ffc107;
}

.atc-step-item.completed .atc-step-label {
    color: #28a745;
}

/* Steps */
.atc-step {
    display: none;
    animation: fadeInSlide 0.4s ease;
}

.atc-step.atc-step-active {
    display: block;
}

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

/* Quote Box - Ultra Compact Design for Step 1 */
.atc-quote-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 18px;
    border: 1px solid #e8e8e8;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
}

.atc-box-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 22px;
    text-align: center;
    letter-spacing: -0.3px;
}

/* Form Groups - Ultra Compact for Step 1 */
.atc-form-group {
    margin-bottom: 10px;
}

.atc-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
}

.atc-input {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #fff;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.atc-input:focus {
    outline: none;
    border-color: #ffc107;
}

/* Fix Google Maps error state - Always allow manual input */
.atc-input.gm-err-autocomplete,
.atc-input[disabled],
.atc-input.pac-target-input {
    background: #fff !important;
    background-image: none !important;
    cursor: text !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.atc-input.gm-err-autocomplete::placeholder,
.atc-input[disabled]::placeholder {
    color: #999;
}

/* Ensure inputs are always editable */
#atc-pickup,
#atc-dropoff {
    background: #fff !important;
    background-image: none !important;
    cursor: text !important;
    pointer-events: auto !important;
}

#atc-pickup[disabled],
#atc-dropoff[disabled] {
    background: #fff !important;
    opacity: 1 !important;
    cursor: text !important;
}

.atc-input-small {
    width: 50%;
    padding: 9px 11px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.atc-input-small:focus {
    outline: none;
    border-color: #ffc107;
}

/* Airport Checkboxes */
.atc-airport-checkboxes {
    margin-top: 8px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.atc-airport-checkbox {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 4px;
    margin-bottom: 2px;
}

.atc-airport-checkbox:hover {
    background: #fff;
}

.atc-airport-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.atc-airport-checkbox span {
    font-size: 12px;
    color: #555;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

/* Date & Time */
.atc-datetime-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.atc-date-input, .atc-time-select {
    padding: 10px 10px;
    font-size: 13px;
}

/* Checkbox Inline */
.atc-checkbox-inline {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.atc-checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.atc-checkbox-inline span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Buttons - Compact for Step 1 */
.atc-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.atc-btn-primary {
    background: #ffc107;
    color: #000;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.atc-btn-primary:hover {
    background: #e6a800;
    transform: translateY(-2px);
}

.atc-btn-success {
    background: #28a745;
    color: #fff;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.atc-btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Step Header */
.atc-step-header {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.atc-btn-back {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.atc-btn-back:hover {
    border-color: #ffc107;
    color: #ffc107;
    background: #fff9e6;
}

/* Vehicles */
.atc-vehicles-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.atc-step-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.atc-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    margin-top: 30px;
}

.atc-vehicle-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.atc-vehicle-card:hover {
    border-color: #ffc107;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    transform: translateY(-5px);
}

.atc-vehicle-card.selected {
    border-color: #ffc107;
    background: #fff9e6;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.atc-vehicle-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffc107;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.atc-vehicle-name {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0 5px;
    color: #1a1a1a;
}

.atc-vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin: 8px 0;
}

.atc-vehicle-price {
    font-size: 20px;
    font-weight: 800;
    color: #28a745;
    margin: 10px 0;
}

/* Booking Container - Already defined in Step 3 section */

.atc-btn-back-top {
    background: #fff;
    border: 1.5px solid #d0d0d0;
    color: #666;
    padding: 11px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.atc-btn-back-top:hover {
    border-color: #ffc107;
    color: #ffc107;
    background: #fff9e6;
    transform: translateX(-2px);
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.15);
}

/* New Booking Layout - Full Width Checkout */
.atc-booking-layout-new {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    align-items: start;
    width: 100%;
    margin-top: 30px;
}

.atc-booking-form-wrapper {
    min-width: 0;
}

.atc-booking-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 0;
    border: 1px solid #e8e8e8;
}

.atc-booking-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    letter-spacing: -0.3px;
}

.atc-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin: 28px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.atc-section-title:first-of-type {
    margin-top: 0;
}

.atc-icon {
    font-size: 18px;
}

/* Selected Vehicle New Style */
.atc-selected-vehicle-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 22px 24px;
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.atc-selected-vehicle-new h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

.atc-selected-vehicle-new p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.95;
}

/* Trip Details Card */
.atc-trip-details-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 28px;
}

.atc-trip-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.atc-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.atc-info-item:last-child {
    border-bottom: none;
}

.atc-info-label {
    font-weight: 600;
    color: #666;
    font-size: 13px;
    width: 100%;
}

.atc-info-value {
    color: #2c3e50;
    font-size: 14px;
    width: 100%;
    word-break: break-word;
    font-weight: 500;
    line-height: 1.5;
}

/* New Form Styles */
.atc-booking-form-new {
    margin-top: 10px;
}

.atc-form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}

.atc-form-field {
    margin-bottom: 22px;
}

.atc-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 9px;
    letter-spacing: 0.2px;
}

.atc-input-new,
.atc-select-new,
.atc-textarea-new {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #d0d0d0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
    color: #333;
}

.atc-input-new:focus,
.atc-select-new:focus,
.atc-textarea-new:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.12);
    background: #fffef5;
}

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

/* Checkbox New Style */
.atc-extras-section-new {
    margin: 24px 0;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.atc-checkbox-new {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
}

.atc-checkbox-new input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #ffc107;
}

.atc-checkbox-label {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
}

.atc-extras-list {
    margin-top: 15px;
    display: none;
}

.atc-extras-list.active {
    display: block;
}

/* Submit Button */
.atc-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.25);
    letter-spacing: 0.3px;
}

.atc-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.atc-btn-icon {
    font-size: 20px;
}

/* Summary Card */
.atc-summary-wrapper {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.atc-summary-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px;
    border: 1px solid #e8e8e8;
    position: sticky;
    top: 20px;
}

.atc-summary-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

.atc-summary-content-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.atc-summary-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
	flex-direction: column;
}

.atc-summary-row-new:last-child {
    border-bottom: none;
    border-top: 2px solid #e0e0e0;
    margin-top: 10px;
    padding-top: 18px;
    font-weight: 700;
    font-size: 20px;
    color: #28a745;
}

.atc-summary-label {
    color: #666;
    font-weight: 500;
    font-size: 13px;
}

.atc-summary-value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

.atc-summary-row-new:last-child .atc-summary-value {
    color: #28a745;
    font-size: 22px;
    font-weight: 800;
}

/* Additional styling improvements */
.atc-booking-card {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.atc-summary-card {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.atc-trip-details-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.atc-input-new::placeholder,
.atc-textarea-new::placeholder {
    color: #999;
    opacity: 0.7;
}

.atc-select-new {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.atc-extras-list.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Loading */
.atc-loading {
    text-align: center;
    padding: 30px;
}

.atc-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ffc107;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.atc-message {
    padding: 12px 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 14px;
    text-align: center;
}

.atc-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.atc-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Responsive - Tablet */
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    /* Step 1 - Stay compact */
    #atc-step-1 {
        padding: 15px 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Step 2 & 3 - Full width with adjusted margins */
    #atc-step-2,
    #atc-step-3 {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 40px 30px;
    }
    
    .atc-booking-layout-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .atc-summary-wrapper {
        position: static;
        order: -1;
    }
    
    .atc-summary-card {
        position: static;
    }
    
    .atc-vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Step 1 - Stay compact */
    #atc-step-1 {
        padding: 12px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .atc-quote-box {
        padding: 16px;
        border-radius: 8px;
    }
    
    /* Step 2 & 3 - Full width */
    #atc-step-2,
    #atc-step-3 {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 30px 20px;
    }
    
    /* Ensure text never breaks */
    #atc-step-1 *,
    #atc-step-2 *,
    #atc-step-3 * {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .atc-vehicles-box {
        padding: 0;
    }
    
    .atc-vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .atc-booking-layout-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .atc-summary-wrapper {
        position: static;
        order: -1;
    }
    
    .atc-summary-card {
        position: static;
    }
    
    .atc-booking-container {
        padding: 0;
    }
    
    /* Font Sizes - Tablet */
    .atc-box-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .atc-step-title {
        font-size: 18px;
    }
    
    .atc-booking-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .atc-section-title {
        font-size: 15px;
        margin: 20px 0 12px;
    }
    
    .atc-booking-card {
        padding: 20px;
        border-radius: 10px;
    }
    
    .atc-form-row-new {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .atc-form-field {
        margin-bottom: 15px;
    }
    
    .atc-form-field label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .atc-input-new,
    .atc-select-new,
    .atc-textarea-new {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .atc-vehicles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .atc-vehicle-card {
        padding: 15px;
    }
    
    .atc-vehicle-name {
        font-size: 15px;
    }
    
    .atc-vehicle-specs {
        font-size: 12px;
        gap: 10px;
    }
    
    .atc-vehicle-price {
        font-size: 18px;
    }
    
    .atc-booking-container {
        padding: 15px;
    }
    
    .atc-vehicles-box {
        padding: 15px;
    }
    
    .atc-summary-card {
        padding: 18px;
    }
    
    .atc-summary-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .atc-summary-row-new {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .atc-summary-row-new:last-child {
        font-size: 18px;
        padding-top: 12px;
    }
    
    .atc-summary-row-new:last-child .atc-summary-value {
        font-size: 20px;
    }
    
    .atc-btn {
        padding: 11px;
        font-size: 14px;
    }
    
    .atc-btn-submit {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .atc-btn-back {
        padding: 7px 14px;
        font-size: 13px;
    }
    
    .atc-selected-vehicle-new {
        padding: 18px;
    }
    
    .atc-selected-vehicle-new h4 {
        font-size: 16px;
    }
    
    .atc-selected-vehicle-new p {
        font-size: 13px;
    }
    
    .atc-trip-details-card {
        padding: 18px;
    }
    
    .atc-info-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .atc-info-label,
    .atc-info-value {
        font-size: 13px;
        width: 100%;
    }
    
    .atc-checkbox-label {
        font-size: 13px;
    }
    
    .atc-input {
        padding: 9px 11px;
        font-size: 13px;
    }
    
    .atc-form-group label {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Step 1 - Ultra compact */
    #atc-step-1 {
        padding: 10px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .atc-quote-box {
        padding: 14px;
        border-radius: 8px;
    }
    
    /* Step 2 & 3 - Full width */
    #atc-step-2,
    #atc-step-3 {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 25px 15px;
    }
    
    /* Font Sizes - Mobile */
    .atc-box-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .atc-step-title {
        font-size: 16px;
    }
    
    .atc-booking-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .atc-section-title {
        font-size: 14px;
        margin: 15px 0 10px;
    }
    
    .atc-form-group {
        margin-bottom: 12px;
    }
    
    .atc-form-group label {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .atc-input {
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 5px;
    }
    
    .atc-input-small {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .atc-input-new,
    .atc-select-new,
    .atc-textarea-new {
        padding: 9px 11px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .atc-form-field label {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .atc-form-row-new {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .atc-form-field {
        margin-bottom: 12px;
    }
    
    .atc-datetime-flex {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .atc-date-input,
    .atc-time-select {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .atc-btn {
        padding: 10px;
        font-size: 13px;
        border-radius: 5px;
    }
    
    .atc-btn-submit {
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .atc-btn-back {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .atc-booking-card {
        padding: 15px;
        border-radius: 8px;
    }
    
    .atc-booking-container {
        padding: 10px;
    }
    
    .atc-vehicles-box {
        padding: 10px;
    }
    
    .atc-vehicle-card {
        padding: 12px;
        border-radius: 8px;
    }
    
    .atc-vehicle-name {
        font-size: 14px;
        margin: 8px 0 4px;
    }
    
    .atc-vehicle-specs {
        font-size: 11px;
        gap: 8px;
        margin: 6px 0;
    }
    
    .atc-vehicle-price {
        font-size: 16px;
        margin: 8px 0;
    }
    
    .atc-summary-card {
        padding: 15px;
        border-radius: 8px;
    }
    
    .atc-summary-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .atc-summary-row-new {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .atc-summary-row-new:last-child {
        font-size: 16px;
        padding-top: 10px;
        margin-top: 6px;
    }
    
    .atc-summary-row-new:last-child .atc-summary-value {
        font-size: 18px;
    }
    
    .atc-selected-vehicle-new {
        padding: 15px;
        border-radius: 8px;
    }
    
    .atc-selected-vehicle-new h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .atc-selected-vehicle-new p {
        font-size: 12px;
        margin: 4px 0;
    }
    
    .atc-trip-details-card {
        padding: 15px;
        border-radius: 8px;
    }
    
    .atc-info-item {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
    }
    
    .atc-info-label {
        font-size: 11px;
        width: 100%;
    }
    
    .atc-info-value {
        font-size: 12px;
        width: 100%;
    }
    
    .atc-checkbox-label {
        font-size: 12px;
    }
    
    .atc-checkbox-new input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .atc-extras-section-new {
        padding: 12px;
        margin: 15px 0;
    }
    
    .atc-airport-checkbox span {
        font-size: 12px;
    }
    
    .atc-checkbox-inline span {
        font-size: 13px;
    }
    
    .atc-textarea-new {
        min-height: 70px;
        font-size: 13px;
    }
    
    .atc-vehicles-grid {
        gap: 12px;
    }
}

