/* =========================================================
   GK CONSULTANCY - CONTACT PAGE
   PROFESSIONAL BLUE THEME
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #172033;
}

a {
    text-decoration: none;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {

    min-height: 600px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(37,99,235,.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(59,130,246,.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505,
            #0b1220,
            #071a3d
        );
}


/* Decorative circle */

.contact-hero::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(59,130,246,.25);

    border-radius: 50%;

    right: -150px;
    top: -180px;

    animation: heroFloat 7s ease-in-out infinite;
}


.contact-hero::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(37,99,235,.25);

    border-radius: 50%;

    left: -120px;
    bottom: -130px;

    animation: heroFloat 8s ease-in-out infinite reverse;
}


@keyframes heroFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}


.contact-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65),
            rgba(4,18,45,.50)
        );
}


.contact-hero-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1100px;

    text-align: center;

    color: white;

    padding-top: 100px;

    animation: heroReveal .8s ease;
}


@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.contact-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #60a5fa;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.contact-label i {

    font-size: 16px;

    animation: pulseIcon 2s infinite;
}


@keyframes pulseIcon {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


.contact-hero h1 {

    font-family: 'DM Serif Display', serif;

    font-size: clamp(45px, 6vw, 78px);

    font-weight: 400;

    line-height: 1.05;

    margin: 0 0 22px;

    letter-spacing: -.5px;
}


.contact-hero h1 span {

    display: block;

    color: #3b82f6;
}


.contact-hero p {

    max-width: 700px;

    margin: auto;

    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.8;
}


.contact-breadcrumb {

    margin-top: 28px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    color: #94a3b8;
}


.contact-breadcrumb a {

    color: #60a5fa;

    transition: .3s;
}


.contact-breadcrumb a:hover {

    color: white;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-section {

    padding: 100px 7%;

    background: #f8fafc;
}


.contact-container {

    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.section-label span {

    width: 42px;

    height: 2px;

    background: #2563eb;

    display: inline-block;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-info h2 {

    font-family: 'DM Serif Display', serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.1;

    font-weight: 400;

    color: #111827;

    margin: 0 0 20px;
}


.contact-info h2 span {

    display: block;

    color: #2563eb;
}


.contact-intro {

    color: #64748b;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 35px;

    max-width: 560px;
}


/* =========================================================
   INFO CARDS
========================================================= */

.contact-info-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #e2e8f0;

    transition: .35s;
}


.contact-info-card:hover {

    transform: translateX(8px);
}


.contact-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-size: 20px;

    transition: .35s;
}


.phone-icon {

    background: #dcfce7;

    color: #16a34a;
}


.email-icon {

    background: #dbeafe;

    color: #2563eb;
}


.location-icon {

    background: #e0e7ff;

    color: #4f46e5;
}


.contact-info-card:hover .contact-icon {

    transform: rotate(-5deg) scale(1.08);
}


.contact-info-card small {

    display: block;

    color: #94a3b8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.contact-info-card h4 {

    margin: 0;

    color: #172033;

    font-size: 16px;

    font-weight: 700;
}


.contact-info-card p {

    margin: 3px 0 0;

    color: #64748b;

    font-size: 12px;
}


/* =========================================================
   SOCIAL
========================================================= */

.contact-social {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 30px;
}


.contact-social > span {

    font-size: 13px;

    font-weight: 600;

    color: #64748b;
}


.social-links {

    display: flex;

    gap: 10px;
}


.social-links a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    color: #2563eb;

    box-shadow: 0 8px 25px rgba(15,23,42,.08);

    transition: .35s;
}


.social-links a:hover {

    color: white;

    background: #2563eb;

    transform: translateY(-5px);
}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {

    background: white;

    padding: 38px;

    border-radius: 24px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 25px 70px rgba(15,23,42,.10);

    position: relative;

    overflow: hidden;
}


.contact-form-wrapper::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #60a5fa,
            #2563eb
        );
}


/* FORM HEADING */

.form-heading {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;
}


.form-heading > span {

    width: 50px;

    height: 50px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eff6ff;

    color: #2563eb;

    font-size: 20px;
}


.form-heading h3 {

    margin: 0 0 3px;

    font-family: 'Montserrat', sans-serif;

    font-size: 22px;

    color: #172033;
}


.form-heading p {

    margin: 0;

    color: #94a3b8;

    font-size: 12px;
}


/* FORM ROW */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 700;

    color: #334155;

    margin-bottom: 8px;
}


.input-box {

    position: relative;

    display: flex;

    align-items: center;
}


.input-box > i {

    position: absolute;

    left: 15px;

    color: #94a3b8;

    font-size: 16px;

    pointer-events: none;

    transition: .3s;

    z-index: 2;
}


.input-box input,
.input-box select,
.input-box textarea {

    width: 100%;

    border: 1px solid #e2e8f0;

    background: #f8fafc;

    border-radius: 12px;

    outline: none;

    color: #172033;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    transition: .3s;
}


.input-box input,
.input-box select {

    height: 50px;

    padding: 0 15px 0 45px;
}


.input-box textarea {

    padding: 14px 15px 14px 45px;

    resize: vertical;

    min-height: 125px;
}


.input-box select {

    appearance: none;

    cursor: pointer;
}


.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {

    border-color: #3b82f6;

    background: white;

    box-shadow:
        0 0 0 4px rgba(37,99,235,.08);
}


