.contact-section {

    width: 100%;

    padding: 120px 8%;

    overflow: hidden;
}

/* =========================================
CONTAINER
========================================= */

.contact-container {

    width: 100%;

    display: grid;

    grid-template-columns: 460px 1fr;

    gap: 60px;

    align-items: center;
}

/* =========================================
IMAGE SIDE
========================================= */

.contact-image {

    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;
}

/* =========================================
IMAGE CARD
========================================= */

.image-card {

    position: relative;

    width: 100%;

    border-radius: 34px;

    padding: 14px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.78),
            rgba(255, 255, 255, 0.45));

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* STACK EFFECT */

.image-card::before,
.image-card::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 34px;

    background: white;

    z-index: -2;
}

.image-card::before {

    transform:
        rotate(-1.5deg);

    top: 10px;

    opacity: 0.35;
}

.image-card::after {

    transform:
        rotate(1.5deg);

    top: 18px;

    opacity: 0.18;
}

/* =========================================
SHINE
========================================= */

.shine {

    position: absolute;

    top: -120%;
    left: -50%;

    width: 180%;
    height: 220%;

    background:
        linear-gradient(115deg,
            transparent 20%,
            rgba(255, 255, 255, 0.24) 50%,
            transparent 80%);

    transform: rotate(25deg);

    transition: 0.8s ease;

    pointer-events: none;
}

.image-card:hover .shine {

    left: 120%;
}

/* =========================================
HOVER
========================================= */

.image-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 35px 65px rgba(0, 0, 0, 0.12);
}

/* =========================================
IMAGE
========================================= */

/* FIX:
   WALANG EXTRA SPACE
   HINDI CLOSE UP
   FULL IMAGE PA RIN
*/

.image-card img {

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    display: block;

    background: #f4f4f4;

    border-radius: 24px;
}

/* =========================================
BADGE
========================================= */

.image-badge {

    position: absolute;

    left: 24px;
    bottom: 24px;

    padding: 12px 18px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.08);
}

.image-badge span {

    display: block;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #888;

    margin-bottom: 4px;
}

.image-badge h4 {

    font-size: 18px;

    letter-spacing: -0.5px;

    color: #1f1f1f;
}

/* =========================================
CONTENT
========================================= */

.contact-content {

    display: flex;

    flex-direction: column;
}

/* LABEL */

.mini-label {

    display: inline-block;

    width: fit-content;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #ff8a65;

    margin-bottom: 18px;
}

/* TITLE */

.contact-content h1 {

    font-size: 78px;

    line-height: 0.9;

    letter-spacing: -4px;

    margin-bottom: 24px;
}

/* DESCRIPTION */

.contact-description {

    max-width: 680px;

    font-size: 15px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 38px;
}

/* =========================================
DETAILS
========================================= */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-bottom: 32px;
}

/* CARD */

.detail-card {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.45));

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);

    transition: 0.3s ease;
}

.detail-card:hover {

    transform: translateY(-4px);
}

/* ICON */

.detail-icon {

    width: 54px;
    height: 54px;

    flex-shrink: 0;

    border-radius: 16px;

    display: flex;

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

    background:
        rgba(255, 255, 255, 0.55);

    font-size: 20px;
}

/* TEXT */

.detail-text span {

    display: block;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #999;

    margin-bottom: 5px;
}

.detail-text h4 {

    font-size: 17px;

    line-height: 1.4;

    color: #1f1f1f;
}

/* =========================================
SOCIAL LINKS
========================================= */

.social-links {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 32px;
}

.social-links a {

    height: 48px;

    padding: 0 20px;

    display: inline-flex;

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

    border-radius: 999px;

    background: white;

    color: #1f1f1f;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.05);

    transition: 0.3s ease;
}

.social-links a:hover {

    background: #3a86ff;

    color: white;

    transform: translateY(-4px);
}

/* =========================================
BUTTON
========================================= */

.resume-btn {

    width: fit-content;

    height: 56px;

    padding: 0 28px;

    display: inline-flex;

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

    border-radius: 999px;

    background: #1f1f1f;

    color: white;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.10);
}

.resume-btn:hover {

    background: #ff8a65;

    transform: translateY(-4px);
}

/* =========================================
TABLET
========================================= */

@media(max-width: 1100px) {

    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-content h1 {

        font-size: 62px;
    }

    .image-card {

        max-width: 520px;

        margin: auto;
    }
}

/* =========================================
MOBILE
========================================= */

@media(max-width: 768px) {

    .contact-section {

        padding: 90px 6%;
    }

    .contact-content h1 {

        font-size: 46px;

        letter-spacing: -2px;
    }

    .contact-description {

        font-size: 14px;
    }

    .image-card {

        padding: 12px;

        border-radius: 26px;
    }

    .image-card::before,
    .image-card::after {

        border-radius: 26px;
    }

    .image-card img {

        border-radius: 18px;
    }

    .image-badge {

        left: 16px;
        bottom: 16px;

        padding: 10px 14px;

        border-radius: 14px;
    }

    .image-badge h4 {

        font-size: 15px;
    }

    .detail-card {

        padding: 18px;

        border-radius: 18px;
    }

    .detail-icon {

        width: 48px;
        height: 48px;

        border-radius: 14px;

        font-size: 18px;
    }

    .detail-text h4 {

        font-size: 15px;
    }

    .social-links a {

        width: 100%;
    }

    .resume-btn {

        width: 100%;
    }
}