.contact-cta-wrapper {
    background: linear-gradient(90deg, #E66A12 0%, #D45D0D 100%); /* Default orange gradient fallback */
    padding: 60px 40px;
    font-family: sans-serif;
}

.contact-cta-container {
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-cta-left {
    flex: 1;
    min-width: 300px;
}

.contact-cta-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.contact-cta-subtitle {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

.contact-cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #333333;
    padding: 15px 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}
.contact-cta-button:hover {
    background-color: #f0f0f0;
}

.contact-cta-right {
    flex: 2;
    min-width: 600px; /* Ensure enough space for single line */
}

.contact-methods-grid {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap; /* Force single line */
    gap: 20px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevent text wrapping */
}

.contact-method-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}
.contact-method-link:hover {
    text-decoration: none;
}

.contact-item-icon {
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
}

.contact-item-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 2px;
}

.contact-item-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.contact-item-divider {
    width: 1px;
    height: 50px;
    background-color: #ffffff;
    opacity: 0.3;
    margin: 0 10px;
}

@media (max-width: 1199px) {
    .contact-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-methods-grid {
        justify-content: flex-start;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }
    .contact-cta-right {
        min-width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-methods-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .contact-item-divider {
        display: none;
    }
}