/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */

.page-header {
    padding: 180px 80px 100px;
    background: #000;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.contact-section {
    padding: 100px 80px;
    background: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #000;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.offices-section h4 {
    text-align: center;
    margin-bottom: 30px;
}

.offices-grid-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.office-location {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    text-align: center;
}

.office-location strong {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.office-location p {
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .offices-grid-contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-grid-contact {
        grid-template-columns: 1fr;
    }
}

/* Full-Width Office Locations Section */
.offices-section-contact {
    padding: 80px 80px;
    background: #f5f5f5;
}

.offices-section-contact h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #000;
}

.offices-grid-fullwidth {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.office-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.office-card strong {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.office-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .offices-section-contact {
        padding: 60px 40px;
    }

    .offices-grid-fullwidth {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .offices-section-contact {
        padding: 50px 20px;
    }

    .offices-grid-fullwidth {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background: #fafafa;
    padding: 50px;
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #000;
    color: white;
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--primary);
    color: #000;
}

.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 20px 60px;
    }

    .contact-section {
        padding: 60px 20px;
    }

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

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

    .map-section {
        height: 300px;
    }
}
