

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(139, 26, 26, 0.1);
}

.hero-editorial {
    padding: 100px 0 60px !important;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 26, 26, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #ffffff 0%, #fcfaf5 100%);
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--royal-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 0.8s ease-out;
}

.hero-editorial p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-600);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.contact-section {
    padding: 80px 0;
    background: var(--warm-white);
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: white;
    border-color: var(--imperial-gold);
    box-shadow: 0 20px 40px rgba(139, 26, 26, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: var(--royal-red);
}

.contact-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.contact-text p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.contact-form-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    background: white;
    border-color: var(--imperial-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--royal-red), var(--royal-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 26, 26, 0.3);
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray-800);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.faq-item {
    padding: 30px;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-bottom-color: var(--imperial-gold);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--royal-red);
}

.faq-item p {
    color: var(--gray-500);
    line-height: 1.6;
}

.visit-section {
    padding-bottom: 100px;
}

.visit-banner {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    margin: 0 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.visit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 10s linear;
}

.visit-banner:hover .visit-img {
    transform: scale(1.1);
}

.visit-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
    z-index: 2;
}

.visit-content .label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--imperial-gold);
    margin-bottom: 20px;
    display: block;
}

.visit-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.visit-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .visit-banner {
        height: 500px;
        margin: 0 1rem;
    }
    .visit-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2.5rem;
    }
    .visit-banner {
        height: 400px;
    }
    .visit-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    .visit-content h2 {
        font-size: 2rem;
    }
}

.contact-maps-link:hover {
    opacity: 0.8 !important;
}
