/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(180deg, #0b0b0b 0%, #171717 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.contact-header {
    text-align: center;
    max-width: 720px;
}

/* Left - Form Wrapper */
.contact-form-wrapper {
    width: 100%;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #0C1023;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.contact-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 36px 24px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
    align-items: stretch;
}

.contact-card-footer {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    column-gap: 24px;
    padding: 16px 24px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: #ffffff;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #0C1023;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FF601A;
    background: #ffffff;
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #0C1023;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #FF601A;
    background: #ffffff;
}

.form-textarea::placeholder {
    color: #9CA3AF;
}

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

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 32px 0;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #FF601A;
}

.checkbox-label {
    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #FF601A;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.btn-submit:hover {
    background: #e55515;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 96, 26, 0.3);
}

/* Contact Info */
.contact-info-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    background: #ffffff;
}

.contact-info-icon svg {
    width: 16px;
    height: 16px;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.contact-info-value {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 400;
}

.contact-divider {
    width: 1px;
    height: 40px;
    background: #E0E0E0;
    align-self: center;
}

/* Social Links */
.contact-social {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}

.contact-social-label {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

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

.contact-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #D1D5DB;
    transition: all 0.3s ease;
}

.contact-social-icon svg {
    width: 14px;
    height: 14px;
    fill: #111827;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    background: #FF601A;
    border-color: #FF601A;
}

.contact-social-icon:hover svg {
    fill: #ffffff;
}

/* Right - Image Wrapper */
.contact-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
======================================== */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 140px 0 60px;
    }

    .contact-hero-title {
        font-size: 52px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-card {
        padding: 32px;
    }

    .contact-card-body {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .contact-card-body {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-image-wrapper {
        order: 2;
        max-height: 500px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .contact-hero {
        padding: 120px 0 40px;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

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

    .contact-divider {
        width: 100%;
        height: 1px;
    }

    .contact-image-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 400px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .contact-title {
        font-size: 28px;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: 15px;
    }
}