.input-box:focus-within > i {

    color: #2563eb;
}


.textarea-box {

    align-items: flex-start;
}


.textarea-box > i {

    top: 16px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {

    width: 100%;

    border: none;

    height: 54px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: white;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: .35s;

    box-shadow:
        0 12px 25px rgba(37,99,235,.20);
}


.contact-submit i {

    transition: .35s;
}


.contact-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(37,99,235,.30);
}


.contact-submit:hover i {

    transform: translateX(6px);
}


/* =========================================================
   QUICK CONTACT
========================================================= */

.quick-contact {

    padding: 80px 7%;

    background:
        linear-gradient(
            135deg,
            #050505,
            #0a1428,
            #071a3d
        );

    color: white;

    position: relative;

    overflow: hidden;
}


.quick-contact::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(59,130,246,.20);

    border-radius: 50%;

    right: -150px;

    top: -200px;
}


.quick-contact-container {

    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    position: relative;

    z-index: 2;
}


.quick-content > span {

    color: #60a5fa;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;
}


.quick-content h2 {

    font-family: 'DM Serif Display', serif;

    font-weight: 400;

    font-size: clamp(32px, 4vw, 48px);

    margin: 12px 0;

    line-height: 1.15;
}


.quick-content h2 strong {

    color: #3b82f6;

    font-weight: 400;
}


.quick-content p {

    margin: 0;

    max-width: 650px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.7;
}


.quick-buttons {

    display: flex;

    gap: 12px;

    flex-shrink: 0;
}


.quick-btn {

    min-width: 145px;

    padding: 14px 22px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 13px;

    font-weight: 700;

    transition: .35s;
}


.quick-btn.primary {

    background: #2563eb;

    color: white;
}


.quick-btn.secondary {

    border: 1px solid #334155;

    color: white;

    background: rgba(255,255,255,.04);
}


.quick-btn:hover {

    transform: translateY(-4px);
}


.quick-btn.primary:hover {

    background: #1d4ed8;
}


.quick-btn.secondary:hover {

    border-color: #3b82f6;

    background: rgba(37,99,235,.15);
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {

    padding: 100px 7%;

    background: #f8fafc;
}


.section-heading {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 55px;
}


.center-label {

    justify-content: center;
}


.section-heading h2 {

    font-family: 'DM Serif Display', serif;

    font-size: clamp(38px, 4vw, 55px);

    font-weight: 400;

    line-height: 1.1;

    margin: 0 0 15px;

    color: #111827;
}


.section-heading h2 span {

    color: #2563eb;
}


.section-heading p {

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;
}


.location-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 35px;
}


.location-map {

    height: 430px;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(15,23,42,.10);

    border: 5px solid white;
}


.location-map iframe {

    width: 100%;

    height: 100%;

    border: 0;
}


.location-details {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 18px;
}


.location-detail {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    background: white;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    transition: .35s;
}


.location-detail:hover {

    transform: translateX(6px);

    border-color: #bfdbfe;

    box-shadow:
        0 15px 35px rgba(37,99,235,.08);
}


.location-detail > div {

    width: 48px;

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eff6ff;

    color: #2563eb;

    border-radius: 12px;

    font-size: 18px;
}


.location-detail small {

    display: block;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #94a3b8;

    margin-bottom: 4px;
}


.location-detail h4 {

    margin: 0 0 3px;

    color: #172033;

    font-size: 15px;
}


.location-detail p {

    margin: 0;

    color: #64748b;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

	
    .contact-container {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .contact-info {

        max-width: 750px;

        margin: auto;

    }

    .contact-form-wrapper {

        max-width: 750px;

        width: 100%;

        margin: auto;

    }

    .quick-contact-container {

        flex-direction: column;

        align-items: flex-start;

    }

    .location-container {

        grid-template-columns: 1fr;

    }

    .location-details {

        display: grid;

        grid-template-columns: repeat(3, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-hero {

        min-height: 430px;
    }

    .contact-hero-content {

        padding-top: 90px;
    }

    .contact-hero h1 {

        font-size: 46px;
    }

    .contact-hero p {

        font-size: 13px;

        line-height: 1.7;
    }

    .contact-section {

        padding: 65px 20px;
    }

    .contact-info h2 {

        font-size: 42px;
    }

    .contact-form-wrapper {

        padding: 25px 20px;

        border-radius: 18px;
    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .quick-contact {

        padding: 65px 20px;
    }

    .quick-buttons {

        width: 100%;

        flex-direction: column;
    }

    .quick-btn {

        width: 100%;
    }

    .location-section {

        padding: 65px 20px;
    }

    .location-details {

        grid-template-columns: 1fr;
    }

    .location-map {

        height: 330px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-hero {

        min-height: 410px;
    }

    .contact-hero h1 {

        font-size: 39px;
    }

    .contact-label {

        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .contact-info h2 {

        font-size: 36px;
    }

    .contact-info-card {

        gap: 12px;
    }

    .contact-icon {

        width: 48px;

        min-width: 48px;

        height: 48px;

        font-size: 17px;
    }

    .contact-info-card h4 {

        font-size: 13px;
    }

    .contact-info-card p {

        font-size: 10px;
    }

    .contact-social {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .form-heading h3 {

        font-size: 18px;
    }

    .form-heading p {

        font-size: 10px;
    }

    .location-map {

        height: 280px;
    }

}