 :root {
    --brand-red: #d72f4e;
    --brand-blue: #1a73e8;
    --brand-orange: #f99720;
    --brand-purple: #630db3;
    --brand-dark-red: #821B3B;
    --cream-bg: #fdfbf7;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
}
 /* Contact Page Styles */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--brand-dark-red) 0%, var(--brand-red) 50%, var(--brand-purple) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(249, 151, 32, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: var(--cream-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cmaca-info-box {
    background: linear-gradient(135deg, var(--brand-dark-red) 0%, var(--brand-red) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
}

.contact-cmaca-info-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.contact-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.cmaca-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cmaca-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cmaca-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cmaca-info-icon svg {
    width: 24px;
    height: 24px;
}

.cmaca-info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cmaca-info-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Form Box */
.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: var(--brand-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(215, 47, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Submit Button */
.btn-submit {
    background: var(--brand-red);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--brand-dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(215, 47, 78, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    transition: transform 0.3s;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Form Message */
.form-message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
    margin-top: 10px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-cmaca-info-box {
        padding: 30px 20px;
    }

    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 20px;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }

    .btn-submit {
        padding: 15px 30px;
    }
}