/* Contact Page Styles - Minimal Redesign */

/* Hero Section - Clean & Simple */
.contact-hero {
    position: relative;
    height: 400px; /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 100px; /* Push below fixed navbar */
    padding-top: 0;
    background: #1a1a1a; /* Fallback color */
    border-radius: 20px; /* Optional: Rounded corners for modern look */
    margin-left: 20px;
    margin-right: 20px;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Darken image directly */
}

.contact-hero .hero-overlay {
    display: none; /* Removed separate overlay div for simplicity */
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-content-wrapper h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #fff;
}

.hero-content-wrapper p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

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

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-side {
    width: 100%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.section-header-left {
    margin-bottom: 60px;
    text-align: center;
}

.section-header-left .sub-title {
    color: #999;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header-left p {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Info Cards Grid - Minimal */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 4px; /* Less rounded */
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: transparent;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #f9f9f9;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.info-details p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 400;
}

.contact-link, .address-text {
    display: block;
    color: #444;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* Social Media Section */
.contact-social {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.contact-social h4 {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid #eee;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

/* Map Section */
.map-section {
    height: 500px;
    width: 100%;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Minimal gray map */
    transition: filter 0.5s ease;
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 350px;
        padding-top: 0;
        margin-top: 80px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .hero-content-wrapper h1 {
        font-size: 2.2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 30px;
    }

    .info-card {
        padding: 30px 20px;
    }
    
    .section-header-left h2 {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}