/* ===== CSS Reset & Base Styles ===== */
:root {
    /* Color Palette */
    --primary-color: linear-gradient(135deg, #2a3a4a 0%, #3a4a5a 100%);
    --primary-light: linear-gradient(135deg, #d4e5f5 0%, #d1e6f8 100%);
    --secondary-color: #ffcc00;
   


    --primary-background: linear-gradient(135deg, #1a2837, #2a4365), radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 70%);


    --btn-primary-color: linear-gradient(135deg, #ffcc00, #ff9900);
    --btn-color: #1a2a3a;

    --danger-color: #ef4444;
    --warning-color: #f59e0b;

    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    
    /* Typography */
    --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --animation-speed: 0.3s;
    --transition-fast: 0.15s;
    --transition-normal: 0.3s;
    
    /* Layout */
    --max-width: 1200px;
}

.max-container{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 12px 12px 0;
	border-radius: 0;
	box-sizing: border-box;
}

.side-menu{
	display: block;
	flex: 0 0 clamp(360px, 23vw, 430px) !important;
	width: clamp(360px, 23vw, 430px) !important;
	min-width: 360px !important;
	max-width: 430px !important;
}

.side-menu > [class*="col-"] {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	-ms-flex: 0 0 100% !important;
	float: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.max-container > .side-menu > .col-lg-3,
.max-container > .side-menu > .col-sm-12,
.max-container > .side-menu > .col-md-12,
.max-container > .side-menu > .col-12 {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	-ms-flex: 0 0 100% !important;
}

.side-menu .left-sidebar {
	margin-left: 0 !important;
	padding: 0 !important;
}

.side-menu .widget {
	margin-left: 0 !important;
}

.atc-container {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 50px 50px;
    background-color: #fff;
    box-shadow: 0 6px 38px rgb(0 0 0 / 5%);
    border-radius: 5px;
    border: 1px solid #e6e8eb;
}

/* ===== Main Content ===== */
.atc-main-content {
    margin-bottom: var(--spacing-3xl);
}

/* Hero Section */
.atc-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    align-items: center;
    margin-top: 24px;
    margin-left: 0;
}

.atc-hero-content {
    padding-right: var(--spacing-xl);
}

.atc-hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gray-600);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);

}

.atc-hero-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.6;
}

.atc-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.atc-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 200px;
    background: var(--primary-background);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    font-size: 4rem;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.atc-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.atc-image-placeholder i {
    position: relative;
    z-index: 1;
    color: #f0d156;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Calculator Card */
.atc-calculator-wrapper {
    margin-bottom: var(--spacing-2xl);
position: relative; 
z-index: 10;
}

.atc-calculator-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-bottom: 5px solid #2a3a4a;
    transition: transform var(--animation-speed) ease;
}

.atc-calculator-card:hover {
    transform: translateY(-4px);
}

.atc-card-header {
    padding: var(--spacing-xl);
    background: var(--primary-color);
    color: white;
}

.atc-card-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: white;
}

.atc-card-subtitle {
    color: var(--gray-300);
    font-size: var(--font-size-sm);
}

/* Form Sections */
.atc-calculator-form {
    padding: var(--spacing-xl);
    padding-bottom: var(--spacing-3xl);
}

.atc-form-section {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
}

.atc-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: var(--spacing-xl);
}

.atc-section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.atc-section-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: var(--font-size-lg);
}

.atc-section-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-800);
}

/* Form Layout */
.atc-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}


.atc-full-width {
    grid-column: 1 / -1;
}

/* Form Groups */
.atc-form-group {
    width: 100%;
}

.atc-input-group {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.atc-input-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    flex-shrink: 0;
    margin-top: 24px;
}

.atc-input-content {
    flex: 1;
}

.atc-input-content label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-sm);
}

.atc-input-content input,
.atc-input-content select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: white;
    transition: all var(--transition-fast);
    appearance: none;
}

.atc-input-content input:focus,
.atc-input-content select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.atc-input-content input::placeholder {
    color: var(--gray-400);
}

/* Ensure autofill text is visible */
.atc-input-content input:-webkit-autofill,
.atc-input-content input:-webkit-autofill:hover,
.atc-input-content input:-webkit-autofill:focus,
.atc-input-content input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--gray-800) !important;
    transition: background-color 9999s ease-in-out 0s;
}

.atc-zip-input-wrap {
    position: relative;
}

