/* Contact Page - Professional Redesign */

/* Hero: Static Image */
.contact-hero-static {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/production/contact_us.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.contact-hero-static::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: 1.5rem;
}

.hero-cta .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: .8rem 1.5rem;
}

/* Grid Section - Super Modern Redesign */
.contact-grid-section {
    background: #f5f5f7;
    /* Soft, Apple-like background */
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.lead.text-muted {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 4rem auto;
    color: #6e6e73 !important;
}

.c-card {
    background: #fff;
    /* White cards on grey background */
    border-radius: 24px;
    /* Larger radius for modern feel */
    padding: 40px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content to the start */
    text-align: left;
}

.c-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.c-card__icon {
    width: 56px;
    height: 56px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 18px;
    /* Squircle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.c-card:hover .c-card__icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotate(-15deg) scale(1.1);
}

.c-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.c-card__title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.c-card__text {
    color: #6e6e73;
    font-size: 1rem;
    line-height: 1.6;
}

.c-card__text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.c-card__text a:hover {
    text-decoration: underline;
}

.c-list--unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6e6e73;
}

/* Map Section */
.map-full {
    padding: 50px 0;
    margin-bottom: 64px;
    background: #f5f5f7;
}

.map-container {
    background: #f5f5f7;
    height: 750px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

/* Global Reach Banner */
.reach-banner-static {
    background: var(--primary-color);
    color: #fff;
    padding: 24px 0;
    text-align: center;
}

.reach-banner-static p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}