/* Additional styles for enhanced teklif form */

/* Emergency contact styling */
.emergency-contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    border: none;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse-animation 3s infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse-animation {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.emergency-contact h3 {
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.emergency-contact .contact-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.emergency-contact .contact-item i {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.emergency-contact .contact-item h4 {
    color: #ffffff;
}

.emergency-contact .contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Additional form enhancements */
.form-row {
    position: relative;
}

.form-group {
    transition: transform 0.3s ease;
}

.form-group:hover {
    transform: translateY(-3px);
}

/* Animated labels */
.form-group label {
    transition: all 0.3s ease;
}

.form-group:hover label {
    color: #60a5fa;
    transform: translateX(5px);
}

/* Form decorative elements */
.quote-form-container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    z-index: -1;
    filter: blur(30px);
}

.quote-form-container::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background: rgba(251, 191, 36, 0.07);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* Form transition effects */
.form-group input, 
.form-group select, 
.form-group textarea {
    transition: all 0.3s ease;
}

/* Enhanced checkbox styles */
.checkbox-item, 
.radio-item {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-item:hover, 
.radio-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

/* Quote feature animations */
.quote-feature i {
    transition: all 0.3s ease;
}

.quote-feature:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Enhanced button animation */
.btn-primary i {
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Enhanced select dropdowns */
.styled-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(15, 23, 42, 0.8) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'%3e%3c/path%3e%3c/svg%3e") no-repeat right 15px center;
    border: 2px solid #334155;
    border-radius: 12px;
    padding: 14px 18px;
    padding-right: 40px;
    color: #fff;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) inset;
}

.styled-select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(30, 41, 59, 0.9);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2), 0 4px 10px rgba(0, 0, 0, 0.1) inset;
    transform: translateY(-2px);
}

.styled-select:hover {
    border-color: #60a5fa;
    background-color: rgba(15, 23, 42, 0.9);
}

@keyframes select-pulse {
    0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

.styled-select:focus {
    animation: select-pulse 1.5s infinite;
}

.styled-select option {
    background-color: #1e293b;
    color: #fff;
    padding: 10px;
}
