/* ============================================
   DS CARTAGE - QUOTE PAGE STYLESHEET
   Contains all styles needed for quote.html
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --orange-primary: #D68910;
    --orange-vibrant: #E69A1A;
    --orange-light: #F0AC1F;
    --orange-glow: rgba(214, 137, 16, 0.3);
    
    --dark-primary: #0F0F0F;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #2A2A2A;
    
    --gray-light: #E0E0E0;
    --gray-medium: #999;
    --gray-dark: #666;
    
    --white: #FFFFFF;
    --green-whatsapp: #25D366;
    
    --font-display: 'Bebas Neue', cursive;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--orange-glow);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-primary);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loader-logo-ds {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange-primary);
    letter-spacing: 12px;
    line-height: 1;
    margin-bottom: -10px;
    text-shadow: 0 0 30px var(--orange-glow);
}

.loader-logo-cartage {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-vibrant);
    letter-spacing: 8px;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-primary);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.loader-truck-container {
    position: relative;
    width: 300px;
    height: 100px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--dark-tertiary);
    border-radius: 2px;
}

.loader-road::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--orange-primary) 0px,
        var(--orange-primary) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadScroll 1s linear infinite;
}

@keyframes roadScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-40px); }
}

.loader-truck {
    position: absolute;
    bottom: 4px;
    left: -80px;
    width: 80px;
    height: 50px;
    animation: truckDrive 3s ease-in-out infinite;
}

@keyframes truckDrive {
    0% { left: -80px; }
    100% { left: 100%; }
}

.loader-truck-bed {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 45px;
    height: 28px;
    background: linear-gradient(to right, var(--orange-primary), var(--orange-vibrant));
    border: 2px solid var(--orange-light);
    border-radius: 3px;
}

.loader-truck-bed::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--orange-light);
    border-radius: 2px 2px 0 0;
}

.loader-truck-cab {
    position: absolute;
    bottom: 18px;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(to right, var(--orange-vibrant), var(--orange-primary));
    border: 2px solid var(--orange-light);
    border-radius: 3px 3px 0 0;
}

.loader-truck-cab::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 12px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 2px;
}

.loader-wheel {
    position: absolute;
    bottom: 0;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #666, #2a2a2a);
    border: 3px solid #444;
    border-radius: 50%;
    animation: wheelSpin 0.5s linear infinite;
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
}

.loader-wheel-front {
    right: 8px;
}

.loader-wheel-rear {
    left: 15px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--orange-primary);
    transition: var(--transition-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.brand-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
}

.brand-icon svg {
    width: 64px;
    height: 64px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #00D4FF;
    letter-spacing: 2px;
}

.brand-tag {
    font-size: 0.7rem;
    color: var(--gray-medium);
    letter-spacing: 3px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--orange-primary);
    transition: var(--transition-medium);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--orange-primary);
}

/* ============================================
   HERO SECTION (Quote Page)
   ============================================ */
.header {
    position: relative;
}

.quote-page-header {
    min-height: auto;
}

.hero-diagonal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-primary);
    overflow: hidden;
    padding-bottom: 150px;
}

.quote-hero-diagonal {
    padding: 120px 0 60px !important;
    min-height: 40vh !important;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 120px;
}

.quote-hero-diagonal .hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-hero-diagonal .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--orange-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.label-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.quote-hero-diagonal .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--orange-primary);
    text-shadow: 0 0 40px var(--orange-glow);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 500px;
}

.quote-hero-diagonal .hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.quote-form-section {
    padding: 40px 0 80px !important;
    margin-top: 0 !important;
    background: var(--dark-primary);
    min-height: 100vh;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.form-section-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.section-title-orange {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--orange-primary);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.form-row {
    margin-bottom: 1rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255, 140, 0, 0.1);
}

.form-field label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray-medium);
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 1rem;
    background: transparent !important;
    border: none !important;
}

.form-field input:focus + label,
.form-field select:focus + label,
.form-field textarea:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:not(:placeholder-shown) + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--orange-primary);
    background: var(--dark-primary);
    padding: 0 0.5rem;
}

.form-field textarea {
    resize: vertical;
}

.form-inline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.label-orange {
    font-size: 1.05rem;
    color: var(--orange-primary);
    font-weight: 600;
}

.radio-group-inline {
    display: flex;
    gap: 2rem;
}

.radio-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--white);
    font-size: 1rem;
}

