/* CONTACT PAGE SPECIFIC STYLES */

.contactContent {
    margin-top: 120px;
    padding: 0 1rem;
    text-align: center;
}

.contactContent h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: #333;
    font-family: "Montserrat", Arial, sans-serif;
    margin-bottom: 1rem;
}

.contactContent h2 {
    text-align: center;
    color: #ff5312;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-family: "Montserrat", Arial, sans-serif;
    margin-bottom: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contactContainer {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contactContainer:hover {
    transform: translateY(-5px);
}

.contactContainer svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #ff5312;
}

.contactContainer h2 {
    color: #333;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-family: "Montserrat", Arial, sans-serif;
    margin-bottom: 1rem;
}

/* Copy functionality */
.copy-success {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

/* Mobile Responsiveness for Contact Page */
@media screen and (max-width: 768px) {
    .contactContent {
        margin-top: 120px !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1rem 0.5rem !important;
    }

    .contactContainer {
        padding: 1.5rem 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .contactContent {
        margin-top: 110px !important;
    }

    .contact-wrapper {
        padding: 1rem 0.25rem !important;
    }
}