.elementor-16 .elementor-element.elementor-element-4704051{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-120px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-16 .elementor-element.elementor-element-4704051{--margin-top:-90px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(max-width:767px){.elementor-16 .elementor-element.elementor-element-4704051{--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-bfc9569 *//* CONTACT PAGE HERO CSS */
/* Add this to Elementor → Custom CSS */

.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    overflow: hidden;
    padding: 8rem 2rem 6rem;
    margin-top: 80px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(165, 28, 28, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(201, 168, 89, 0.08) 0%, transparent 50%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.contact-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 89, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A859;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #E5E5E5;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contact-hero-title .highlight {
    color: #C9A859;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #A0A0A0;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-hero {
        min-height: 50vh;
        padding: 6rem 2rem 4rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-311c6a7 *//* CONTACT FORM & INFO SECTION CSS */
/* Add this to Elementor → Custom CSS */

.contact-main-section {
    padding: 8rem 2.5rem;
    background: #0F0F0F;
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
}

.contact-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E5E5E5;
    margin-bottom: 1rem;
}

.contact-section-subtitle {
    font-size: 1.05rem;
    color: #A0A0A0;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #1A1A1A;
    padding: 3rem;
    border: 1px solid rgba(201, 168, 89, 0.15);
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: #0F0F0F;
    border: 1px solid rgba(201, 168, 89, 0.2);
    border-radius: 4px;
    color: #E5E5E5;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A859;
    background: #1A1A1A;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

.form-submit-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #A51C1C, #8B1414);
    color: #E5E5E5;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background: transparent;
    border-color: #A51C1C;
    color: #A51C1C;
    transform: translateY(-2px);
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(3px);
}

/* Contact Info Styles */
.contact-info-wrapper {
    padding: 2rem 0;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 89, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: rgba(201, 168, 89, 0.3);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #A51C1C, #8B1414);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: #E5E5E5;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.8rem;
}

.contact-info-content p {
    font-size: 1rem;
    color: #A0A0A0;
    line-height: 1.8;
}

.contact-link {
    color: #C9A859;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-link:hover {
    color: #B89944;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link-contact {
    color: #C9A859;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(201, 168, 89, 0.3);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background: #C9A859;
    color: #1A1A1A;
    border-color: #C9A859;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-main-section {
        padding: 6rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-main-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-submit-btn {
        width: 100%;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .social-links-contact {
        justify-content: center;
    }
}/* End custom CSS */