.atc-zip-input-wrap input {
    position: relative;
    z-index: 2;
    background: transparent;
}

.atc-zip-ghost {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    opacity: 0.9;
    font-size: var(--font-size-base);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    max-width: 60%;
    text-overflow: ellipsis;
}

.atc-help-text {
    display: block;
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    line-height: 1.4;
}

/* Buttons */
.atc-form-actions {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.atc-form-actions .atc-btn {
    flex: 1;
}

.atc-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.atc-btn-calculate {
    background: var(--btn-primary-color);
    color: #1a2a3a;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.atc-btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.atc-btn-reset {
    background: white;
    color: var(--btn-color);
    border: 2px solid #1a2837;
    box-shadow: var(--shadow-sm);
}   

.atc-btn-reset:hover {
    background: var(--primary-background);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Loading Indicator */
.atc-loading-indicator {
    text-align: center;
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
}

.atc-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.atc-loading-indicator p {
    color: var(--gray-600);
    font-weight: 500;
}

/* Error Message */
.atc-error-message {
    border: 2px dashed var(--danger-color);
    color: black;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.atc-error-message .atc-error-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.atc-error-message .atc-error-list li {
    margin: 0.25rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.4;
}

.atc-error-message .atc-error-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    width: 1rem;
    text-align: center;
}

/* ===== Results Section ===== */
.atc-results-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.atc-results-card {
    background: #f8f9fb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.atc-results-header {
    background: linear-gradient(135deg, #3eaf7c 0%, #2d9066 100%);
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.atc-results-header h2 {
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.atc-results-header h2 i {
    font-size: 24px;
}

.atc-quote-reference {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.atc-quote-reference .atc-label {
    opacity: 0.9;
    margin-right: 8px;
}

.atc-price-display-main {
    background: white;
    margin: 32px 40px;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.atc-price-values-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    
}

.atc-price-values-main .atc-price {
    font-size: 56px;
    font-weight: 700;
    color: #1F7A5A;
}

.atc-price-values-main .atc-separator {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 300;
}

.atc-price-label-main {
    font-size: 20px;
    color: #4a5568;
    margin-top: 8px;
    font-weight: 500;
}

.atc-price-note-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #718096;
    font-size: 15px;
}

.atc-price-note-main i {
    color: var(--primary-color);
    font-size: 16px;
}

.atc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 40px 40px 40px;
}

.atc-card-section {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.atc-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.atc-section-title i {
    color: var(--primary-color);
    font-size: 20px;
}

.atc-section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
}

.atc-route-entry {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    margin-bottom: 30px;
}



.atc-route-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Connector line - only on first route entry */
.atc-route-icon.atc-icon1::after {
    content: "X";   position: absolute;
    left: 15px; 
    top: 32px; 
    width: 2px;
    height: calc(100% + 32px); 
    background: repeating-linear-gradient(
        to bottom,
        var(--btn-color),
        var(--btn-color) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 1;
}
    
.atc-route-content {
    flex: 1;
}

.atc-route-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.atc-route-content .atc-zip-code {
    font-size: 16px;
    color: #718096;
    margin-top: 4px;
}
.distance-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 15px;
    margin-top: 8px;
}

.distance-info strong {
    color: #2d3748;
    font-weight: 600;
}

.atc-valid-until {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.atc-valid-until i {
    color: var(--primary-color);
    font-size: 18px;
}

.atc-valid-until .atc-label {
    font-size: 15px;
    color: #718096;
}

.atc-valid-until .atc-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-left: auto;
}

.atc-vehicle-type {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.atc-vehicle-details {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.atc-vehicle-badge {
    background: #edf2f7;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.atc-vehicle-badge.atc-pickup {
    background: #edf2f7;
    color: #4a5568;
    display: inline-block;
}

.atc-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.atc-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2d3748;
}

.atc-benefit-item i {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.atc-actions {
    display: flex;
    gap: 16px;
    padding: 0 40px 40px 40px;
}

.atc-actions .atc-btn {
    flex: 1;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.atc-btn-new-quote {
    background: var(--btn-primary-color);
    color: #1a2a3a;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.atc-btn-new-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.atc-actions .atc-btn-print-quote {
    border: 2px solid #1a2837;
}

.atc-btn-print-quote {
    background: white;
    color: var(--btn-color);
    border: 2px solid #1a2837;
    box-shadow: var(--shadow-sm);
}

.atc-btn-print-quote:hover {
    background: var(--primary-background);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}



/* Ultra small mobile devices (325px and below) */
@media (max-width: 325px) {
    .atc-results-header {
        padding: 20px 16px;
    }
    
    .atc-results-header h2 {
        font-size: 20px;
    }
    
    .atc-results-header h2 i {
        font-size: 18px;
    }
    
    .atc-quote-reference {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .atc-price-display-main {
        margin: 20px 16px;
        padding: 24px;
    }
    
    .atc-price-values-main .atc-price {
        font-size: 20px;
        line-height: 1.1;
    }
    
    .atc-price-values-main .atc-separator {
        font-size: 20px;
    }
    
    .atc-price-label-main {
        font-size: 13px;
    }
    
    .atc-price-note-main {
        font-size: 12px;
    }
  
    .atc-card-section {
        padding: 20px;
    }
    
    .atc-section-title {
        margin-bottom: 20px;
    }
    
    .atc-section-title h3 {
        font-size: 16px;
    }
    
    .atc-route-content h4 {
        font-size: 16px;
    }
    
    .atc-route-content .atc-zip-code {
        font-size: 14px;
    }
    
    .distance-info {
        font-size: 13px;
    }
    
    .atc-vehicle-type {
        font-size: 18px;
    }
    
    .atc-vehicle-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .atc-vehicle-badge {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .atc-benefit-item {
        font-size: 13px;
        gap: 10px;
    }
    
    .atc-actions {
        flex-direction: column;
        padding: 0 16px 24px 16px;
    }
    
    .atc-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Small mobile devices (326px to 375px) */
@media (min-width: 326px) and (max-width: 375px) {
    .atc-results-header {
        padding: 24px 20px;
    }
    
    .atc-results-header h2 {
        font-size: 22px;
    }
    
    .atc-quote-reference {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .atc-price-display-main {
        margin: 24px 20px;
        padding: 28px;
    }
    
    .atc-price-values-main .atc-price {
        font-size: 22px;
        line-height: 1.1;
    }
    
    .atc-price-values-main .atc-separator {
        font-size: 22px;
    }

    .atc-price-label-main {
        font-size: 15px;
    }

    .atc-price-note-main {
        font-size: 12px;
    }
    
  
    .atc-card-section {
        padding: 24px;
    }
    
    .atc-section-title h3 {
        font-size: 17px;
    }
    
    .atc-route-content h4 {
        font-size: 17px;
    }
    
    .atc-actions {
        flex-direction: column;
        padding: 0 20px 28px 20px;
    }
    
    .atc-btn {
        padding: 15px 28px;
    }
}

/* Medium mobile devices (376px to 430px) */
@media (min-width: 376px) and (max-width: 480px) {
    .atc-results-header {
        padding: 24px 24px;
    }
    
    .atc-price-display-main {
        margin: 24px 24px;
        padding: 32px;
    }
    
    .atc-price-values-main .atc-price {
        font-size: 25px;
        line-height: 1.1;
    }
    
    .atc-price-values-main .atc-separator {
        font-size: 28px;
    }

    .atc-price-label-main {
        font-size: 17px;
    }

    .atc-price-note-main {
        font-size: 13px;
    }

    .atc-actions {
        flex-direction: column;
        padding: 0 24px 32px 24px;
    }
}

/* Tablet devices (431px to 768px) */
@media (min-width: 431px) and (max-width: 768px) {
    .atc-results-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 28px 24px;
    }
    
    .atc-results-header h2 {
        justify-content: center;
    }
    
    .atc-price-display-main {
        margin: 28px 24px;
        padding: 32px;
    }
    
    .atc-price-values-main .atc-price {
        font-size: 44px;
    }
    
    .atc-price-values-main .atc-separator {
        font-size: 36px;
    }
    
    
    .atc-actions {
        padding: 0 24px 36px 24px;
    }
}

/* Small laptop (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .atc-results-section {
        max-width: 900px;
    }
    
    .atc-results-header {
        padding: 28px 32px;
    }
    
    .atc-price-display-main {
        margin: 28px 32px;
        padding: 36px;
    }
    
    .atc-results-grid {
        gap: 28px;
        padding: 0 32px 40px 32px;
    }
    
    .atc-card-section {
        padding: 28px;
    }
    
    .atc-actions {
        padding: 0 32px 40px 32px;
    }
}

/* Desktop (1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .atc-results-section {
        max-width: 1100px;
    }
    
    .atc-results-header {
        padding: 32px 40px;
    }
    
    .atc-price-display-main {
        margin: 32px 40px;
        padding: 40px;
    }
    
    .atc-results-grid {
        gap: 32px;
        padding: 0 40px 40px 40px;
    }
}

/* Large desktop (1441px to 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
    .atc-results-section {
        max-width: 1400px;
    }
    
    .atc-results-header {
        padding: 40px 48px;
    }
    
    .atc-results-header h2 {
        font-size: 32px;
    }
    
    .atc-results-header h2 i {
        font-size: 28px;
    }
    
    .atc-quote-reference {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .atc-price-display-main {
        margin: 40px 48px;
        padding: 48px;
    }
    
    .atc-price-values-main .atc-price {
        font-size: 64px;
    }
    
    .atc-price-values-main .atc-separator {
        font-size: 56px;
    }
    
    .atc-price-label-main {
        font-size: 24px;
    }
    
    .atc-results-grid {
        gap: 40px;
        padding: 0 48px 48px 48px;
    }
    
    .atc-card-section {
        padding: 40px;
    }
    
    .atc-section-title h3 {
        font-size: 20px;
    }
    
    .atc-route-content h4 {
        font-size: 20px;
    }
    
    .atc-vehicle-type {
        font-size: 24px;
    }
    
    .atc-actions {
        padding: 0 48px 48px 48px;
    }
    
    .atc-btn {
        padding: 20px 40px;
        font-size: 18px;
    }
}

/* Extra large screens (1921px and above) */
@media (min-width: 1921px) {
    .atc-results-section {
        max-width: 1600px;
    }
    
    .atc-results-header {
        padding: 48px 56px;
    }
    
    .atc-results-header h2 {
        font-size: 36px;
    }
    
    .atc-results-header h2 i {
        font-size: 32px;
    }
    
    .atc-quote-reference {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .atc-price-display-main {
        margin: 48px 56px;
        padding: 56px;
    }
    
    .atc-price-values-main .atc-price {
        font-size: 72px;
    }
    
    .atc-price-values-main .atc-separator {
        font-size: 64px;
    }
    
    .atc-price-label-main {
        font-size: 28px;
    }
    
    .atc-price-note-main {
        font-size: 18px;
    }
    
    .atc-results-grid {
        gap: 48px;
        padding: 0 56px 56px 56px;
    }
    
    .atc-card-section {
        padding: 48px;
    }
    
    .atc-section-title h3 {
        font-size: 22px;
    }
    
    .atc-section-title i {
        font-size: 24px;
    }
    
    .atc-route-content h4 {
        font-size: 22px;
    }
    
    .atc-route-content .atc-zip-code {
        font-size: 18px;
    }
    
    .atc-vehicle-type {
        font-size: 26px;
    }
    
    .atc-vehicle-badge {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .atc-benefit-item {
        font-size: 18px;
    }
    
    .atc-benefit-item i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .atc-actions {
        padding: 0 56px 56px 56px;
    }
    
    .atc-btn {
        padding: 24px 48px;
        font-size: 20px;
    }
}
/* ===== Calculator Disclaimer ===== */
.atc-calc-disclaimer {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.atc-disclaimer {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin: 0;
}

.atc-disclaimer i {
    color: var(--warning-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Responsive Design ===== */

/* Large Desktop & TV */
@media (min-width: 1921px) {
    .atc-container {
        width: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding: 0 var(--spacing-2xl);
    }

    .atc-hero-section {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .atc-hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .atc-form-row {
        grid-template-columns: repeat(2, minmax(3, 1fr));
    }
}

/* Standard Desktop */
@media (max-width: 1440px) {
    .atc-container {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .atc-hero-title {
        font-size: var(--font-size-3xl);
    }
}

/* Laptop */
@media (max-width: 1024px) {
    .max-container {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .side-menu,
    .atc-container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .side-menu {
        flex: 1 1 auto;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .atc-container {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0 var(--spacing-lg) var(--spacing-xl);
    }
    
    .atc-hero-section {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: var(--spacing-xl);
    }
    
    .atc-hero-content {
        padding-right: var(--spacing-lg);
        text-align: left;
    }

    .atc-hero-title {
        font-size: var(--font-size-3xl);
    }

    .atc-hero-description {
        font-size: var(--font-size-lg);
    }
    
    .atc-image-placeholder {
        max-width: 360px;
        height: 180px;
        margin: 0;
        font-size: 3rem;
    }
    
   .atc-form-row {
        grid-template-columns: repeat(2, minmax(3, 1fr));
    }   
    
    .atc-options-group {
        grid-template-columns: 1fr;
    }
    
    .route-visual {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .distance-container {
        order: 3;
        margin: var(--spacing-md) 0;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .atc-container {
        padding: 0 var(--spacing-lg);
    }
    .atc-hero-title {
            font-size: var(--font-size-2xl);
    }
        
    .atc-hero-description {
        font-size: var(--font-size-base);
    }
  
    .atc-card-header h2,
    .atc-results-header h2 {
        font-size: var(--font-size-xl);
    }

    .atc-card-header {
        text-align: center;
    }

    .atc-card-header h2 {
        justify-content: center;
    }

    .atc-form-section:first-of-type .atc-form-row,
    .atc-form-section:nth-of-type(2) .atc-form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .atc-form-section:first-of-type .atc-input-group,
    .atc-form-section:nth-of-type(2) .atc-input-group {
        flex-direction: row;
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .atc-form-section:first-of-type .atc-input-icon,
    .atc-form-section:nth-of-type(2) .atc-input-icon {
        width: 44px;
        height: 44px;
        margin-top: 24px;
    }
    
    .atc-input-group {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .atc-input-icon {
        width: 100%;
        height: 44px;
        margin-top: 0;
    }
    
    .atc-section-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .results-content .atc-actions {
        flex-direction: column;
    }
    
    .atc-btn {
        width: 100%;
    }
}


/* Responsive Design for Results Section */

/* Laptop (1024px and below) */
@media (max-width: 1024px) {
    .atc-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .left-column,
    .right-column {
        grid-column: 1;
    }
    
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .atc-results-grid {
        padding: var(--spacing-lg);
    }
    
    .atc-card-section {
        padding: var(--spacing-lg);
    }

    .atc-left-card-section {
        position: relative;
    }

    .atc-route-icon.atc-icon1::after{
        height: calc(100% + 190px); 
    }

    .atc-valid-until{
        position: absolute;
        bottom: var(--spacing-lg);
        left: var(--spacing-lg);
        right: var(--spacing-lg);
    }

    .atc-route-end{
        position: absolute;
        bottom: 70px;
        left: var(--spacing-lg);
        right: var(--spacing-lg);
    }
    
    .route-visual {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .distance-container {
        order: 3;
        margin: var(--spacing-md) 0;
    }

    .atc-card-section .atc-vehicle-details {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }

    .atc-card-section .atc-vehicle-badge {
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .atc-price {
        font-size: var(--font-size-3xl);
    }
}

/* Mobile Large (430px and below) */
@media (max-width: 480px) {
    .atc-results-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .atc-results-grid {
        padding: var(--spacing-md);
        gap: var(--spacing-lg);
    }
    
    .atc-card-section {
        padding: var(--spacing-md);
    }
    
    .route-visual {
        gap: var(--spacing-md);
    }
    
    .location {
        gap: var(--spacing-sm);
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .distance-value {
        min-width: 100px;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .distance-value span {
        font-size: var(--font-size-lg);
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .atc-price {
        font-size: var(--font-size-2xl);
    }
    
    .atc-actions {
        flex-direction: column;
        padding: var(--spacing-lg);
    }
    
    .atc-btn {
        width: 100%;
    }
}

/* Mobile Medium (375px and below) */
@media (max-width: 375px) {
    .atc-results-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .atc-section-title h3 {
        font-size: var(--font-size-base);
    }
    
    .atc-section-title i {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
    }
    
    .atc-price {
        font-size: var(--font-size-xl);
    }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
    .atc-results-grid {
        padding: var(--spacing-sm);
    }
    
    .atc-card-section {
        padding: var(--spacing-sm);
    }
    
    .location-icon {
        width: 36px;
        height: 36px;
    }
    
    .distance-value {
        min-width: 80px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .distance-value span {
        font-size: var(--font-size-base);
    }
    
    .atc-price-label {
        font-size: var(--font-size-base);
    }
    
    .atc-price {
        font-size: var(--font-size-lg);
    }
}

/* Print Styles */
@media print {
    .atc-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .atc-actions {
        display: none;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .atc-container {
        padding: 0 var(--spacing-md);
    }
    .atc-hero-section {
        display: block;
        margin-bottom: var(--spacing-xl);
        text-align: center;
    }
    
    .atc-hero-content {
        padding-right: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .atc-hero-title {
        font-size: var(--font-size-xl);
    }

    .atc-hero-image {
        display: none;
    }

    .atc-image-placeholder {
        display: none;
    }
    
    .atc-calculator-form {
        padding: var(--spacing-lg);
    }

   .atc-form-section:first-of-type .atc-form-row, .atc-form-section:nth-of-type(2) .atc-form-row  {
        grid-template-columns: 1fr;
    }

    .atc-form-actions{
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .atc-card-header,
    .atc-results-header {
        padding: var(--spacing-lg);
    }
    
    .atc-results-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .atc-help-text{
        display: none;
    }

    .atc-price {
        font-size: var(--font-size-3xl);
    }
}

/* Mobile Medium */
@media (max-width: 375px) {
.atc-hero-title {
        font-size: var(--font-size-lg);
    }
    
    .atc-section-header h3 {
        font-size: var(--font-size-lg);
    }
    
    .atc-price {
        font-size: var(--font-size-2xl);
    }
}

/* Mobile Small */
@media (max-width: 320px) {
    .atc-container {
        padding: 0 var(--spacing-sm);
    }
    
    .atc-calculator-form,
    .results-content {
        padding: var(--spacing-md);
    }
    
    .atc-card-header,
    .atc-results-header {
        padding: var(--spacing-md);
    }
    
    .atc-btn {
        padding: var(--spacing-md);
    }
    
    .atc-price {
        font-size: var(--font-size-xl);
    }
}

/* Final override: keep results cards stacked on mobile */
@media (max-width: 480px) {
    .atc-results-grid {
        grid-template-columns: 1fr;
    }

    .atc-route-icon.atc-icon1::after {
        height: calc(100% + 32px);
    }

    .atc-route-end {
        position: static;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .atc-valid-until {
        position: static;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 12px;
    }
}


/* ===== Print Styles ===== */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .atc-hero-section,
    .atc-form-actions,
    .atc-actions {
        display: none !important;
    }
    
    .atc-calculator-card,
    .atc-results-card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
        page-break-inside: avoid;
    }
    
    .atc-container {
        max-width: 100%;
        padding: 0;
    }
    
    .atc-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    a {
        text-decoration: underline;
    }
    
    .atc-results-header {
        background: white !important;
        color: black !important;
        border-bottom: 2px solid #000;
    }
}



/* ===== Animation Control for Mobile ===== */
@media (max-width: 1024px) {
    :root {
        --animation-speed: 0s;
    }
    
    .atc-calculator-card:hover {
        transform: none;
    }
    
    .atc-btn-calculate:hover,
    .atc-btn-new-quote:hover,
    .atc-btn-reset:hover {
        transform: none;
    }
    
    .atc-option-card:hover {
        border-color: var(--gray-200);
        background: var(--gray-50);
    }
}

/* ===== Transport Cards - Minimal Design ===== */
.atc-transport-type-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
}

.atc-transport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.atc-transport-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    height: 200px;
}

.atc-transport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-bottom: var(--secondary-color) 10px solid;
}

.atc-transport-card.atc-active {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), var(--shadow-md);
}

.atc-card-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.atc-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-normal);
}

.atc-open-transport::before {
    background-image: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)), 
                      url("../images/open-transport-calc.webp");
}

.atc-enclosed-transport::before {
    background-image: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)), 
                      url("../images/enclosed-transport-calc.webp");
}

.atc-transport-card:hover .atc-card-image::before {
    transform: scale(1.05);
}

.atc-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
                rgba(0,0,0,0.1) 0%, 
                rgba(0,0,0,0.6) 100%);
}

.atc-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    color: white;
    z-index: 2;
}

.atc-card-check {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.atc-transport-card.atc-active .atc-card-check {
    opacity: 1;
    transform: scale(1);
}

.atc-card-content h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.atc-card-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    display: inline-block;
    backdrop-filter: blur(4px);
}

/* ===== Enhanced 3D Effects ===== */
.atc-option-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}



/* ===== Button Enhancements =====

.atc-btn-calculate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.atc-btn-calculate:hover::before {
    left: 100%;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .atc-transport-cards {
        grid-template-columns: 1fr;
    }
    
    .atc-transport-card {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .atc-transport-card {
        height: 140px;
    }
    
    .atc-card-content h4 {
        font-size: var(--font-size-lg);
    }
    
    .atc-card-content {
        padding: var(--spacing-md);
    }
}

/* ===== Animation Control for Mobile ===== */
@media (max-width: 1024px) {

    
    .atc-transport-card:hover {
        transform: none;
    }
    
    .atc-transport-card:hover .atc-card-image::before {
        transform: none;
    }
    
    .atc-btn-calculate:hover::before {
        left: -100%;
    }
}


.atc-options-row {
    margin: 24px 0;
}

.atc-options-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.atc-option-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.atc-option-card:hover {

    background: #fffbed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.atc-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.atc-custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    margin-right: 16px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.atc-checkbox-label input[type="checkbox"] {
    display: none;
}

.atc-checkbox-label input[type="checkbox"]:checked + .atc-custom-checkbox {
    background: var(--primary-background);
    border: none;
}

.atc-checkbox-label input[type="checkbox"]:checked + .atc-custom-checkbox::after {
    content: "\2713";
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.atc-option-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.atc-option-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: var(--primary-color);
}

.atc-option-icon i {
    font-size: 20px;
}

.atc-option-text {
    flex: 1;
}

.atc-option-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.atc-option-text p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.atc-option-badge {
    flex-shrink: 0;
}

.atc-badge {
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Small mobile devices */
@media (max-width: 480px) {
    .atc-option-card {
        padding: 12px;
    }
    
    .atc-options-group {
        gap: 12px;
    }
    
    .atc-option-content {
        gap: 10px;
    }
    
    .atc-custom-checkbox {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .atc-option-text h4 {
        font-size: 14px;
    }
    
    .atc-option-text p {
        font-size: 12px;
    }
}



/* Tablet devices */
@media (max-width: 768px) {
    .atc-option-content {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .atc-option-card {
        padding: 14px;
    }
    
    .atc-custom-checkbox {
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }
    
    .atc-option-icon {
        width: 40px;
        height: 40px;
    }
    
    .atc-option-icon i {
        font-size: 16px;
    }
    
    .atc-option-text h4 {
        font-size: 15px;
    }
    
    .atc-option-text p {
        font-size: 13px;
    }
    
    /* Remove hover effects on mobile */
    .atc-option-card:hover {
        border-color: #e9ecef;
        background: #f8f9fa;
        transform: none;
        box-shadow: none;
    }
    
    /* Remove option-badge on mobile */
    .atc-option-badge {
        display: none;
    }
}

/* Laptop devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .atc-options-row {
        grid-template-columns: 1fr;
    }

    .atc-options-group {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .atc-option-content {
        gap: 12px;
    }
    
    .atc-option-icon {
        width: 44px;
        height: 44px;
    }
    
    .atc-option-icon i {
        font-size: 18px;
    }
    
    .atc-option-text h4 {
        font-size: 15px;
    }
    
    .atc-option-text p {
        font-size: 13px;
    }
}

@media (min-width: 1921px) {
  .atc-options-row {
    grid-template-columns: 1fr;
  }

  .atc-options-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .atc-transport-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atc-transport-card {
    height: 240px;
  }
}

.atc-select-wrapper {
  position: relative;
  width: 100%;
}


.atc-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.25s ease;
  font-size: 14px;
  color: #667085;
  pointer-events: none;
}

/* Focus state */
.atc-select-wrapper select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Optional rotation: rotate arrow when the wrapper or its children have focus */
.atc-select-wrapper:focus-within .atc-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Disabled state */
.atc-select-wrapper select:disabled {
  background-color: #f2f4f7;
  color: #98a2b3;
}

.atc-select-wrapper select:disabled + .atc-select-arrow {
  color: #98a2b3;
}

/* Only affects dropdown scrollbar in some browsers */
.atc-select-wrapper select {
  scrollbar-width: thin;          /* Firefox */
  scrollbar-color: #7cb0ee transparent;
}

/* WebKit browsers */
.atc-select-wrapper select::-webkit-scrollbar {
  width: 4px;
}

.atc-select-wrapper select::-webkit-scrollbar-track {
  background: transparent;
}

.atc-select-wrapper select::-webkit-scrollbar-thumb {
  background-color: #6286fc;
  border-radius: 10px;
}
