﻿/*#region Header*/

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--orange);
}


.theme-toggle {
    display: flex;
    align-items: center;
}



/*#endregion*/

/*#region Hero Section*/
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: contain;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

    .hero h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        max-width: 700px;
        margin: 0 auto 30px;
    }

/*#endregion*/

/*#region Contact Section*/
.contact-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 30px;
        margin-bottom: 15px;
        color: var(--orange);
    }

    .section-title p {
        margin: 0 auto;
        color: var(--text-color);
        opacity: 0.8;
        font-size: 20px;
    }

.contact-container {
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

    .contact-card i {
        font-size: 24px;
        color: var(--orange);
        margin-bottom: 15px;
    }

    .contact-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 13px;
    }

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .contact-form h2 {
        font-size: 15px;
        text-align: center;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--gray);
    }

    .contact-form .btn-orange {
        justify-self: center;
    }

.form-group {
    margin-bottom: 20px;
}

.others {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Checkbox stili */

/*#endregion*/

/*#region Map Section*/

.address-card p {
    font-size: 12px;
    margin-bottom: 1rem;
}

.map-card-header > span {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 8px;
}

.location-block svg {
    width: 15px;
    height: 15px;
    color: var(--orange);
}

.location-block .btn-orange svg {
    color: white;
}

.location-block {
    padding: 50px 20px;
}

.location-container {
    max-width: 1200px;
    margin: auto;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.location-text {
    color: var(--text-muted);
}

.location-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.map-area {
    flex: 2;
}

.info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-card, .info-card, .address-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
}

.info-card {
    border-left: 4px solid var(--orange);
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    height: 100%;
    justify-content: center;
}

    .info-card h4 {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 18px;
    }

.map-placeholder {
    position: relative;
    height: 300px;
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
}

.map-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #b3922f20, #b3922f10);
    border-radius: 10px;
}

.map-center {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.icon-map, .icon-navigation, .icon-phone, .icon-mail, .icon-clock, .icon-map-large {
    color: var(--orange);
}

.icon-map-large {
    font-size: 40px;
    margin-bottom: 10px;
}

.btn-route, .btn-emergency {
    background-color: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.alert-card .btn-orange {
    width: max-content;
    margin-top: 1rem;
}
/*#endregion*/

/*#region FAQ Section*/
.faq-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.faq-container {
    a max-width: 1200px;
    margin: 0 auto;
}

    .faq-container p {
        font-size: 13px;
    }

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--border-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

    .faq-question:hover {
        background-color: var(--gray);
    }

    .faq-question h3 {
        font-size: 16px;
        margin: 0;
    }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: var(--input-bg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

/*#endregion*/

/*#region Responsive*/
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 25px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-container p {
        font-size: 12px;
    }
}
/*#endregion*/


.layout-offer {
    display: none !important;
}
