/* ==========================================
   CONTACT
   ========================================== */

/* Contact Hero Section */
.contact-hero-section {
    min-height: 100vh;
    background-image: url('../assets/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
}

.contact-hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 0 1rem;
}

.contact-hero-title {
    font-family: 'Gotham-Bold', sans-serif;
    font-size: 70px;
    line-height: 77px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-hero-copy {
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.3px;
    max-width: 500px;
}

/* Scroll Button */
.tk-scroll-pill {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.tk-scroll-pill:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(5px);
}

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

.contact-intro-text {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    line-height: 1.8;
    color: #666666;
    font-weight: 300;
}

/* Contact Content Section */
.contact-content-section {
    background: #ffffff;
    padding: 80px 0 120px;
}

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

.contact-card-title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card-subtitle {
    color: #0e0e0e;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 22px;
    font-size: 10px;
    line-height: 1.9em;
}

.contact-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    font-weight: 300;
}

.contact-card-email {
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 2rem;

}

.contact-card-button {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background-color: #424242;
    margin-top: 21px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 29px;
    font-size: 11px;
    display: inline-block;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.contact-card-button:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Location */
.contact-location {
    margin-top: 1.5rem;
}

.location-city {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.location-address {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    font-weight: 300;
    margin-bottom: 0;
}

/* Map Section */
.contact-map-section {
    background: #f5f5f5;
    padding: 0;
}

.full-screen-image.contact-map {
    background-image: url('../assets/location.jpg');
    background-position: 50% center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh;
}


/* Responsive Device */
@media (max-width: 992px) {
    .contact-hero-section .contact-hero-title {
        font-size: 55px;
    }

    .contact-hero-section .contact-hero-copy {
        max-width: 450px;
    }

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

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



    .contact-card {
        margin-bottom: 2rem;
    }

    .contact-map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero-copy {
        max-width: 100%;
    }

    .contact-intro-section {
        padding: 50px 0;
    }

    .contact-card-email {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .contact-hero-section .contact-hero-title {
        font-size: 50px;
        line-height: 1.2;
    }
}

/* ==========================================
   END CONTACT
   ========================================== */