.radio-inline input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-option:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--orange-primary);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.checkbox-option:has(input:checked) {
    background: rgba(214, 137, 16, 0.15);
    border-color: var(--orange-primary);
}

.checkbox-option:has(input:checked) span {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Load Types Field Fix */
#loadTypes {
    padding-top: 1.5rem;
}

#loadTypes::placeholder {
    opacity: 0;
}

#loadTypes:focus::placeholder {
    opacity: 0.6;
}

/* Site Blocks */
.site-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.site-label {
    font-size: 1.1rem;
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-header-with-remove {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-remove-site {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 6px;
    color: #ff4d4d;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove-site:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: #ff4d4d;
    transform: translateY(-2px);
}

.btn-remove-site svg {
    width: 14px;
    height: 14px;
}

.btn-maps-full {
    width: 100%;
    padding: 0.75rem;
    background: var(--orange-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin: 0.75rem 0;
    transition: all 0.3s;
}

.btn-maps-full:hover {
    background: var(--orange-vibrant);
    transform: translateY(-2px);
}

.btn-add-site {
    width: 100%;
    padding: 0.85rem;
    background: rgba(214, 137, 16, 0.15);
    border: 2px dashed var(--orange-primary);
    border-radius: 8px;
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-add-site:hover {
    background: rgba(214, 137, 16, 0.25);
    border-style: solid;
    transform: translateY(-2px);
}

.btn-submit-quote {
    width: 100%;
    padding: 1rem;
    background: var(--orange-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-submit-quote:hover {
    background: var(--orange-vibrant);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 137, 16, 0.4);
}

.form-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   T&C POPUP
   ============================================ */
.tnc-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.tnc-popup.show {
    display: flex;
}

.tnc-box {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    cursor: default;
}

@keyframes slideIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.tnc-header {
    background: var(--dark-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--orange-primary);
}

.tnc-header h3 {
    margin: 0;
    color: var(--orange-primary);
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.tnc-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.tnc-content {
    padding: 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
    cursor: default;
}

.tnc-content::-webkit-scrollbar {
    width: 8px;
}

.tnc-content::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 10px;
}

.tnc-content h4 {
    color: var(--dark-primary);
    margin: 1rem 0 0.5rem 0;
    font-family: var(--font-heading);
}

.tnc-content h4:first-child {
    margin-top: 0;
}

.tnc-content p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #333;
}

.tnc-highlight {
    color: var(--orange-primary);
    font-weight: 700;
}

.tnc-footer {
    padding: 1.5rem;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.tnc-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.tnc-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--orange-primary);
}

.tnc-buttons {
    display: flex;
    gap: 1rem;
}

.tnc-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.tnc-decline {
    background: #666;
    color: white;
}

.tnc-decline:hover {
    background: #555;
}

.tnc-accept {
    background: #999;
    color: white;
    opacity: 0.5;
    cursor: not-allowed;
}

.tnc-accept.enabled {
    background: var(--orange-primary);
    opacity: 1;
    cursor: pointer;
}

.tnc-accept.enabled:hover {
    background: var(--orange-vibrant);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon svg {
    width: 56px;
    height: 56px;
}

.footer-desc {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--orange-primary);
    font-style: italic;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--orange-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--orange-primary);
}

.footer-contact li {
    color: var(--gray-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--gray-medium);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: var(--transition-medium);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .quote-hero-diagonal {
        padding: 100px 0 40px !important;
        min-height: 35vh !important;
    }
    
    .quote-hero-diagonal .hero-title {
        font-size: 2.5rem;
    }
    
    .quote-form-section {
        padding: 20px 0 60px !important;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .form-section-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-inline-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .radio-group-inline {
        gap: 1rem;
    }
    
    .site-header-with-remove {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .btn-remove-site {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   IMPROVED CHECKBOX & RADIO STYLING
   ============================================ */

/* Better checkbox styling */
.checkbox-option input[type="checkbox"],
.radio-inline input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
    filter: brightness(1.2);
}

/* Improve checkbox containers */
.checkbox-option {
    background: rgba(255, 140, 0, 0.08) !important;
    border: 2px solid rgba(255, 140, 0, 0.3) !important;
    transition: all 0.3s;
}

.checkbox-option:hover {
    background: rgba(255, 140, 0, 0.15) !important;
    border-color: var(--orange-primary) !important;
    transform: translateY(-2px);
}

.checkbox-option:has(input:checked) {
    background: rgba(214, 137, 16, 0.25) !important;
    border-color: var(--orange-primary) !important;
    border-width: 2px !important;
}

/* Radio button improvements */
.radio-inline {
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 0, 0.08);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
}

.radio-inline:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--orange-primary);
}

.radio-inline:has(input:checked) {
    background: rgba(214, 137, 16, 0.25);
    border-color: var(--orange-primary);
    border-width: 2px;
}

/* ============================================
   IMPROVED FIELD LABEL STYLING
   ============================================ */

/* Make floating labels less intrusive */
.form-field label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 140, 0, 0.6) !important;
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    background: transparent !important;
    border: none !important;
    font-weight: 500;
}

