.Contact .navbar-brand img {
    width: 60%;
}
.Contact .footer-logo img {
    width: 70%;
}
.info-list .info-text {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

    .contact-container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start; /* Aligns items to the top */
            gap: 50px;
            margin: 40px auto;
        }

        /* --- Left Side: Info --- */
        .contact-info {
            flex: 1;
            padding-top: 40px; /* Aligns visual weight with form title */
            max-width: 500px;
        }

        .contact-info h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 40px;
            color: #111;
        }

        .contact-info h1 em {
            font-style: italic;
            font-weight: 600;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Icon Circle Styling */
        .icon-box {
            width: 50px;
            height: 50px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    background-color: #fff;
            flex-shrink: 0;
            color: #333;
        }

        .info-text {
            font-size: 16px;
            color: var(--text-grey);
            line-height: 1.5;
        }

        /* --- Right Side: Form Card --- */
        .form-card {
            flex: 1;
            background-color: var(--white);
            
            border-radius: 12px;
           
        }

        .form-card h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-slate);
            font-size: 32px;
            text-align: center;
           
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--input-border);
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #333;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-control::placeholder {
            color: #999;
        }

        .form-control:focus {
            border-color: var(--primary-slate);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background-color: var(--primary-slate);
            color: var(--white);
            border: none;
            padding: 15px 35px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #3e6075;
        }

        /* --- SVG Icons --- */
        svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }
    
    

/* --- Form Container Card --- */
.refotoback-form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px; /* Rounded corners for the card */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft shadow */
    max-width: 600px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid #f0f0f0; /* Very subtle border */
}

/* --- Title Styling --- */
.refotoback-form-card h2 {
    font-family: 'Playfair Display', serif;
    color: #527a92; /* The slate blue color */
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

/* --- Input Fields & Textarea Styling --- */
.refotoback-form-card input[type="text"],
.refotoback-form-card input[type="email"],
.refotoback-form-card input[type="tel"],
.refotoback-form-card textarea {
    width: 100%;
    padding: 18px 25px; /* Large padding for spacious look */
    
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 12px; /* Rounded corners for inputs */
    font-size: 16px;
    color: #333;
    outline: none;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

/* --- Focus State (When clicking inside) --- */
.refotoback-form-card input:focus,
.refotoback-form-card textarea:focus {
    border-color: #527a92;
    box-shadow: 0 0 0 3px rgba(82, 122, 146, 0.1);
}

/* --- Placeholder Text Color --- */
.refotoback-form-card ::placeholder {
    color: #888;
    font-weight: 500;
}

/* --- Textarea Specifics --- */
.refotoback-form-card textarea {
   
    resize: none; /* Remove drag handle */
}

/* --- Submit Button Styling --- */
.refotoback-form-card input[type="submit"] {
    background-color: #527a92;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: auto; /* Keeps button natural size like image */
    display: inline-block;
}

/* Hover Effect for Button */
.refotoback-form-card input[type="submit"]:hover {
    background-color: #3e6075;
    transform: translateY(-2px);
}

/* Remove default CF7 paragraphs spacing if strictly needed */
.refotoback-form-card p {
    margin-bottom: 0;
}
.screen-reader-response {
    display:none;
}
.wpcf7-response-output {
        text-align: center;
    margin-top: 15px;
    color: red;
}
.wpcf7-not-valid-tip {
    color:red;
    padding-bottom: 10px;
}
.wpcf7-form-control{
    margin-top: 20px;
}

        /* --- Responsive --- */
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .contact-info {
                text-align: center;
                padding-top: 0;
            }

            .info-item {
                flex-direction: column;
                gap: 10px;
            }

            .form-card {
                width: 100%;
                padding: 30px;
            }
        }
