.custom-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.custom-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 25px 30px 20px;
}

.custom-modal-body {
    padding: 40px 30px 30px;
    background: #f8f9fa;
}

.custom-modal-footer {
    border: none;
    padding: 20px 30px 25px;
    background: #f8f9fa;
}

.login-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.custom-form-control {
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.custom-form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.custom-input-icon {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #667eea;
}

.input-group .custom-form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.input-group .custom-form-control:focus {
    border-left: none;
}

.custom-login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.custom-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.custom-login-btn:active {
    transform: translateY(-1px);
}

/* Password toggle button styling */
.password-toggle {
    border: 2px solid #e1e5e9;
    border-left: none;
    border-radius: 0 12px 12px 0;
    background: #f8f9fa;
    color: #667eea;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.password-toggle:focus {
    box-shadow: none;
    outline: none;
}

.input-group .password-toggle {
    border-left: none;
}

/* Contact Form Styling */
.contact-form-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.contact-header {
    margin-bottom: 25px;
}

.contact-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info .info-item h6 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info .info-item p {
    color: #666;
    font-size: 13px;
    margin-bottom: 0;
}

.location-contact-section .location-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
}

.location-header {
    margin-bottom: 20px;
}

.location-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.contact-pills {
    width: 100%;
}

.contact-pill {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #25d366;
}

.contact-pill i {
    color: #25d366;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-pill .pill-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.contact-pill .pill-value {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.contact-pill:hover .pill-value {
    color: #25d366;
}

@media (max-width: 576px) {
    .custom-modal-body {
        padding: 30px 20px 20px;
    }

    .custom-modal-header {
        padding: 20px 20px 15px;
    }

    .custom-modal-footer {
        padding: 15px 20px 20px;
    }

    .login-logo {
        width: 60px;
        height: 60px;
    }

    .contact-form-card {
        padding: 20px;
    }

    .location-card {
        padding: 20px;
    }
}