.elementor-419 .elementor-element.elementor-element-055b135{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-580abef *//* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Belleza', serif;
    color: #000;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

h4 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #663130 0%, #8B4B47 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FBEADE" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23FBEADE" opacity="0.1"/><circle cx="60" cy="40" r="0.5" fill="%23FBEADE" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.brand-name {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: #FBEADE;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(251, 234, 222, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTACT CONTENT ===== */
.contact-content {
    padding: 80px 0;
    background-color: #FBEADE;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 49, 48, 0.1);
    border: 1px solid rgba(102, 49, 48, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: #663130;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #663130;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #663130;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 49, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #663130 0%, #8B4B47 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: 'Work Sans', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 49, 48, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 49, 48, 0.1);
    border: 1px solid rgba(102, 49, 48, 0.1);
}

.contact-info h3 {
    color: #663130;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-info > p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #663130 0%, #8B4B47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #663130;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    border-top: 1px solid #E5E5E5;
    padding-top: 30px;
    text-align: center;
}

.social-links h4 {
    color: #663130;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #663130 0%, #8B4B47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 49, 48, 0.3);
}

/* ===== BEAUTY IMAGE PLACEHOLDER ===== */
.beauty-image {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 49, 48, 0.1);
    border: 1px solid rgba(102, 49, 48, 0.1);
    min-height: 300px;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: linear-gradient(135deg, #FBEADE 0%, #F5E5D3 100%);
    color: #663130;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-family: 'Belleza', serif;
    font-size: 1.5rem;
    color: #663130;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-wrapper {
        gap: 40px;
    }
    
    .brand-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-section,
    .contact-info {
        padding: 30px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .brand-name {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-form-section,
    .contact-info {
        padding: 25px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .contact-content {
        padding: 60px 0;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #663130;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #663130;
    }
    
    .contact-form-section,
    .contact-info,
    .beauty-image {
        border: 2px solid #663130;
    }
}/* End custom CSS */