.contact-section {
    background: #f6f7f8;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}
.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}
.contact-form {
    background: #fff;
    padding: 40px;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.icon-box {
    width: 45px;
    height: 45px;
    background: #fde8ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C6144D;
}
.icon-box svg {
    width: 22px;
    height: 22px;
}
.whatsapp-box {
    margin-top: 40px;
    background: #e9f8ef;
    padding: 25px;
    border-radius: 14px;
}
.whatsapp-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.whatsapp-box a:hover {
    background: #20b858;
}
.whatsapp-box a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 25px !important;
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #C6144D;
}
.select-wrapper {
    position: relative;
}
.select-wrapper select {
    width: 100%;
    padding-right: 55px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border-radius: 25px !important;
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    cursor: pointer;
}
.select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #b6bcc6;
    border-bottom: 2px solid #b6bcc6;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}
.contact-form textarea {
    min-height: 110px;
    border-radius: 25px !important;
    resize: vertical;
}
.submit-btn {
    background: #C6144D;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background: #a91142;
}
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.submit-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Response Messages */
.qplus-msg-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.qplus-msg-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Links */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}
.contact-link:hover {
    color: #C6144D;
    transform: translateX(3px);
}

.qplus-countdown {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #155724;
    opacity: 0.85;
}

@media(max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px 20px;
    }
}
