/* =========================================================
   PJS COLLECTIONS – CONTACT PAGE
   Matching styles with About Us page
========================================================= */

:root {
    --gold: #c6a667;
    --gold-light: #d8c08f;
    --gold-dark: #a28c63;
    --black: #000000;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #8a8a8a;
    --bg-light: #fafafa;
    --bg-ivory: #faf7f3;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-wrapper {
    padding-top: 180px;
    /* Matched to about-editorial padding */
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-ivory) 50%, var(--white) 100%);
    min-height: 80vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-wrapper {
        padding-top: 140px;
    }
}

/* Typography */
.contact-title {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-description {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Info Items (Left Side) */
.info-list-container {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.info-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    background: rgba(198, 166, 103, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.info-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-text strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

/* Form Box (Right Side) */
.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-family: inherit;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(198, 166, 103, 0.1);
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: var(--white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Alerts */
.alert-box {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid transparent;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border-color: rgba(39, 174, 96, 0.2);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
}