/* === PAGE-SPECIFIC CONTACT/FORM STYLES === */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Titles */
.contact-page h2 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    font-size: 2em;
    text-align: center;
}

/* Input Fields & Textarea Layout */
form > div {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
form > div:nth-child(2) > input,
form > div:nth-child(3) > input {
    flex: 1; /* These should take up full width when alone */
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea {
    width: 100%;
    padding: 18px 20px;
    background: #111; 
    border: 2px solid red; 
    color: #fff;
    font-size: 1em;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, 
textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button Alignment */
.submit-container {
    text-align: center;
    margin-top: 40px;
}

/* === SUBSCRIPTION SECTION STYLES === */
.subscribe-section {
    background: #111;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 3px solid #FF0000;
}

.subscribe-section h2 {
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.subscribe-input-container {
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    border-bottom: 3px solid #FF0000;
    padding-bottom: 5px;
}

.subscribe-input-container input {
    flex-grow: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 0;
    font-weight: 600;
    color: #fff;
}

.subscribe-input-container button {
    background: transparent;
    border: none;
    color: #FF0000;
    font-size: 2em;
    cursor: pointer;
    padding: 0 10px;
    transition: transform .3s;
}
.subscribe-input-container button:hover {
    transform: translateX(5px);
}

.privacy-note {
    font-size: 0.8em;
    line-height: 1.8;
    color: #999;
    margin-top: 40px;
}

.privacy-note a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}
.privacy-note a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    form > div {
        flex-direction: column;
        gap: 0;
    }
    .cta-btn {
        padding: 12px 30px;
        font-size: .9em;
    }
}