/* Contacts Page Styles */

/* Hero Section */
.contacts-hero {
    background-color: #1a1a1a;
    /* Fallback */
    /* Add a subtle pattern or gradient if desired, keeping it clean */
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
    margin-top: 60px;
    /* Offset fixed header */
}

.contacts-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.contacts-hero-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Layout */
.contacts-content {
    padding: 60px 20px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Card */
.info-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.info-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.info-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-text a,
.info-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Social Connect */
.social-connect {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-connect h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a1a1a;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

/* Checkbox */
/* Modern Native Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.checkbox-container:hover {
    background: #f9f9f9;
}

.checkbox-container input {
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1a1a1a;
    margin-top: 2px;
}

.checkmark {
    display: none;
}

.label-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.label-text a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
}

/* Submit Button */
.btn-submit {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Form Message */
.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contacts-content {
        padding: 40px 15px;
    }

    .info-card,
    .form-card {
        padding: 25px;
    }
}