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

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    margin-top: 40px;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4.25rem);
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 300;
    color: var(--text-white);
    max-width: 600px;
    opacity: 0.9;
}

/* Grey Line */
.contact-grey-line {
    background-color: #231F20;
    height: 50px;
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */
.contact-info-section {
    position: relative;
    overflow: hidden;
}

.contact-info-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 31, 32, 0.85);
}

.contact-info-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    display: block;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--main-color);
    text-decoration: none;
    color: inherit;
}

.contact-card-icon {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.contact-card-label {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-card-value {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-card:hover .contact-card-value {
    color: var(--main-color);
}

/* Decorative Lines */
.contact-decorative-line-left {
    position: absolute;
    top: 50px;
    left: 100px;
    width: 2px;
    height: calc(100% - 100px);
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.contact-decorative-line-right {
    position: absolute;
    top: 50px;
    right: 100px;
    width: 2px;
    height: calc(100% - 100px);
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

/* ============================================
   SEND A MESSAGE SECTION
   ============================================ */
.contact-hero-section .hero-background .hero-bg-image {
    object-position: top;
}

.contact-form-section {
    background-color: var(--dark-bg);
}

.contact-form-header {
    position: relative;
    height: 108px;
    overflow: hidden;
}

.contact-form-header-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-form-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 31, 32, 0.85);
}

.contact-form-header .container-fluid {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-form-title {
    color: var(--text-white);
    padding-left: 3.8125rem;
    margin: 0;
}

.contact-form-content {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(to top, var(--dark-bg), #5a5a5a);
}

.contact-form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--text-white);
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-input {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-black);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.15);
    outline: 0;
}

.contact-form-input::placeholder {
    color: var(--medium-gray);
}

textarea.contact-form-input {
    resize: vertical;
    min-height: 140px;
}

.contact-form-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-contact-submit {
    padding: 1.25rem 3rem;
    font-size: 1.375rem;
}

.btn-contact-submit:hover {
    transform: scale(1.03);
}

/* Form Decorative Lines */
.contact-form-decorative-line-left {
    position: absolute;
    top: 50px;
    left: 100px;
    width: 2px;
    height: calc(100% - 100px);
    background-color: rgba(0, 0, 0, 0.08);
}

.contact-form-decorative-line-right {
    position: absolute;
    top: 50px;
    right: 100px;
    width: 2px;
    height: calc(100% - 100px);
    background-color: rgba(0, 0, 0, 0.08);
}

/* ============================================
   CONTACT MESSAGES
   ============================================ */
.contact-messages {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    width: 90%;
    max-width: 500px;
}

.contact-alert {
    font-family: var(--font-body);
    text-align: center;
    border-radius: 0;
}

/* ============================================
   CONTACT FINAL CTA
   ============================================ */
.contact-final-cta .final-cta-content {
    min-height: 450px;
}

/* ============================================
   RESPONSIVE - CONTACT PAGE
   ============================================ */
@media (max-width: 1199px) {
    .contact-card-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {
    .contact-hero-section {
        height: 380px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info-content {
        padding: 60px 2rem;
    }

    .contact-form-title {
        font-size: 3rem;
        padding-left: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-decorative-line-left,
    .contact-decorative-line-right {
        display: none;
    }

    .contact-form-decorative-line-left,
    .contact-form-decorative-line-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        height: 350px;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-info-content {
        padding: 40px 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-title {
        font-size: 2.25rem;
        padding-left: 1rem;
    }

    .contact-form-content {
        padding: 2rem 1rem 3rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .btn-contact-submit {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-hero-section {
        height: auto;
        min-height: 250px;
        padding: 150px 0 40px 0;
    }

    .contact-hero-content {
        margin-top: 0;
        padding: 0 2rem;
    }

    .contact-hero-title {
        margin-top: 0;
    }

    .contact-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-card-label {
        font-size: 1.125rem;
    }

    .contact-card-value {
        font-size: 1rem;
    }
}
