/* Existing contact.css - keeping your original styles */
/* Floating Contact Form Styles */
.contact-form-container {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    z-index: 1001;
    transition: right 0.5s ease;
}

.contact-form-container.active {
    right: 0;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 5px 0 0 5px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-header h3 {
    margin: 0;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

/* Original contact button styles - you can keep or remove this */
#contact-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .contact-form-container {
        width: 100%;
        right: -100%;
    }
    
    .contact-form {
        border-radius: 0;
    }
}

/* NEW: Vertical Contact Button Styles */
.vertical-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 999;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    transition: all 0.3s ease;
}

.vertical-contact-btn:hover {
    background-color: #0b5ed7;
    padding-right: 15px;
}

