/* ----- UCR Page ----- */
.ucr-section { background-color: var(--secondary-color); padding: 80px 0; }
.ucr-card { background: white; border-radius: 15px; border-left: 5px solid var(--accent-color); box-shadow: 0 5px 20px var(--shadow-color); padding: 40px; max-width: 800px; margin: 0 auto; }
.ucr-card ul { list-style: none; margin: 20px 0; }
.ucr-card li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.ucr-card li::before { content: '✓'; color: var(--primary-color); font-weight: bold; position: absolute; left: 0; }
.ucr-card .btn-primary { margin-top: 20px; padding: 15px 30px; font-size: 1.1rem; }
/* ===================
   UCR LOOKUP SECTION 
   =================== */

.ucr-lookup-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Roboto', 'Poppins', sans-serif; /* Ensures clean font matching image */
}

/* Big Title: "UCR Registration" */
.ucr-main-title {
    font-size: 2.5rem; /* Large and bold */
    font-weight: 600;
    color: #05143a;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Subtitle Text */
.ucr-main-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #0a266b;
    margin-bottom: 40px;
}

.ucr-main-subtitle strong {
    font-weight: 700;
}

/* =========================================
   THE BOX DESIGN
   ========================================= */

.ucr-lookup-box {
    background-color: #fff; /* White background */
    /* The light blue border */
    border: 2px solid #8ecbf9; 
    /* The specific blue glow shadow behind the box */
    box-shadow: 0 10px 25px rgba(58, 149, 219, 0.25);
    max-width: 480px;
    margin: 0 auto 40px auto; /* Centered with bottom margin */
    padding: 40px 50px;
    position: relative;
}

/* "Enter USDOT Number To Start" */
.box-title {
    font-size: 1.35rem;
    font-weight: 550;
    color: #222;
    margin-bottom: 25px;
}

.ucr-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Input Field */
.ucr-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px; /* Slight roundness */
    outline: none;
    color: #555;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

.ucr-input::placeholder {
    color: #aaa;
}

.ucr-input:focus {
    border-color: #337ab7;
}

/* Button: "GET STARTED" */
.ucr-btn-start {
    background-color: rgba(10, 36, 99, 0.85); /* Exact image blue */
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 0;
    border: none;
    border-radius: 30px; /* Fully rounded pill shape */
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    width: 100%;
}

.ucr-btn-start:hover {
    background-color: rgba(47, 79, 154, 0.85); /* Slightly darker on hover */
}

/* Footer Note: "MCS-150 Update" */
.ucr-update-note {
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
}

.ucr-update-note a {
    color: #337ab7; /* Blue link color */
    text-decoration: none;
}

.ucr-update-note a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .ucr-main-title {
        font-size: 2.2rem;
    }
    .ucr-lookup-box {
        padding: 30px 20px;
        width: 100%;
    }
}
/* =========================================
   NEW UCR INFO SECTIONS
   ========================================= */

.ucr-info-sections {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.ucr-info-sections .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Common box styling with left red shadow */
.ucr-info-box,
.ucr-fees-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Left red shadow effect */
.left-shadow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, #ff0000, #ff4444);
    box-shadow: -5px 0 15px rgba(255, 0, 0, 0.3);
}

.ucr-info-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ucr-info-content.reverse {
    flex-direction: row-reverse;
}

.ucr-text {
    flex: 1;
}

.ucr-text h2 {
    color: #05143a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.ucr-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.ucr-text strong {
    color: #0a266b;
}

.ucr-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ucr-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =========================================
   UCR FEES SECTION
   ========================================= */

.ucr-fees-content h2 {
    color: #05143a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.ucr-fees-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.fees-table-title {
    color: #0a266b;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.ucr-fees-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.ucr-fees-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 300px;
}

.ucr-fees-table thead {
    background-color: #0a266b;
}

.ucr-fees-table th {
    color: white;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    font-size: 1.1rem;
}

.ucr-fees-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.ucr-fees-table tbody tr:last-child {
    border-bottom: none;
}

.ucr-fees-table td {
    padding: 16px 20px;
    color: #333;
    font-size: 1rem;
}

.ucr-fees-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.ucr-fees-table tbody tr:hover {
    background-color: #eef5ff;
}

.contact-cell {
    color: #ff0000 !important;
    font-weight: 600;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 992px) {
    .ucr-info-content,
    .ucr-info-content.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .ucr-image {
        width: 100%;
    }
    
    .ucr-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .ucr-info-box,
    .ucr-fees-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .ucr-text h2,
    .ucr-fees-content h2 {
        font-size: 1.5rem;
    }
    
    .ucr-fees-table th,
    .ucr-fees-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ucr-info-sections {
        padding: 40px 15px;
    }
    
    .ucr-image img {
        max-width: 100%;
    }
    
    .ucr-fees-table {
        font-size: 0.9rem;
    }
}
/* =========================================
   REGISTER UCR BUTTON (UPDATED)
   ========================================= */

/* Container to center the button inside the fees section */
.ucr-btn-container {
    text-align: center;
    margin-top: 40px; /* Space between table and button */
    margin-bottom: 20px;
}

/* Button Styles - No Blinking */
.ucr-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0a266d;
    color: white;
    font-size: 1.2rem;
    font-weight: 600; /* Made slightly bolder for visibility */
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover effect */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Subtle shadow */
}

/* Hover Effects */
.ucr-register-btn:hover {
    background: #173581;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.ucr-register-btn:active {
    transform: translateY(-1px);
}

/* Icon */
.ucr-register-btn i {
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .ucr-register-btn {
        width: 100%; /* Full width on mobile */
        padding: 15px 20px;
    }
}