/* Hero Section */
.hero-section {
    position: relative;
}

/* Contact Info Cards */
.contact-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.building-img {
    background-image: url('../images/banner.jpg');
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Form Styling */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #a99a66;
    box-shadow: 0 0 0 0.25rem rgba(169, 154, 102, 0.25);
}

.btn-secondary {
    background-color: #2a3540;
    border-color: #2a3540;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1e2730;
    border-color: #1e2730;
}

/* TikTok Videos Section */
.tiktok-video-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

/* Map Section */
.map-responsive {
    overflow: hidden;
    padding-bottom: 450px;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .p-5 {
        padding: 2rem !important;
    }

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

@media (max-width: 767.98px) {
    .tiktok-video-container {
        margin-bottom: 2rem;
    }
}

.powr-social-feed {
    width: 60vw;
    margin: auto;
    min-width: 300px;
    padding: 30px;
    background-color: white;
}

.tt-bg {
    background-image: url("../images/banner.jpg");
    padding: 30px;
}

#powrIframeLoader {
    display: none;
}