
        .contact-section-modern {
            padding: 100px 0;
            background-color: #ffffff;
            font-family: 'Josefin Sans', sans-serif;
        }

        .main-title {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

        /* Form Styling */
        .form-input {
            width: 100%;
            padding: 15px 20px;
            background: #fcfcfc;
            border: 1px solid #eee;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #000;
            background: #fff;
        }

        .contact-btn {
            background: #000;
            color: #fff;
            border: 1px solid #000;
            padding: 15px 40px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            transition: 0.3s ease;
        }

        .contact-btn:hover {
            background: #fff;
            color: #000;
        }

        /* Info Panel Styling */
        .contact-info-panel {
            background: #000;
            color: #fff;
            padding: 50px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .panel-title {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 4px;
            margin-bottom: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .info-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #888;
        }

        .info-item p {
            font-size: 1.1rem;
            margin: 0;
            font-weight: 300;
        }

        /* Texture Overlay */
        .panel-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            z-index: 1;
            pointer-events: none;
        }

        .panel-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: invert(1);
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }

            .contact-info-panel {
                padding: 30px;
            }
        }

        .contact-info-section {
            padding: 80px 0;
            background-color: #fcfcfc;
            font-family: 'Josefin Sans', sans-serif;
        }

        .info-card-wrapper {
            background: #fff;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid #eee;
        }

        /* Grayscale Map Trick */
        .map-container {
            height: 100%;
            min-height: 450px;
            filter: grayscale(100%) invert(5%) contrast(90%);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
        }

        .info-content-box {
            padding: 60px;
        }

        .info-content-box .subtitle {
            font-size: 0.8rem;
            letter-spacing: 4px;
            color: #999;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .info-content-box .main-title {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 40px;
        }

        /* Detail Items */
        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .icon-box {
            font-size: 1.2rem;
            color: #000;
            width: 30px;
        }

        .text-box p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0;
            color: #333;
            font-weight: 300;
        }

        .text-box a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .text-box a:hover {
            color: #888;
        }

        /* Social Icon Bar */
        .social-wrapper {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 25px;
        }

        .social-wrapper a {
            font-size: 1.3rem;
            color: #000;
            transition: transform 0.3s;
        }

        .social-wrapper a:hover {
            transform: translateY(-5px);
        }

        @media (max-width: 991px) {
            .info-content-box {
                padding: 40px;
            }

            .map-container {
                min-height: 300px;
            }
        }
  /* Container Fixes */
.contact-info-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow-x: hidden; /* Stops horizontal shaking */
}

.info-card-wrapper {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

/* Map Styling */
.map-container {
    height: 100%;
    min-height: 500px;
    filter: grayscale(100%) contrast(1.2); /* Premium Architectural Look */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Info Box Styling */
.info-content-box {
    padding: 60px; /* Desktop Padding */
}

.info-content-box .main-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Mobile & Tablet Adjustments */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .map-container {
        min-height: 350px; /* Shorter map for mobile */
    }

    .info-content-box {
        padding: 40px 25px; /* Reduced padding for mobile screen width */
    }

    .info-content-box .main-title {
        font-size: 1.8rem;
    }
    
    .social-wrapper {
        justify-content: center; /* Center icons on mobile for better UI */
    }
}

/* Fix for very small phones */
@media (max-width: 400px) {
    .info-content-box {
        padding: 30px 15px;
    }
    .text-box p {
        font-size: 0.9rem;
    }
}