/* CONTACT PAGE BASE */
.contact-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #ffffff;
}

/* MAIN CARD */
.contact-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    padding: 40px 32px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    text-align: center;
}

/* TITLES */
.contact-card h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

.contact-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 26px;
}

/* INFO BOXES */
.contact-info {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.info-box {
    background: #000;
    padding: 14px;
    border-radius: 12px;
}

.info-box span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.info-box a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #000;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* =========================================
   CONTACT BACKGROUND BRAND LOGO (CSS ONLY)
   ========================================= */

.contact-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* SYMBOL (LEFT SIDE) */
.contact-section::before {
    content: "h!";
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    
    font-size: 260px;
    font-weight: 800;
    font-family: inherit;
    
    color: rgba(0, 0, 0, 0.06);
    letter-spacing: -10px;
    
    z-index: 0;
    pointer-events: none;
}

/* TEXT (RIGHT / CENTER) */
.contact-section::after {
    content: "THE HUNTWEAR";
    position: absolute;
    right: -60px;
    top: 55%;
    transform: translateY(-50%);
    
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 12px;
    text-transform: uppercase;
    
    color: rgba(0, 0, 0, 0.06);
    
    z-index: 0;
    pointer-events: none;
}

/* ENSURE CONTENT STAYS ABOVE LOGO */
.contact-card {
    position: relative;
    z-index: 2;
}

