/* ========== VARIABLES GLOBALES CONTACTO ========== */
:root {
    --primary-gold: #B8860B;
    --accent-yellow: #E8C547;
    --white: #FFFFFF;
    --black: #0a0a0a;
    --gray: #6B7280;
    --bg-light: #F9FAFB;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== CONTACT HERO SECTION ========== */
.contact-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.7);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.50) 50%,
        rgba(0, 0, 0, 0.70) 100%
    );
    backdrop-filter: blur(2px);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-title {
    margin-bottom: 1.5rem;
}

.contact-title-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-title-accent {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(184, 134, 11, 0.02) 25%),
        linear-gradient(-45deg, transparent 25%, rgba(184, 134, 11, 0.02) 25%);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ========== SECTION TITLES ========== */
.contact-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
}

/* ========== GET IN TOUCH COLUMN ========== */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: white;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
    border-color: var(--primary-gold);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.contact-icon {
    width: 26px;
    height: 26px;
    color: white;
    stroke-width: 2;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0.2rem 0;
}

/* ========== SOCIAL MEDIA ========== */
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--black);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.social-icon:hover svg {
    fill: white;
}

/* ========== FORM COLUMN ========== */
.contact-form-column {
    background: white;
    padding: 3rem;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 1rem;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--black);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== SUBMIT BUTTON ========== */
.form-submit-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    background: var(--primary-gold);
    color: white;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.form-submit-btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.35);
}

.form-submit-btn:hover .btn-icon {
    fill: var(--primary-gold);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* ========== RESPONSIVE - TABLET ========== */
@media screen and (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info-column,
    .contact-form-column {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-social {
        justify-content: center;
    }
}

/* ========== RESPONSIVE - MÓVIL ========== */
@media screen and (max-width: 768px) {
    .contact-hero {
        min-height: 350px;
        margin-top: 80px;
    }

    .contact-hero-content {
        padding: 0 20px;
    }

    .contact-title-main {
        font-size: 1rem;
    }

    .contact-title-accent {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-form-column {
        padding: 2rem 1.5rem;
    }

    .form-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-section-title {
        font-size: 1.5rem;
    }

    .contact-form-column {
        padding: 1.5rem 1rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}