/* ================= CONTACT PAGE ================= */

.contact-page {

    width: 100%;

    overflow-x: hidden;

    padding: 120px 20px;

    background:
        linear-gradient(rgba(245,240,230,0.94),
        rgba(245,240,230,0.94)),

        url("https://www.transparenttextures.com/patterns/stardust.png");

    background-size: cover;

    background-position: center;
}

/* HERO */

.contact-hero {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

.contact-tag {

    color: #c48b2d;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 15px;
}

.contact-hero h1 {

    font-size: 58px;

    line-height: 1.2;

    color: #111;

    margin-bottom: 20px;

    font-family: 'Playfair Display', serif;
}

.contact-subtitle {

    color: #555;

    line-height: 1.8;

    font-size: 17px;
}

/* ================= MAIN ================= */

.contact-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 35px;

    align-items: start;
}

/* ================= LEFT INFO ================= */

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 22px;
}

/* CARD */

.info-card {

    background: #1b1b2f;

    padding: 28px;

    border-radius: 22px;

    color: white;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s;

    width: 100%;
}

.info-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ICON */

.info-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg,#d4a13d,#f5d277);

    font-size: 28px;

    margin-bottom: 18px;
}

/* TITLE */

.info-card h3 {

    font-size: 24px;

    margin-bottom: 10px;

    font-family: 'Playfair Display', serif;
}

/* LINKS */

.info-card a {

    color: #f5c76d;

    text-decoration: none;

    font-size: 16px;

    word-break: break-word;
}

/* ================= FORM BOX ================= */

.contact-form-box {

    background: white;

    border-radius: 25px;

    padding: 45px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    width: 100%;

    overflow: hidden;
}

/* FORM TITLE */

.contact-form-box h2 {

    font-size: 40px;

    margin-bottom: 12px;

    color: #111;

    font-family: 'Playfair Display', serif;
}

/* NOTE */

.form-note {

    color: #666;

    margin-bottom: 28px;

    line-height: 1.7;
}

/* FORM */

.contact-form-box form {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* INPUT */

.contact-form-box input,
.contact-form-box textarea {

    width: 100%;

    max-width: 100%;

    padding: 16px 18px;

    border-radius: 14px;

    border: 1px solid #ddd;

    font-size: 15px;

    outline: none;

    transition: 0.3s;

    resize: none;
}

/* FOCUS */

.contact-form-box input:focus,
.contact-form-box textarea:focus {

    border-color: #c48b2d;

    box-shadow: 0 0 0 4px rgba(196,139,45,0.15);
}

/* BUTTON */

.contact-form-box button {

    background: linear-gradient(135deg,#d4a13d,#f0c35f);

    color: #111;

    border: none;

    padding: 16px;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s;
}

/* HOVER */

.contact-form-box button:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 24px rgba(212,161,61,0.35);
}

/* ================= TABLET ================= */

@media(max-width: 992px) {

    .contact-page {

        padding: 90px 18px;
    }

    .contact-container {

        grid-template-columns: 1fr;

        gap: 28px;
    }

    .contact-hero h1 {

        font-size: 44px;
    }

    .contact-form-box {

        padding: 35px 28px;
    }
}

/* ================= MOBILE ================= */

@media(max-width: 600px) {

    .contact-page {

        padding: 80px 14px;
    }

    .contact-hero {

        margin-bottom: 45px;
    }

    .contact-hero h1 {

        font-size: 32px;

        line-height: 1.3;
    }

    .contact-subtitle {

        font-size: 15px;
    }

    .contact-form-box {

        padding: 26px 18px;

        border-radius: 18px;
    }

    .contact-form-box h2 {

        font-size: 28px;
    }

    .info-card {

        padding: 22px;
    }

    .info-card h3 {

        font-size: 20px;
    }

    .contact-form-box input,
    .contact-form-box textarea {

        padding: 14px;
    }

    .contact-form-box button {

        padding: 14px;
    }
}

/* ================= EXTRA SMALL ================= */

@media(max-width: 380px) {

    .contact-hero h1 {

        font-size: 28px;
    }

    .contact-form-box {

        padding: 22px 15px;
    }

    .info-card {

        padding: 18px;
    }
}