@charset "UTF-8";
/*
 * Contact Page Styles
 * Styles for page-contact.php template
 */

/* Page Header */
.contact-page-header {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 60px 20px 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.contact-page-title {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 16px 0;
    color: #2c2c2c;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.contact-page-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #6b6b6b;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50%;
    color: #666;
}

.contact-info-card h3 {
    font-size: 17px;
    font-weight: 400;
    margin: 0 0 12px 0;
    color: #2c2c2c;
    letter-spacing: 0.3px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b6b6b;
    font-weight: 300;
    margin: 0;
}

.contact-info-card a {
    color: #5a5a5a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-card a:hover {
    color: #2c2c2c;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background: #fafafa;
    padding: 48px 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    border: 1px solid #f0f0f0;
}

.contact-form-section h2 {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 32px 0;
    color: #2c2c2c;
    text-align: center;
    letter-spacing: -0.3px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #5a5a5a;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #2c2c2c;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d0d0d0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

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

.contact-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #3a3a3a 0%, #1c1c1c 100%);
}

.contact-submit-btn svg {
    width: 18px;
    height: 18px;
}

/* Map Section */
.contact-map-section {
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.contact-map {
    width: 100%;
    height: 450px;
}

.contact-map iframe {
    display: block;
    filter: grayscale(10%) opacity(0.95);
}

/* Company Info Section */
.company-info-section {
    background: #fafafa;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    text-align: center;
    margin-bottom: 60px;
}

.company-info-section h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 24px 0;
    color: #2c2c2c;
    letter-spacing: -0.3px;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.company-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.company-info-item.company-info-full {
    grid-column: 1 / -1;
}

.company-info-item strong {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-info-item span {
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 300;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-page-header {
        padding: 40px 20px 30px;
    }

    .contact-page-title {
        font-size: 32px;
    }

    .contact-page-subtitle {
        font-size: 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 32px 24px;
    }

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

    .company-info-section {
        padding: 24px;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-page-header {
        padding: 30px 15px 20px;
    }

    .contact-page-title {
        font-size: 28px;
    }

    .contact-form-section {
        padding: 24px 16px;
    }

    .contact-form-section h2 {
        font-size: 24px;
    }

    .company-info-section {
        padding: 20px;
    }

    .company-info-section h2 {
        font-size: 20px;
    }

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

/* Success/Error Messages */
.contact-message {
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
}

.contact-message.success {
    background: #f0f9f4;
    color: #2d6a4f;
    border: 1px solid #d8f3dc;
}

.contact-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* WPForms / Contact Form 7 Compatibility */
.contact-form-section .wpforms-container,
.contact-form-section .wpcf7 {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section .wpforms-field-label,
.contact-form-section .wpcf7 label {
    font-weight: 400;
    color: #5a5a5a;
    font-size: 14px;
}

.contact-form-section .wpforms-field input,
.contact-form-section .wpforms-field textarea,
.contact-form-section .wpcf7 input,
.contact-form-section .wpcf7 textarea {
    border-color: #e5e5e5;
    border-radius: 8px;
    font-weight: 300;
}

.contact-form-section .wpforms-submit,
.contact-form-section .wpcf7-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-section .wpforms-submit:hover,
.contact-form-section .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #3a3a3a 0%, #1c1c1c 100%);
}

/* About Us Section */
.about-us-section {
    background: #fafafa;
    padding: 48px 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.about-us-section h2 {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 24px 0;
    color: #2c2c2c;
    letter-spacing: -0.3px;
}

.about-us-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    font-weight: 300;
    margin: 0 0 32px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.social-links-label {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #5a5a5a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-icon.social-facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.social-icon.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-icon.social-tiktok:hover {
    background: #000000;
    color: #ffffff;
}

.social-icon.social-youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* About Us Responsive */
@media (max-width: 768px) {
    .about-us-section {
        padding: 32px 24px;
    }

    .about-us-section h2 {
        font-size: 24px;
    }

    .about-us-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 24px 16px;
    }

    .about-us-section h2 {
        font-size: 22px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
