
        .homenkey_contact_section {
            /* max-width: 1200px; */
            margin: 50px auto;
            padding: 0 20px;
        }

        .homenkey_contact_title {
            text-align: center;
            margin-bottom: 50px;
        }

        .homenkey_contact_title h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
        }

        .homenkey_contact_title p {
            font-size: 15px;
            color: #666;
        }

        .homenkey_contact_container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .homenkey_contact_info {
            padding: 30px 0;
        }

        .homenkey_contact_info h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 20px;
        }

        .homenkey_contact_info p {
            font-size: 12px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .homenkey_contact_details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .homenkey_contact_item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .homenkey_contact_icon {
            width: 50px;
            height: 50px;
            background-color: #d79c47;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .homenkey_contact_icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .homenkey_contact_text h4 {
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
        }

        .homenkey_contact_text p {
            font-size: 12px;
            color: #666;
            margin: 0;
        }

        .homenkey_contact_form {
            background-color: #f8f8f8;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .homenkey_contact_form h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 30px;
        }

        .homenkey_form_group {
            margin-bottom: 15px;
        }

        .homenkey_form_label {
            display: block;
            font-size: 15px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .homenkey_form_input,
        .homenkey_form_textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.3s;
            background-color: white;
        }

        .homenkey_form_input:focus,
        .homenkey_form_textarea:focus {
            outline: none;
            border-color: #d79c47;
        }

        .homenkey_form_textarea {
            min-height: 120px;
            resize: vertical;
        }

        .homenkey_form_button {
            width: 100%;
            padding: 16px;
            background-color: #d79c47;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .homenkey_form_button:hover {
            background-color: #c68a3a;
            transform: translateY(-2px);
        }

        .homenkey_form_button:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .homenkey_contact_container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .homenkey_contact_title h2 {
                font-size: 32px;
            }

            .homenkey_contact_form {
                padding: 30px 20px;
            }
        }



         @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

        :root {
            --homenkey-green: #d79c47;
            --homenkey-dark-green: #d79c47;
            --homenkey-white: #ffffff;
            --homenkey-light-gray: #f9f9f9;
            --homenkey-text-color: #333;
            --homenkey-border-radius: 8px;
            --homenkey-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        /* The body styling has been moved or removed to prevent conflicts. */

        .homenkey-contact-us-page-new-section-container {
            display: flex;
            flex-direction: column;
            background-color: var(--homenkey-white);
            border-radius: var(--homenkey-border-radius);
            box-shadow: var(--homenkey-box-shadow);
            overflow: hidden;
            width: 100%;
            max-width: 1000px;
            margin: 2rem auto;
            /* Added margin to center the content */
        }

        .homenkey-contact-us-page-new-section-content {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .homenkey-contact-us-page-new-section-form-container {
            padding: 2rem;
            flex: 1;
        }

        .homenkey-contact-us-page-new-section-info-container {
            padding: 2rem;
            flex: 1;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/banner/banner4.jpg');
            background-size: cover;
            background-position: center;
             color: var(--homenkey-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .homenkey-contact-us-page-new-section-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--homenkey-dark-green);
        }

        .homenkey-contact-us-page-new-section-subheading {
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 2rem;
        }

        .homenkey-contact-us-page-new-section-info-container .homenkey-contact-us-page-new-section-heading {
            color: var(--homenkey-white);
            margin-bottom: 1rem;
        }

        .homenkey-contact-us-page-new-section-form-group {
            margin-bottom: 1.5rem;
        }

        .homenkey-contact-us-page-new-section-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .homenkey-contact-us-page-new-section-input,
        .homenkey-contact-us-page-new-section-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: var(--homenkey-border-radius);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }

        .homenkey-contact-us-page-new-section-input:focus,
        .homenkey-contact-us-page-new-section-textarea:focus {
            outline: none;
            border-color: var(--homenkey-green);
        }

        .homenkey-contact-us-page-new-section-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .homenkey-contact-us-page-new-section-button {
            width: 100%;
            padding: 0.75rem;
            background-color: var(--homenkey-green);
            color: var(--homenkey-white);
            border: none;
            border-radius: var(--homenkey-border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .homenkey-contact-us-page-new-section-button:hover {
            background-color: var(--homenkey-dark-green);
            transform: translateY(-2px);
        }

        .homenkey-contact-us-page-new-section-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .homenkey-contact-us-page-new-section-info-icon {
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        .homenkey-contact-us-page-new-section-info-details a {
            color: var(--homenkey-white);
            text-decoration: none;
            transition: text-decoration 0.3s;
        }

        .homenkey-contact-us-page-new-section-info-details a:hover {
            text-decoration: underline;
        }

        .homenkey-contact-us-page-new-section-info-details p {
            margin: 0;
            line-height: 1.5;
        }

        .homenkey-contact-us-page-new-section-success-message {
            margin-top: 1rem;
            padding: 1rem;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: var(--homenkey-border-radius);
            text-align: center;
            display: none;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .homenkey-contact-us-page-new-section-container {
                flex-direction: row;
            }

            .homenkey-contact-us-page-new-section-content {
                flex-direction: row;
            }

            .homenkey-contact-us-page-new-section-form-container {
                order: 1;
                /* Form on left */
            }

            .homenkey-contact-us-page-new-section-info-container {
                order: 2;
                /* Info on right */
            }
        }










          

        .emmar-homekeysection {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 60px;
        }

        .emmar-homekey-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 50px;
            color: #1a1a1a;
        }

        .emmar-homekey-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .emmar-homekey-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .emmar-homekey-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .emmar-homekey-image {
            width: 100%;
            height: 350px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .emmar-homekey-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 40%);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 30px 20px;
            z-index: 1;
        }

        .emmar-homekey-location {
            color: #fff;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .emmar-homekey-location svg {
            width: 16px;
            height: 16px;
        }

        .emmar-homekey-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 15px;
        }

        .emmar-homekey-name {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .emmar-homekey-price {
            color: #fff;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .emmar-homekey-register-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #000;
            color: #fff;
            padding: 12px 35px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-radius: 4px;
            z-index: 2;
            opacity: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid #fff;
        }

        .emmar-homekey-card:hover .emmar-homekey-register-btn {
            opacity: 1;
        }

        .emmar-homekey-register-btn:hover {
            background: #fff;
            color: #000;
        }

        @media (max-width: 768px) {
            .emmar-homekey-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .emmar-homekey-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .emmar-homekey-image {
                height: 280px;
            }

            .emmar-homekey-name {
                font-size: 1.2rem;
            }

            .emmar-homekey-overlay {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .emmar-homekey-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .emmar-homekey-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .emmar-homekey-image {
                height: 250px;
            }

            .emmar-homekey-name {
                font-size: 1rem;
            }

            .emmar-homekey-register-btn {
                padding: 10px 25px;
                font-size: 0.8rem;
            }
        }
        