.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ===========================
   CONTACT INFO
   =========================== */
.contact-info h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-method p,
.contact-method a {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-method a:hover,
.contact-method a:focus {
    color: #000;
}

.contact-method a:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form-section {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #d4d4d4;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
    border-color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-send {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-send:hover {
    background: #1a1a1a;
}

.btn-send:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.btn-send:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Form Messages */
.form-success,
.form-error {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

.form-success.show,
.form-error.show {
    display: flex;
}

.form-success {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.form-error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 40px 16px 60px;
    }

    .contact-info h1 {
        font-size: 32px;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .contact-form-section {
        padding: 32px 24px;
    }

    .contact-method {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 32px 16px 48px;
    }

    .contact-info h1 {
        font-size: 28px;
    }

    .contact-form-section {
        padding: 24px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 14px;
    }

    .btn-send {
        padding: 14px 20px;
        font-size: 14px;
    }
}