/* Hero Section */
.contacts-hero {
    position: relative;
    max-width: 1960px;
    margin: 0 auto;
    height: 450px;
    background: linear-gradient(135deg, #2E1500 0%, #4A2800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contacts-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 21, 0, 0.6) 0%, rgba(74, 40, 0, 0.5) 100%);
    z-index: 1;
}

.contacts-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.contacts-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.contacts-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #E8D5A8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.contacts-hero-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-hero-title {
    font-family: 'Futura', 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #E8D5A8;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contacts-hero-subtitle {
    font-size: 1.25rem;
    color: #E3D9CD;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Container */
.contacts-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Label */
.contacts-section-label {
    font-size: 0.875rem;
    color: #C9A961;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.contacts-section-title {
    font-family: 'Futura', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #2E1500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contacts-section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(46, 21, 0, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Contact Section */
.contacts-quick-section {
    padding: 5rem 0;
    background-color: white;
}

.contacts-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contacts-quick-card {
    background: linear-gradient(to bottom, #F9F6F2 0%, white 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
}

.contacts-quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.25);
}

.contacts-quick-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #E8D5A8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.contacts-quick-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-quick-title {
    font-family: 'Futura', 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(46, 21, 0, 0.6);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contacts-quick-value {
    font-size: 1.125rem;
    color: #2E1500;
    font-weight: 600;
    line-height: 1.6;
}

.contacts-quick-value a {
    color: #2E1500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-quick-value a:hover {
    color: #F56200;
}

/* Stores Section */
.contacts-stores-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F9F6F2 0%, #E3D9CD 100%);
}

.contacts-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contacts-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contacts-store-card {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.contacts-store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.3);
}

.contacts-store-image {
    width: 100%;
    height: 32rem;
    object-fit: cover;
}

.contacts-store-content {
    padding: 2.5rem;
}

.contacts-store-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #C9A961 0%, #A88B4D 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.contacts-store-title {
    font-family: 'Futura', 'Montserrat', sans-serif;
    font-size: 1.75rem;
    color: #2E1500;
    margin-bottom: 1.5rem;
}

.contacts-store-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacts-store-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacts-store-info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contacts-store-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: #C9A961;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-store-info-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(46, 21, 0, 0.8);
}

.contacts-store-info-text strong {
    color: #2E1500;
    display: block;
    margin-bottom: 0.25rem;
}

.contacts-store-info-text a {
    color: #F56200;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-store-info-text a:hover {
    color: #C9A961;
}

/* Map Section */
.contacts-map-section {
    padding: 0;
    background-color: white;
}

.contacts-map-container {
    width: 100%;
    height: 500px;
    background-color: #E3D9CD;
    position: relative;
}

.contacts-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contacts-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E3D9CD 0%, #C9A961 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.contacts-map-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-map-placeholder p {
    color: white;
    font-size: 1.125rem;
}

/* Form Section */
.contacts-form-section {
    padding: 5rem 0;
    background-color: white;
}

.contacts-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: linear-gradient(to bottom, #F9F6F2 0%, white 100%);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.contacts-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contacts-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contacts-form-group.full-width {
    grid-column: 1 / -1;
}

.contacts-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E1500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contacts-form-input,
.contacts-form-textarea,
.contacts-form-select {
    padding: 1rem;
    border: 1px solid rgba(46, 21, 0, 0.2);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #2E1500;
    transition: all 0.3s ease;
    background-color: white;
}

.contacts-form-input:focus,
.contacts-form-textarea:focus,
.contacts-form-select:focus {
    outline: none;
    border-color: #C9A961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contacts-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contacts-form-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #C9A961 0%, #A88B4D 100%);
    color: white;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contacts-form-button:hover {
    background: linear-gradient(135deg, #A88B4D 0%, #C9A961 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

/* Social Section */
.contacts-social-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2E1500 0%, #4A2800 100%);
    position: relative;
    overflow: hidden;
}

.contacts-social-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.contacts-social-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contacts-social-section .contacts-section-label {
    color: #C9A961;
}

.contacts-social-section .contacts-section-title {
    color: #E8D5A8;
}

.contacts-social-section .contacts-section-text {
    color: rgba(227, 217, 205, 0.8);
}

.contacts-social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contacts-social-link {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contacts-social-link:hover {
    background-color: #C9A961;
    border-color: #C9A961;
    transform: translateY(-5px);
}

.contacts-social-link svg {
    width: 30px;
    height: 30px;
    stroke: #C9A961;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.contacts-social-link:hover svg {
    stroke: white;
}

/* CTA Section */
.contacts-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #C9A961 0%, #A88B4D 100%);
    text-align: center;
}

.contacts-cta-title {
    font-family: 'Futura', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contacts-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: white;
    color: #2E1500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contacts-cta-button:hover {
    background-color: #2E1500;
    color: #C9A961;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1023px) {
    .contacts-hero-title {
        font-size: 2.5rem;
    }

    .contacts-section-title {
        font-size: 2rem;
    }

    .contacts-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-stores-grid {
        grid-template-columns: 1fr;
    }

    .contacts-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contacts-container {
        padding: 0 1rem;
    }

    .contacts-hero {
        height: 400px;
    }

    .contacts-hero-title {
        font-size: 2rem;
    }

    .contacts-hero-subtitle {
        font-size: 1rem;
    }

    .contacts-quick-section,
    .contacts-stores-section,
    .contacts-form-section,
    .contacts-social-section,
    .contacts-cta-section {
        padding: 3rem 0;
    }

    .contacts-quick-grid {
        grid-template-columns: 1fr;
    }

    .contacts-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contacts-cta-title {
        font-size: 1.75rem;
    }

    .contacts-map-container {
        height: 350px;
    }

    .contacts-social-grid {
        gap: 1rem;
    }
}
