.contact-main {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 24px 40px;
}

.contact-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    margin-top: 32px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: #ffffff;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(48, 64, 159, 0.08);
    align-items: start;
}
.site-header {
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}
.site-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 15px 40px;
}
.site-nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #3122d1;
}
.image-section{
    text-align:center;
}
.contact-info,
.contact {
    text-align: left;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 28px;
    align-items: center;
    margin-top: 32px;
}

@media (max-width: 992px) {
    .contact-top {
        grid-template-columns: 1fr;
    }
}

.image-section img{
    width:100%;
    max-width:600px;
    border-radius:30px;
    box-shadow:0 30px 60px rgba(48, 64, 159, 0.12);
}
.contact-info h4 {
    color: #6d00fc;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.contact {
    display: grid;
    gap: 18px;
}

.contact h1 {
    font-size: 46px;
    line-height: 1.05;
    margin-bottom: 10px;
    color: #111827;
}

.contact p {
    color: #6d00fc;
    line-height: 1.8;
    font-size: 18px;
    max-width: 620px;
}

label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    color: #111827;
}

label input {
    display: block;
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

label input:focus {
    border-color: #3122d1;
    box-shadow: 0 0 0 3px rgba(49, 34, 209, 0.1);
}

.contact .location,
.contact .email,
.contact .phone {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #334155;
    font-size: 16px;
    background: #f8fafc;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.contact .location i,
.contact .email i,
.contact .phone i {
    color: #3122d1;
    min-width: 22px;
    text-align: center;
    font-size: 18px;
}

.footer-basic {
    padding: 24px 40px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
}

@media (min-width: 993px) {
    .contact-card {
        grid-template-columns: 1fr 1fr;
    }
    .image-section {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    .contact-info,
    .contact {
        grid-column: 1;
    }
}

@media (max-width: 992px) {
    .contact-top {
        grid-template-columns: 1fr;
    }

    .contact h1 {
        font-size: 38px;
    }
}
@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-section {
        order: 1;
    }

    .contact-info,
    .contact {
        order: 2;
    }

    .location,
    .email,
    .phone {
        justify-content: center;
    }
}
