.layout-pageContact--premium {
    background-color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f7f6f4 0%, #edece8 100%);
    padding: 60px 0;
    overflow: hidden;
}

.contact-hero__wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-hero__content {
    padding-right: 20px;
}

.contact-hero__title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.contact-hero__subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-hero__description {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 30px 0;
    max-width: 480px;
}

.contact-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.contact-hero__btn:hover {
    background: var(--color-3, #9a6d28);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-hero__btn svg {
    stroke-width: 2px;
}

.contact-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 380px;
}

.contact-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Section */
.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eaeaea;
    padding: 20px;
}

.contact-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #111;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-input-wrapper {
    margin-bottom: 15px;
}

.contact-input-wrapper input,
.contact-input-wrapper select {
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    color: #111;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
}

.contact-input-wrapper textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    height: 85px;
    padding: 15px 20px;
    font-size: 14px;
    color: #111;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
    resize: none;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-input-wrapper textarea:focus {
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.contact-input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form-security {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.4;
}

.contact-form-security svg {
    color: #10b981;
    flex-shrink: 0;
}

.contact-form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #111;
    color: #fff;
    border: none;
    height: 48px;
    padding: 0 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-submit-btn:hover {
    background: var(--color-3, #9a6d28);
    transform: translateY(-2px);
}

.contact-form-submit-btn svg {
    transition: transform 0.2s;
}

.contact-form-submit-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Right Section Grid */
.contact-right-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 30px;
}

.contact-info-section {
    padding-right: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #f3f4f6;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #111;
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h2,
.contact-info-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin: 0 0 6px 0 !important;
    letter-spacing: 0.5px;
    border: none !important;
    padding: 0 !important;
}

.contact-info-text p,
.contact-info-text div {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 !important;
}

/* Map Wrapper & Floating Card */
.contact-map-section {
    position: relative;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f2f4;
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.contact-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block;
    min-height: 450px;
}

.contact-map-wrapper .image-caption {
    display: none !important;
}

.contact-map-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
    border: 1px solid #f1f2f4;
}

.contact-map-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-map-card__address {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.contact-map-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-decoration: none !important;
    transition: color 0.2s;
}

.contact-map-card__link:hover {
    color: var(--color-3, #9a6d28);
}

.contact-map-card__link svg {
    transition: transform 0.2s;
}

.contact-map-card__link:hover svg {
    transform: translateX(3px);
}

/* Bottom Trust Bar (Styles moved to SHARED PREMIUM TRUST BAR COMPONENT STYLES in style.css) */

/* Responsiveness */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .contact-hero__wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-hero__image {
        height: 300px;
    }


}

@media (max-width: 768px) {
    .contact-right-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map-section {
        min-height: 300px;
    }

    .contact-map-wrapper iframe {
        min-height: 300px !important;
    }
}

@media (max-width: 576px) {


    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-hero__title {
        font-size: 30px;
    }
}