/* Contact Section */
#apitech-contact-section-unique {
    min-height: 60vh;
    background: white;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

#apitech-contact-container-unique {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

#apitech-contact-wrapper-unique {
    display: flex;
    gap: 20px;
    height: 450px;
}

/* CTA Card */
#apitech-cta-card-unique {
    flex: 2;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease 0.2s;
}

#apitech-cta-card-unique.visible {
    opacity: 1;
    transform: translateX(0);
}

#apitech-cta-card-unique:hover {
    transform: translateX(0) scale(1.02);
}

#apitech-cta-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.85) 0%, rgba(99, 110, 114, 0.85) 100%);
}

#apitech-cta-content-unique {
    position: absolute;
    top: 80px;
    bottom: 80px;
    left: 60px;
    right: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#apitech-cta-subtitle-unique {
    color: #FF8A4C;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-cta-title-unique {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.2;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-cta-text-unique {
    font-size: 18px;
    margin: 0 0 35px 0;
    opacity: 0.9;
    line-height: 1.5;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-cta-text-unique strong {
    color: #FF8A4C;
}

#apitech-cta-button-unique {
    display: inline-block;
    background: #FF8A4C;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: keep-all;
    word-wrap: break-word;
    text-decoration: none;
    text-align: center;
}

#apitech-cta-button-unique:hover {
    background: #E8743A;
}

/* Contact Card */
#apitech-contact-card-unique {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.4s;
}

#apitech-contact-card-unique.visible {
    opacity: 1;
    transform: translateX(0);
}

#apitech-contact-label-unique {
    color: #FF8A4C;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-contact-phone-unique {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 30px 0;
    line-height: 1.1;
    word-break: keep-all;
    word-wrap: break-word;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

#apitech-contact-phone-unique:hover {
    color: #FF8A4C;
}

#apitech-contact-email-section-unique {
    margin-bottom: 20px;
}

#apitech-contact-email-label-unique,
#apitech-contact-address-label-unique {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-contact-email-value-unique {
    font-size: 15px;
    color: #2d3436;
    word-break: keep-all;
    word-wrap: break-word;
    text-decoration: none;
    transition: color 0.3s ease;
}

#apitech-contact-email-value-unique:hover {
    color: #FF8A4C;
}

#apitech-contact-address-section-unique {
    margin-bottom: 25px;
}

#apitech-contact-address-value-unique {
    font-size: 14px;
    color: #2d3436;
    line-height: 1.4;
    word-break: keep-all;
    word-wrap: break-word;
}

#apitech-contact-map-button-unique {
    background: #FF8A4C;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: keep-all;
    word-wrap: break-word;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

#apitech-contact-map-button-unique:hover {
    background: #E8743A;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #apitech-contact-section-unique {
        padding: 60px 0 !important;
    }
    
    #apitech-contact-container-unique {
        padding: 0 20px !important;
    }
    
    #apitech-contact-wrapper-unique {
        flex-direction: column !important;
        gap: 20px !important;
        height: auto !important;
    }
    
    #apitech-contact-card-unique {
        padding: 30px !important;
        min-height: 280px !important;
    }
    
    #apitech-contact-phone-unique {
        font-size: 28px !important;
    }
    
    #apitech-cta-card-unique {
        min-height: auto !important;
        height: auto !important;
    }
    
    #apitech-cta-content-unique {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        padding: 40px 30px !important;
        justify-content: flex-start !important;
    }
    
    #apitech-cta-subtitle-unique {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    #apitech-cta-title-unique {
        font-size: 28px !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
    }
    
    #apitech-cta-text-unique {
        font-size: 15px !important;
        margin-bottom: 25px !important;
        line-height: 1.6 !important;
    }
    
    #apitech-cta-button-unique {
        font-size: 13px !important;
        padding: 10px 20px !important;
    }
}
