
     /* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-hero p {
    font-size: 18px;
    color: #495057;
}

/* Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    color: #212529;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    flex-shrink: 0;
}

.contact-card__icon i {
    color: #ffffff;
    font-size: 24px;
}

.contact-card__content {
    flex-grow: 1;
    width: 100%;
    text-align: center;
}

.contact-card h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    color: #495057;
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: center;
}

.contact-phone,
.contact-email {
    display: inline-block;
    color: #212529 !important;
    font-weight: 500;
    text-decoration: none;
    margin-top: 16px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: #0056b3;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 60px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Team Orders Section */
.team-orders-section {
    margin-bottom: 60px;
}

.team-orders-card {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-orders-card h2 {
    font-size: 32px;
    color: #212529;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-orders-card p {
    color: #495057;
    margin-bottom: 24px;
    font-size: 18px;
}

.team-quote-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.team-quote-button:hover {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

/* Location Cards */
/* Location Cards */
.locations-section {
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.location-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.location-card {
    align-items: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    font-size: 24px;
    color: #212529;
    margin-bottom: 16px;
    font-weight: 600;
}

.location-card address {
    color: #495057;
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.directions-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.directions-button:hover {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-cards,
    .location-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px;
    }

    .team-orders-card {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .contact-cards {
        padding: 0 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card__content,
    .contact-details,
    .contact-card h3,
    .contact-details p,
    .contact-phone,
    .contact-email {
        text-align: center;
        width: 100%;
    }

    .contact-phone,
    .contact-email {
        display: block;
        margin: 16px auto 0;
    }

    .team-orders-card h2 {
        font-size: 28px;
        text-align: center;
    }

    .team-orders-card p {
        text-align: center;
    }

    .location-card {
        text-align: center;
    }

    .location-card address {
        text-align: center;
    }
    
    /* Ensure container padding is equal on both sides */
    .contact-container {
        padding-left: 20px;
        padding-right: 20px;
        margin: 0 auto;
    }

    /* Center all buttons on mobile */
    .directions-button,
    .team-quote-button {
        display: inline-block;
        text-align: center;
    }

    /* Ensure all sections maintain center alignment */
    .contact-section,
    .team-orders-section,
    .locations-section {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-card,
    .location-card {
        padding: 20px;
    }
}
