   :root {
        --primary-color: #2eca7f;
        --primary-light: #e6f9f2;
        --primary-dark: #24a86a;
        --secondary-color: #1d4ed8;
        --light-gray: #f8f9fa;
        --dark-gray: #343a40;
    }
    
    .card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .card-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-bottom: none;
        padding: 1.5rem 2rem;
    }
    
    .card-body {
        padding: 2rem;
    }
    
    .form-label {
        font-weight: 600;
        color: var(--dark-gray);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .form-control, .form-select {
        border-radius: 8px;
        padding: 0.75rem 1rem;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(46, 202, 127, 0.25);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border: none;
        border-radius: 10px;
        padding: 0.8rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-primary:hover, .btn-primary:focus {
        background: linear-gradient(135deg, var(--primary-dark), #1e8a5a);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(46, 202, 127, 0.3);
    }
    
    h4.border-bottom {
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--primary-color) !important;
        color: var(--dark-gray);
        position: relative;
        margin-bottom: 1.5rem;
    }
    
    h4.border-bottom:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    .feature-card {
        background: var(--light-gray);
        border-radius: 12px;
        padding: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .form-section {
        background: #fff;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }
    
    .cost-card {
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    
    .cost-card:hover {
        transform: translateY(-5px);
    }
    
    .cost-card .card-body {
        padding: 1.5rem;
    }
    
    .cost-card .card-title {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    
    .total-cost-card {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    }
    
    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .form-check-input:focus {
        box-shadow: 0 0 0 0.25rem rgba(46, 202, 127, 0.25);
    }
    
    .step-indicator {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        counter-reset: step;
    }
    
    .step {
        flex: 1;
        text-align: center;
        position: relative;
        padding-top: 2.5rem;
    }
    
    .step:before {
        counter-increment: step;
        content: counter(step);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: var(--primary-light);
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid var(--primary-color);
        z-index: 2;
    }
    
    .step.active:before {
        background: var(--primary-color);
        color: white;
    }
    
    .step:after {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #e9ecef;
        z-index: 1;
    }
    
    .step:last-child:after {
        display: none;
    }
    
    .step-label {
        font-weight: 600;
        color: var(--dark-gray);
    }
    
    .feature-icon {
        background: var(--primary-light);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        color: var(--primary-color);
        font-size: 1.5rem;
    }
    
    .file-upload-container {
        border: 2px dashed #dee2e6;
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        background: #f8f9fa;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .file-upload-container:hover {
        border-color: var(--primary-color);
        background: var(--primary-light);
    }
    
    .file-upload-container i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .file-info {
        margin-top: 1rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .location-container {
        position: relative;
    }
    
    .get-location-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        background: var(--primary-light);
        border: none;
        border-radius: 5px;
        padding: 5px 10px;
        color: var(--primary-color);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .get-location-btn:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .map-preview {
        height: 200px;
        margin-top: 15px;
        border-radius: 10px;
        overflow: hidden;
        background-color: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dee2e6;
    }
    
    .map-preview img {
        max-width: 100%;
        max-height: 100%;
    }