



.form-wrapper {
    max-width: 100%;
}

.contact-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: white;
    font-size: 16px;
    color: #333;
}

.contact-form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-container input[type="submit"] {
    background-color: var(--hcmd-navy);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    align-self: flex-start;
    margin-top: 10px;
}

.contact-form-container input[type="submit"]:hover {
    background-color: var(--hcmd-blue);
}

/* Chat Section */
.chat-section {
    background-color: var(--hcmd-navy);
    padding: 100px 0;
}

.chat-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--hcmd-navy);
    padding: 10px 8px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    position: relative;
    text-align: center;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: var(--hcmd-blue);
}

.chat-icon {
    position: absolute;
    left: 7px;
    top: calc(50% - 20px);
}
.chat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--hcmd-blue);
}
p.chat-button-text{
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: var(--hcmd-navy);
}
.chat-icon img {
    width: 40px;
}
/* Form Error/Success Messages */
.wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 10px !important;
    border-radius: 0;
    font-size: 14px;
    text-align: center;
}

.wpcf7-validation-errors, 
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    margin-top: 5px;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-us-page .hero-content h1 {
        font-size: 2.5rem;
        max-width: 100%;
    }
    
    .contact-form-container {
        margin: 30px auto 0;
    }
}

@media (max-width: 767px) {
    .contact-us-page .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .contact-us-page .hero-overlay {
        width: 100%;
    }
    
    .contact-us-page .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-form-container input[type="submit"] {
        width: 100%;
        align-self: center;
    }
    
    .chat-button {
        padding: 12px 20px;
        font-size: 16px;
    }
} 