
/* ================================
   HERO
================================ */
a {

    text-decoration: none !important;
}


.hero-content {
    max-width: 700px;
}

.small-title {
    color: #3374C4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    margin: 18px 0;
}

.hero-content h1 span {
    color: #3374C4;
}

.hero-content p {
    color: #bbb;
    max-width: 620px;
    font-size: 16px;
}


/* ================================
   CONTACT SECTION
================================ */

.contact-section {
    padding: 100px 0;
    background: #05162A;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}


/* ================================
   LEFT CONTACT INFO
================================ */

.section-tag {
    color: #3374C4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-info h2 {
    font-size: 40px;
    line-height: 1.25;
    margin: 15px 0 20px;
    color:#fff;
}

.contact-info h2 span {
    color: #3374C4;
}

.info-text {
    color: #aaa;
    margin-bottom: 35px;
    font-size: 15px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.25);

    border-radius: 12px;

    color: #3374C4;
    font-size: 20px;
}

.info-box h4 {
    font-size: 15px;
    margin-bottom: 3px;
    color:#fff;
}

.info-box p {
    color: #aaa;
    font-size: 14px;
}


/* ================================
   SOCIAL
================================ */

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    margin-bottom: 15px;
    color:#fff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333;
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #3374C4;
    color: #05162A;
    border-color: #3374C4;
}


/* ================================
   CONTACT FORM
================================ */

.contact-form-box {
    background: #05162A;
    padding: 45px;
    border-radius: 18px;
    border: 1px solid #292929;
}

.contact-form-box h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color:#fff;
}

.contact-form-box > p {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;

    color: #ddd;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    background: #05162A;
    border: 1px solid #333;

    color: #fff;

    padding: 15px;

    border-radius: 8px;

    font-family: inherit;

    outline: none;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3374C4;
}


/* ================================
   BUTTON
================================ */

.submit-btn {

    width: 100%;

    border: none;

    background: #3374C4;

    color: #05162A;

    padding: 16px;

    font-size: 15px;
    font-weight: 700;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.3s;
}

.submit-btn i {
    margin-left: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #ffb52f;
}


/* ================================
   QUICK HELP
================================ */

.quick-help {
    background: #05162A;
    padding: 0px 0;
}

.help-heading {
    text-align: center;
    margin-bottom: 50px;
}

.help-heading span {
    color: #3374C4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.help-heading h2 {
    margin-top: 12px;
    font-size: 36px;
    color:#fff;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.help-card {

    background: #05162A;

    padding: 35px 28px;

    border-radius: 15px;

    border: 1px solid #282828;

    text-align: center;

    transition: 0.3s;
}

.help-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.5);
}

.help-icon {

    width: 60px;
    height: 60px;

    margin: auto auto 20px;

    border-radius: 50%;

    background: rgba(245, 166, 35, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #3374C4;

    font-size: 22px;
}

.help-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.help-card p {
    color: #999;
    font-size: 14px;
}


/* ================================
   CTA
================================ */

.contact-cta {

    background: #3374C4;

    padding: 55px 0;

    color: #05162A;
}

.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta-content span {

    font-size: 12px;

    font-weight: 700;
color:#fff;
    letter-spacing: 2px;
}

.cta-content h2 {

    margin-top: 8px;
color:#fff;
    font-size: 34px;
}

.cta-btn {

    background: #05162A;

    color: #fff;

    padding: 16px 25px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}














/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

   
section.contact-hero {
    width: 100%;
    float: left;
    margin-top: 70px;
}

    .hero-content {
        margin: auto;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
.contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
}
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .help-heading h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

    .contact-form-box h3 {
        font-size: 24px;
    }

}