.contact-page {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.social-section {
    margin-top: 40px;
    padding: 38px 24px;
    border-radius: 26px;
    background: #0033A0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.social-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.social-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.social-header p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 34px;
}

.social-logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.social-icons {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 34px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.22);
}

.social-icons a i {
    transition: transform 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.08);
}

.contact-intro {
    text-align: center;
    margin-bottom: 32px;
}

.contact-intro h1 {
    font-size: 34px;
    color: #0033A0;
    margin-bottom: 12px;
}

.contact-intro p {
    color: #4a4a4a;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.contact-card {
    border-radius: 24px;
    padding: 26px;
    text-align: center;
}

.contact-card i {
    font-size: 28px;
    color: #0033A0;
    margin-bottom: 14px;
}

.contact-card h2 {
    font-size: 18px;
    color: #0033A0;
    margin-bottom: 10px;
}

.contact-card a {
    text-decoration: none;
    color: #4a4a4a;
    transition: 0.3s;
}

.contact-card a:hover {
    color: #0033A0;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 10px;
}

.form-row label {
    font-weight: 700;
    color: #0033A0;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(0, 51, 160, 0.15);
    background: #f8fbff;
    color: #0f245d;
    font-size: 15px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0033A0;
}

.contact-form .cta-button {
    padding: 16px 32px;
    background: #0033A0;
    color: white;
    border-radius: 999px;
    border: none;
}

.contact-form .cta-button:hover {
    background: #002266;
}

.social-section {
    margin-top: 32px;
    text-align: center;
}

.social-section h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: #f7faff;
    border-radius: 20px;
    text-decoration: none;
    color: #0033A0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 51, 160, 0.12);
}

.social-link i {
    font-size: 24px;
}

.social-link span {
    font-weight: 600;
    font-size: 14px;
}

.footer {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    background: #f7f8fc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";

    position: absolute;
    top: -60px;
    right: -60px;

    width: 200px;
    height: 200px;

    background: rgba(0, 51, 160, 0.05);

    border-radius: 50%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 90px;
    height: 90px;
    background-color: #0033A0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand h2 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-right i {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(41, 98, 255, 0.1);
    color: #0033A0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
}

.footer-right h3 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #1f2937;
    margin: 0;
    white-space: nowrap;
}

.developer-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 15px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 26px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);

    text-align: center;
}

.footer-bottom p {
    color: #98a2b3;
    font-size: 15px;
}

@media (max-width: 992px) {

    .contact-page {
        width: 100%;
    }

    .contact-section {
        padding: 20px 14px;
    }

    .contact-intro h1 {
        font-size: 24px;
    }

    .contact-intro p {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 20px;
    }

    .contact-card {
        padding: 12px 6px;
        border-radius: 14px;
    }

    .contact-card i {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .contact-card h2 {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .contact-card a {
        font-size: 8px;
        line-height: 0px;
        word-break: break-word;
    }

    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer {
        width: 95%;
        border-radius: 22px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left {
        align-items: flex-start;
    }

    .footer-logo {
        width: 90px;
        height: auto;
        border-radius: 16px;
    }

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-brand h2 {
        font-size: 18px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-right i {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }

    .footer-right h3 {
        font-size: 10px;
    }

    .developer-item {
        font-size: 10px;
    }

    .footer-bottom {
        margin-top: 28px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .social-section {
        padding: 30px 18px;
        border-radius: 22px;
    }

    .social-logo {
        width: 85px;
        height: 85px;
        margin-bottom: 14px;
    }

    .social-header h2 {
        font-size: 26px;
    }

    .social-header p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .social-icons {
        gap: 16px;
    }

    .social-icons a {
        width: 58px;
        height: 58px;
        font-size: 26px;
        border-radius: 16px;
    }

    .social-icons a i {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .social-section {
        padding: 24px 14px;
    }

    .social-header h2 {
        font-size: 22px;
    }

    .social-header p {
        font-size: 13px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 14px;
    }
}