/* ========== ROOT VARIABLES ========== */
:root {
    --primary: #FFC300;
    --primary-dark: #E6B000;
    --secondary: #0F172A;
    --secondary-light: #1E293B;
    --accent: #3B82F6;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --transition: all 0.3s ease;
}

/* Hide Scrollbars */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--secondary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.w-100 {
    width: 100%;
}





/* ========== REQUEST SECTION ========== */
.request-section {
    padding: 60px 0;
    background: var(--gray-50);
    min-height: calc(100vh - 400px);
}

.request-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    padding: 50px;
    border: 1px solid var(--gray-200);
}

.request-header {
    text-align: center;
    margin-bottom: 40px;
}

.request-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.request-header p {
    color: var(--gray-500);
    font-size: 16px;
}

/* ========== FORM STYLES ========== */
.request-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 18px;
}

.required {
    color: var(--danger);
    margin-left: 4px;
}

/* Select Field */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 16px 20px;
    padding-right: 50px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-size: 15px;
    color: var(--secondary);
    background: var(--white);
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
}

.select-wrapper select:hover {
    border-color: var(--gray-300);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,195,0,0.1);
}

.select-wrapper select option {
    padding: 12px;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    font-size: 14px;
}

/* Input Field */
.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.location-search-icon {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    font-size: 16px;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px;
    padding-left: 45px;
    padding-right: 100px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-size: 15px;
    color: var(--secondary);
    transition: var(--transition);
}

.input-wrapper input:hover {
    border-color: var(--gray-300);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,195,0,0.1);
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
}


/* Location Suggestions */
.location-suggestions {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: var(--shadow-lg);
}

.location-suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item i {
    color: var(--gray-400);
    font-size: 14px;
}

.suggestion-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.suggestion-item:hover i {
    color: var(--primary);
}

/* Popular Locations */
.popular-locations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.popular-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.location-chip {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.location-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

.location-chip i {
    font-size: 12px;
}

/* Submit Button */
.btn-submit {
    background: var(--primary);
    color: var(--secondary);
    padding: 18px 32px;
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}

.btn-submit:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-submit i {
    transition: var(--transition);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Emergency Note */
.emergency-note {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.emergency-note i {
    color: var(--danger);
    font-size: 20px;
}

.emergency-note p {
    color: var(--gray-700);
    font-size: 14px;
    margin: 0;
}

.emergency-note a {
    color: var(--danger);
    font-weight: 700;
    text-decoration: none;
}

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

/* Quick Tips */
.quick-tips {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed var(--gray-200);
}

.quick-tips h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-tips h3 i {
    color: var(--primary);
}

.quick-tips ul {
    list-style: none;
}

.quick-tips li {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-tips li i {
    color: var(--success);
    font-size: 16px;
}

/* Error States */
.form-group.error select,
.form-group.error input {
    border-color: var(--danger);
}

.error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Success Animation */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-submit.success {
    background: var(--success);
    animation: successPulse 0.5s ease;
}

/* ========== INFO CARDS ========== */
.info-cards {
    padding: 60px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.info-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--gray-500);
    font-size: 13px;
}



/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--white);
    transform: translateY(-5px);
}

/* ========== NOTIFICATIONS ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--success);
}

.notification-success i {
    color: var(--success);
}

.notification-error {
    border-left: 4px solid var(--danger);
}

.notification-error i {
    color: var(--danger);
}

.notification-info {
    border-left: 4px solid var(--primary);
}

.notification-info i {
    color: var(--primary);
}

.notification i {
    font-size: 20px;
}

.notification span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

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

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .request-wrapper {
        padding: 30px 20px;
    }

    .request-header h2 {
        font-size: 28px;
    }

    .input-wrapper input {
        padding-right: 20px;
    }


    .popular-locations {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .request-wrapper {
        padding: 25px 15px;
    }

    .request-header h2 {
        font-size: 24px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .popular-label {
        width: 100%;
    }

    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }


    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.request-wrapper {
    animation: fadeIn 0.6s ease;
}

.info-card {
    animation: fadeIn 0.6s ease;
}
