       /* ==========================================================================
           EDITORIAL HERO
           ========================================================================== */
        .contact-hero {
            height: 50vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('../images/newimg/it5.jpeg') center center/cover fixed;
            position: relative;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            /* background: linear-gradient(to top, var(--bg-dark) 0%, rgba(3, 3, 3, 0.7) 100%); */
        }

        .hero-content { position: relative; z-index: 2; margin-top: 80px; }
        .hero-content h1 { font-size: 85px; margin-top: 100px; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: 2px; }
        .hero-content p { color: red; font-size: 24px; letter-spacing: 5px; text-transform: uppercase; }

        /* ==========================================================================
           CONCIERGE & FORM LAYOUT
           ========================================================================== */
        .concierge-section {
            padding: 80px 0 100px;
            background: var(--bg-dark);
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 100px;
            align-items: flex-start;
        }

        /* Left Side: Atelier Information */
        .concierge-info {
            padding-right: 40px;
        }

        .concierge-info h2 {
            font-size: 50px;
            color: var(--brand-silver);
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .concierge-info > p {
            color: var(--text-muted);
            font-size: 24px;
            line-height: 1.8;
            margin-bottom: 50px;
            font-weight: 500;
        }

        .info-block {
            margin-bottom: 40px;
            border-left: 1px solid rgba(193, 18, 31, 0.3);
            padding-left: 25px;
            transition: var(--transition);
        }

        .info-block:hover {
            border-left-color: var(--brand-red);
        }

        .info-block h4 {
            color: var(--brand-red);
            font-size: 21px;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }

        .info-block p, .info-block a {
            /* color: var(--brand-silver); */
            color: #000000;
            font-size: 23px;
            font-family: var(--font-serif);
            display: block;
            margin-bottom: 5px;
        }

        .info-block a:hover {
            color: #b31f1f;
        }

        .info-block span {
            display: block;
            color: var(--text-muted);
            font-size: 20px;
            margin-top: 5px;
            font-weight: 400;
        }

        /* Right Side: High-End Form */
        .form-container {
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 70px 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            position: relative;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(to right, var(--brand-red), transparent);
        }

        .form-group {
            margin-bottom: 40px;
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 23px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 10px 0;
            color: #fff;
            font-size: 21px;
            font-family: var(--font-sans);
            font-weight: 300;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-bottom-color: var(--brand-red);
        }

        .form-control::placeholder {
            color: rgba(255,255,255,0.2);
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23C1121F" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right center;
        }

        select.form-control option {
            background: var(--bg-card);
            color: #fff;
        }

        textarea.form-control {
            resize: none;
            height: 100px;
            font-size: 21px;
        }

        .btn-submit {
            width: 100%;
            background: var(--brand-red);
            color: #fff;
            border: none;
            padding: 22px;
            font-family: var(--font-sans);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #fff;
            color: #000;
        }

        /* ==========================================================================
           ATELIER LOCATION SHOWCASE
           ========================================================================== */
        .location-showcase {
            position: relative;
            height: 700px;
            display: flex;
            align-items: center;
        }

        .location-image {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(80%) brightness(0.6);
        }

        .location-card {
            position: relative;
            z-index: 2;
            background: var(--bg-card);
            padding: 60px;
            max-width: 500px;
            margin-left: 10%;
            border: 1px solid rgba(255,255,255,0.05);
            border-left: 3px solid var(--brand-red);
        }

        .location-card h2 {
            font-size: 45px;
            color: var(--brand-silver);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .location-card p {
            color: var(--text-muted);
            font-weight: 400;
            margin-bottom: 30px;
            font-size: 21px;
        }

        .btn-map {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            color: #cf1515;
            font-size: 21px;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-bottom: 1px solid var(--brand-red);
            padding-bottom: 5px;
        }
        .btn-map i { transition: transform 0.3s ease; }
        .btn-map:hover i { transform: translateX(10px); }

        /* ==========================================================================
           FOOTER
           ========================================================================== */
      
        /* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
        @media(max-width:1200px) {
            .hero-content h1 { font-size: 70px; }
            .contact-grid { gap: 60px; }
            .form-container { padding: 50px 40px; }
        }

        @media(max-width:1024px) {
            .contact-grid { grid-template-columns: 1fr; }
            .concierge-info { padding-right: 0; }
            .location-card { margin-left: 5%; max-width: 90%; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        /* @media(max-width:768px) {
          
            .hero-content h1 { font-size: 50px; }
            .concierge-info h2 { font-size: 40px; }
            .form-container { padding: 40px 25px; }
            
            .location-showcase { height: 500px; }
            .location-card { padding:  30px; }
            .location-card h2 { font-size: 35px; }

            .footer-grid { grid-template-columns: 1fr; }
        } */

          @media (max-width:768px){

    .hero-content h1{
        font-size:50px;
    }

    .concierge-info h2{
        font-size:40px;
    }

    .form-container{
        padding:40px 25px;
    }

    /* LOCATION */
    .location-showcase{
        position:relative;
        height:600px;
        overflow:hidden;
    }

    .location-image{
        position:absolute;
        inset:0;
    }

    .location-image img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .location-card{
        position:absolute;
        left:15px;
        right:15px;
        bottom:20px;

        margin:0;
        max-width:unset;
        width:auto;

        padding:25px;
        z-index:10;
    }

    .location-card h2{
        font-size:28px;
        line-height:1.2;
    }

    .location-card p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:15px;
    }

    .btn-map{
        font-size:14px;
        letter-spacing:2px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}