/* ============================================
   CONTACTS PAGE STYLES
   ============================================ */

.contacts-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: transparent;
}

.contacts-content {
    padding: 80px 0;
    background: transparent;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts-description {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-white);
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--color-cyan);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--color-cyan);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-value {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--color-white);
    text-decoration: none;
    display: block;
}

.contact-value:hover {
    color: var(--color-cyan);
}

.social-section {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s ease;
}

.social-link-large:hover {
    border-color: var(--color-cyan);
    background: rgba(0, 0, 0, 0.1);
}

.social-link-large img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.social-link-large:hover img {
    filter: brightness(0) invert(0);
}

.contacts-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.contacts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    padding: 80px 0;
    background: transparent;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--color-white);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 30px 0;
    }
    
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .contacts-image {
        height: 300px;
        width: 100%;
    }
    
    .contacts-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        padding: 20px;
    }
    
    .section-title {
        font-size: clamp(28px, 7vw, 48px);
        padding: 0 15px;
    }
    
    .breadcrumbs {
        padding: 0 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contacts-image {
        height: 250px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
}
