:root {
    --primary-blue: #0088e2;
    --primary-red: #c20000;
    --opacity-blue: #0088e231;
    --opacity-red: #c200002c;
    --soft-blue: #81c6ff;
    --soft-red: #ff8f8f;
    --dark-blue: #0073c0;
    --dark-red: #a30000;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}



body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('https://www.hasnerlaw.com/wp-content/uploads/2022/07/Can-Trucks-Drive-in-the-Left-Lane-in-Georgia.jpg') no-repeat fixed left center/cover;
    overflow-x: hidden;
}

/* Testimonial box için farklı arka plan desenleri */
.testimonial-box:nth-child(odd) {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.384) 95%, var(--opacity-blue) 95%);
}

/* Contact info ve form için arka plan desenleri */
.contact-info {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.384) 85%, var(--opacity-red) 85%);
}

.contact-form {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.384) 85%, var(--opacity-red) 85%);
}




.city-card {
    position: relative;
    background: rgba(255, 255, 255, 0.384);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
    height: 100%;
    border: 0;
}

.city-card::before {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    background: var(--opacity-red);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.city-card:nth-child(even)::before {
    background: var(--opacity-red);
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.city-card:hover::before {
    opacity: 0.5;
}


/* FAQ soru kutuları için farklı arka plan desenleri */

.faq-question:nth-child(odd) {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.384) 93%, var(--opacity-red) 93%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-brand span.blue {
    color: var(--primary-blue);
}

.navbar-brand span.red {
    color: var(--primary-red);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

.nav-link.active {
    color: var(--primary-red) !important;
    font-weight: 600;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-blue) 0%, var(--primary-blue) 30%, var(--primary-red) 100%);
    transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.hero {
    padding: 120px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: var(--primary-blue);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    bottom: -10px;
    left: 15%;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.384);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-gray);
}

.feature-box:nth-child(odd) .feature-icon {
    color: var(--primary-red);
}



.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.about-list li {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.about-list li i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.384);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-box:after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--soft-blue);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info .h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: #777;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.384);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-answer.active {
    display: block;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.384);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary-red);
}

.contact-info h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-blue);
}

.contact-text .h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.384);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

textarea.form-control {
    min-height: 150px;
}

.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 0;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span.blue {
    color: var(--soft-blue);
}

.footer-logo span.red {
    color: var(--soft-red);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-links .h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links .h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--soft-blue), var(--soft-red));
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links ul li a i {
    margin-right: 10px;
    color: var(--soft-blue);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        margin-top:110px;
        font-size: 2rem;
        text-align:center;
    }
    .hero-content p{
        font-size: 1.5rem;
        text-align:center;
    }
    .about-img {
        margin-bottom: 30px;
    }
    .hero-content .btn{
        font-size:1rem;
        margin-bottom:20px;
    }
    
}

@media (max-width: 767px) {
    .hero {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p{
        font-size: 1rem;
    }
    .hero-content .btn{
        font-size:.8rem;
    }

    .section {
        padding: 30px 0;
    }

    .section-title h2,.about-content h2
    {
        text-align:center;
        font-size: 2rem;
    }

    .feature-box {
        margin-bottom: 30px;
    }
    .feature-box h3{
        text-align:center;
        font-size:1.4rem;
    }
    .feature-box p,.about-content p{
        font-size:1rem;
        text-align:center;
    }
    
    .about-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .about-list li{
        font-size:1rem;
    }
    .w-m-100{
        width:100%;
    }
    .testimonial-content {
       font-size:.9rem;
    }
    .contact-info {
        margin-bottom: 30px;
    }
    .testimonial-author img{
        width: 50px;
        height: 50px;
    }
    .author-info .h5{
        font-size:1.1rem;
    }
    .faq-question h3{
        font-size:1rem;
    }
    .faq-question:nth-child(odd){
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.384) 84%, var(--opacity-red) 84%);
    }
    .faq-answer p{
        font-size:.9rem;
    }
    .footer-logo{
        display:flex;
        justify-content:center;
    }
    .footer-about{
        text-align:center;
    }
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s;
}

.animate-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* City Selector */
.city-selector {
    padding: 60px 0;
}


.city-img {
    height: 200px;
    overflow: hidden;
}

.city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.city-card:hover .city-img img {
    transform: scale(1.1);
}

.city-content {
    padding: 20px;
}

.city-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.city-content p {
    margin-bottom: 20px;
    color: #777;
}

.city-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.city-link:hover {
    color: var(--dark-blue);
    padding-left: 5px;
}

.city-link i {
    margin-left: 5px;
    transition: all 0.3s;
}

.city-link:hover i {
    transform: translateX(5px);
}

/* Back to top button */
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.back-to-top i {
    font-size: 1.5rem;
}