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

/* Contact Hero Section */
.contact-hero {
    min-height: 60vh;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
        url('/Resources/images/1.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 40px 30px;
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(10, 10, 10, 0.9)
    );
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    color: #C0C0C0;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.contact-hero-badge i {
    font-size: 16px;
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #E5E5E5;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-hero h1 span {
    background: linear-gradient(135deg, #E5E5E5, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 20px;
    color: #AAAAAA;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-main-section {
    background: #0B0B0B;
    padding: 100px 40px;
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.contact-info-card {
    background: #111111;
    border: 1px solid #1F1F1F;
    border-radius: 12px;
    padding: 50px 35px;
    text-align: center;
    transition: 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.1);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1A1A1A, #0D0D0D);
    border: 1px solid #2A2A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, #C0C0C0, #E5E5E5);
    border-color: #C0C0C0;
}

.contact-info-icon i {
    font-size: 32px;
    color: #C0C0C0;
    transition: 0.3s ease;
}

.contact-info-card:hover .contact-info-icon i {
    color: #000;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #999;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info-card .contact-address {
    color: #C0C0C0;
    font-weight: 500;
}

.contact-link {
    display: block;
    color: #C0C0C0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: #E5E5E5;
}

.contact-link-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-link-inline {
    display: inline;
    margin: 0;
}

.contact-link-separator {
    color: #C0C0C0;
}

/* Contact Form Section */
.contact-form-section {
    background: #0F0F0F;
    border: 1px solid #1F1F1F;
    border-radius: 16px;
    padding: 80px;
}

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

.contact-form-header {
    margin-bottom: 50px;
}

.contact-form-tag {
    display: inline-block;
    color: #888;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-form-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #E5E5E5;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-form-header h2 strong {
    background: linear-gradient(135deg, #E5E5E5, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-header p {
    color: #999;
    font-size: 18px;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #AAAAAA;
    font-size: 15px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    color: #E5E5E5;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C0C0C0;
    background: #222222;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form select {
    cursor: pointer;
    color: #999;
}

.contact-form select option {
    background: #1A1A1A;
    color: #E5E5E5;
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, #E5E5E5, #C0C0C0);
    color: #000;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #FFFFFF, #D0D0D0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.2);
}

.contact-submit-btn i {
    transition: 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.contact-map-section {
    background: #0B0B0B;
    padding: 100px 40px;
}

.contact-map-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-map-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #E5E5E5;
    margin-bottom: 15px;
}

.contact-map-header p {
    color: #999;
    font-size: 18px;
}

.contact-map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1F1F1F;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-map-container iframe {
    border: 0;
    display: block;
    filter: grayscale(0.3) invert(0.9) brightness(0.9);
}

/* Business Hours Section */
.business-hours-section {
    background: #0F0F0F;
    padding: 100px 40px;
}

.business-hours-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-hours-content {
    padding-right: 40px;
}

.hours-tag {
    display: inline-block;
    color: #888;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
}

.business-hours-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #E5E5E5;
    margin-bottom: 25px;
    line-height: 1.2;
}

.business-hours-content h2 strong {
    background: linear-gradient(135deg, #E5E5E5, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-hours-content p {
    color: #999;
    font-size: 18px;
    line-height: 1.7;
}

.business-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-item {
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.hours-item:hover {
    border-color: #C0C0C0;
    transform: translateX(10px);
}

.hours-item.emergency {
    background: linear-gradient(135deg, #1A1A1A, #252525);
    border-color: #C0C0C0;
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #E5E5E5;
    font-weight: 500;
    font-size: 17px;
}

.hours-day i {
    color: #C0C0C0;
    font-size: 20px;
}

.hours-time {
    color: #C0C0C0;
    font-weight: 600;
    font-size: 16px;
}

.hours-item.emergency .hours-time {
    color: #E5E5E5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 150px 30px 80px;
        min-height: 50vh;
    }

    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-main-section {
        padding: 80px 30px;
    }

    .contact-info-grid {
        gap: 30px;
        margin-bottom: 80px;
    }

    .contact-form-section {
        padding: 60px 40px;
    }

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

    .contact-map-section,
    .business-hours-section {
        padding: 80px 30px;
    }

    .business-hours-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .business-hours-content {
        padding-right: 0;
    }
}

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

    .contact-form-section {
        padding: 40px 25px;
    }

    .contact-form-header h2,
    .business-hours-content h2,
    .contact-map-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 130px 20px 60px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }

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

    .contact-info-card {
        padding: 40px 25px;
    }

    .contact-form-section {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .contact-form-header h2,
    .business-hours-content h2,
    .contact-map-header h2 {
        font-size: 28px;
    }

    .contact-form-header p,
    .business-hours-content p,
    .contact-map-header p {
        font-size: 16px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-section,
    .business-hours-section {
        padding: 60px 20px;
    }

    .hours-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .hours-item:hover {
        transform: none;
    }
}
