.contactHeroSection {
    padding: 0 20px;
    background-image: url('https://res.cloudinary.com/dxrrzxqkv/image/upload/v1773114319/2151893053_egfnoj.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contactHeroSection::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.699);
    z-index: 1;
}

/* Contact Form */
.contactHeroSection > h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    padding-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: none;
}

.contactHeroSection > p {
    max-width: 600px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    font-size: 18px;
    font-weight: 300;
}

.contactFormSection {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contactFormSection h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.contactForm {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.formField {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.formField label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.formField input,
.formField textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fafafa;
    resize: none;
}

.formField input:focus,
.formField textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 4px 10px 0 var(--cta-card-shadow);
}

.submitBtn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--cta-card-shadow);
}

.submitInfoContainer {
    opacity: 0;
    height: 0;
    overflow: hidden;
    align-content: center;
    gap: 8px;
    margin-top: 12px;
    display: flex;
}

.submitLoader {
    border: 3px solid #8d36ff;
    border-top: 3px solid #2d0068;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background-color: transparent;
    margin-top: 5px;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.submitInfo {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #2f2836;
    margin-top: 5px;
    font-weight: 600;
    text-align: left;
}

/* Contact Information Section */
.infoSection {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.infoContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.infoContainer > h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.contactDetails {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contactItem {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contactItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: var(--primary-color);
    color: white;
}

.contactItem:hover > h3 {
    color: rgb(224, 224, 224);
}

.contactItem:hover > a,
.contactItem:hover > p {
    color: rgba(165, 165, 165, 0.9);
}

.contactItem:hover > a:hover {
    color: rgba(187, 187, 187, 0.9);
    text-decoration: underline;
}

.contactItem > h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contactItem > a,
.contactItem > p {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    line-height: 1.6;
}

.contactItem a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


@media (max-width: 680px) {
    .contactHeroSection > h1 {
        font-size: 28px;
    }

    .contactHeroSection > p{
        font-size: 15px;
    }
}
