/* =================================
   CONTACT SECTION
================================= */

.contact {
    position: relative;
    padding: 50px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(13, 110, 253, 0.28),
            transparent 45%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(25, 135, 84, 0.25),
            transparent 50%
        ),
        radial-gradient(
            circle at center,
            rgba(255, 193, 7, 0.08),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #dfeaf0,
            #d7e4e1,
            #e2e8f0
        );

    overflow: hidden;
}


/* =================================
   CONTACT HEADER
================================= */

.contact-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 70px;
}


.contact-header h2 {
    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 800;

    line-height: 1.05;

    margin-top: 20px;

    color: #1f2937;
}


.contact-header h2 span {
    background: linear-gradient(
        90deg,
        #ffc107,
        #ffcf5c
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.contact-header p {
    max-width: 520px;

    font-size: 1.1rem;

    line-height: 1.8;

    color: #64748b;
}


/* =================================
   CONTACT GRID
================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: stretch;
}


/* =================================
   CONTACT INFORMATION
================================= */

.contact-info {
    padding: 50px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(20px);
}


.contact-intro h3 {
    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 15px;

    color: #1f2937;
}


.contact-intro p {
    line-height: 1.8;

    color: #64748b;

    margin-bottom: 45px;
}


/* =================================
   CONTACT DETAILS
================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 30px;
}


.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 20px;
}


.contact-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(13, 110, 253, 0.15),
        rgba(25, 135, 84, 0.15)
    );

    color: #198754;

    font-size: 1.3rem;
}


.contact-item span {
    display: block;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #d69e00;

    margin-bottom: 5px;
}


.contact-item h4 {
    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 6px;

    color: #1f2937;
}


.contact-item p {
    margin: 0;

    color: #64748b;

    line-height: 1.6;
}


/* =================================
   SOCIAL LINKS
================================= */

.contact-socials {
    margin-top: 50px;

    padding-top: 30px;

    border-top: 1px solid rgba(31, 41, 55, 0.1);
}


.contact-socials > span {
    display: block;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;

    color: #64748b;
}


.social-links {
    display: flex;

    gap: 12px;
}


.social-links a {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.7);

    border: 1px solid rgba(31, 41, 55, 0.08);

    color: #1f2937;

    text-decoration: none;

    transition: all 0.3s ease;
}


.social-links a:hover {
    transform: translateY(-5px);

    background: linear-gradient(
        135deg,
        #0d6efd,
        #198754
    );

    color: #fff;
}


/* =================================
   CONTACT FORM
================================= */

.contact-form-wrapper {
    padding: 50px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(20px);

    box-shadow:
        0 25px 70px rgba(31, 41, 55, 0.12);
}


/* =================================
   FORM HEADING
================================= */

.form-heading {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 40px;
}


.form-number {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #ffc107,
        #ffcf5c
    );

    color: #1f2937;

    font-size: 1.3rem;

    font-weight: 800;
}


.form-heading h3 {
    font-size: 1.8rem;

    font-weight: 700;

    margin-bottom: 5px;

    color: #1f2937;
}


.form-heading p {
    margin: 0;

    color: #64748b;
}


/* =================================
   FORM FIELDS
================================= */

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 25px;
}


.form-group label {
    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: 10px;

    color: #374151;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 16px 18px;

    border-radius: 14px;

    border: 1px solid rgba(31, 41, 55, 0.12);

    background: rgba(255, 255, 255, 0.8);

    outline: none;

    font-family: inherit;

    font-size: 0.95rem;

    color: #1f2937;

    transition: all 0.3s ease;
}


.form-group textarea {
    resize: vertical;

    min-height: 160px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d6efd;

    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}


/* =================================
   CONTACT BUTTON
================================= */

.contact-btn {
    width: 100%;

    padding: 18px 25px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #0d6efd,
        #198754
    );

    color: #fff;

    font-size: 1rem;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    transition: all 0.3s ease;
}


.contact-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(13, 110, 253, 0.25);
}


.contact-btn i {
    transition: transform 0.3s ease;
}


.contact-btn:hover i {
    transform: translateX(5px);
}