.form-field input:focus + label,
.form-field select:focus + label,
.form-field textarea:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:not([value=""]) + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--orange-primary) !important;
    background: var(--dark-primary) !important;
    padding: 0 0.4rem;
    font-weight: 600;
}

/* Better placeholder styling */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Improve label colors for better visibility */
.label-orange,
.section-title-orange {
    color: var(--orange-vibrant) !important;
    text-shadow: 0 0 10px rgba(214, 137, 16, 0.3);
}

/* Make section boxes more prominent */
.form-section-box {
    background: rgba(255, 140, 0, 0.03) !important;
    border: 1px solid rgba(255, 140, 0, 0.2) !important;
}

.form-section-box:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

/* ============================================
   URGENT FIXES - READABILITY & VISIBILITY
   ============================================ */

/* Fix select dropdown - make text visible */
.form-field select {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border: 2px solid rgba(255, 140, 0, 0.3) !important;
}

.form-field select option {
    background: #1a1a1a !important;
    color: white !important;
    padding: 0.75rem !important;
}

/* Fix checkbox text visibility */
.checkbox-option {
    background: rgba(255, 140, 0, 0.12) !important;
    border: 2px solid rgba(255, 140, 0, 0.4) !important;
}

.checkbox-option span {
    color: white !important;
    font-weight: 500 !important;
}

.checkbox-option:has(input:checked) span {
    color: var(--orange-primary) !important;
    font-weight: 700 !important;
}

/* Fix radio button text */
.radio-inline {
    background: rgba(255, 140, 0, 0.12) !important;
    border: 2px solid rgba(255, 140, 0, 0.4) !important;
}

.radio-inline span {
    color: white !important;
    font-weight: 500 !important;
}

.radio-inline:has(input:checked) {
    background: rgba(214, 137, 16, 0.3) !important;
    border-color: var(--orange-primary) !important;
}

.radio-inline:has(input:checked) span {
    color: var(--orange-primary) !important;
    font-weight: 700 !important;
}

/* Fix mixed load services text */
#serviceCheckboxes .checkbox-option {
    background: rgba(255, 140, 0, 0.12) !important;
}

#serviceCheckboxes .checkbox-option span {
    color: white !important;
}
/* ============================================
   FURNITURE ITEM ROWS
   ============================================ */
.furniture-item-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.furniture-item-row .item-fields {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.furniture-item-row .item-name-field {
    flex: 3;
}

.furniture-item-row .item-qty-field {
    flex: 1;
    min-width: 70px;
}

.furniture-item-row input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark-tertiary);
    border: 2px solid #444;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.furniture-item-row input:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.furniture-item-row input::placeholder {
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.btn-remove-item {
    background: rgba(255, 60, 60, 0.15);
    border: 2px solid rgba(255, 60, 60, 0.3);
    border-radius: 8px;
    color: #ff4444;
    padding: 0.6rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-remove-item:hover {
    background: rgba(255, 60, 60, 0.3);
    border-color: #ff4444;
}

.btn-add-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    background: rgba(214, 137, 16, 0.1);
    border: 2px dashed var(--orange-primary);
    border-radius: 10px;
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 0.5rem;
}

.btn-add-item:hover {
    background: rgba(214, 137, 16, 0.2);
    border-color: var(--orange-vibrant);
}

/* Photo hint */
.photo-hint {
    color: var(--gray-medium);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(214, 137, 16, 0.05);
    border-left: 3px solid var(--orange-primary);
    border-radius: 0 6px 6px 0;
}

/* Date input styling */
input[type="date"] {
    color-scheme: dark;
}

/* Mobile fixes for furniture items */
@media (max-width: 600px) {
    .furniture-item-row .item-fields {
        flex-direction: row;
    }
    .furniture-item-row .item-name-field {
        flex: 2;
    }
    .furniture-item-row .item-qty-field {
        flex: 1;
        min-width: 60px;
    }
    .furniture-item-row input {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
}