/* Genel Stiller */
:root {
    --primary-color: #f8b54a;
    --secondary-color: #333;
    --heading-color: #333;
    --text-color: #666;
}

body {
    font-family: 'Manrope', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gotu', sans-serif;
    font-weight: 400;
}

.subtitle {
    font-family: 'Gotu', sans-serif;
    color: #f8b54a;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.title {
    font-family: 'Gotu', sans-serif;
    margin-bottom: 20px;
    font-weight: 300;
}

.description {
    font-family: 'Manrope', sans-serif;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */
.site-header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.fixed {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease forwards;
}

.site-header.fixed .navbar {
    background: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
}

.site-header.fixed .top-header {
    display: none;
}

/* Top Header Styles */
.top-header {
    background: rgba(17, 17, 17, 0.95);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-header .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.top-header .contact-info a i {
    color: #f8b54a;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.top-header .contact-info a:hover {
    color: #f8b54a;
}

.top-header .contact-info a:hover i {
    transform: translateY(-2px);
}

.top-header .contact-info a:hover {
    color: #f8b54a;
}

.top-header .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    border: none;
}

.top-header .social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin: 0;
}

.top-header .social-links a:hover {
    background: #f8b54a;
    color: #111;
    transform: translateY(-2px);
}

/* Navbar Stili */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
    width: 100%;
    z-index: 1000;
}

/* Navbar Toggle Button Stili */
.navbar-toggler {
    padding: 0;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Fixed header durumunda toggle button stili */
.site-header.fixed .navbar-toggler-icon,
.site-header.fixed .navbar-toggler-icon::before,
.site-header.fixed .navbar-toggler-icon::after {
    background-color: #fff;
}

/* Navbar Collapse Stili */


.navbar-brand h1 {
    margin: 0;
    font-weight: 400;
    color: #fff;
    font-size: 28px;
    font-family: 'Gotu', sans-serif;
    letter-spacing: 2px;
}
.navbar-brand img {
    width: 80px;
}

.navbar-brand span {
    color: #f8b54a;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    position: relative;
    padding: 8px 5px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f8b54a;
    left: 0;
    bottom: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #f8b54a !important;
}

.book-now {
    background: #f8b54a;
    color: #000 !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    border: 2px solid #f8b54a;
    transition: all 0.3s ease;
}

.book-now::after {
    display: none;
}

.book-now:hover {
    background: transparent;
    border: 2px solid #f8b54a;
    color: #f8b54a !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url(/assets/images/hero-bg-6.webp) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 40%, 
        rgba(0, 0, 0, 0.4) 85%,
        rgba(17, 17, 17, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    max-width: 650px;
    margin-top: 200px;
}

.hero-content .title {
    font-size: 4.1rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    font-family: 'Gotu', sans-serif;
    letter-spacing: 1px;
}

.hero-content .description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-features {
    margin: 40px 0;
    display: flex;
    gap: 30px;
}

.feature {
    font-family: 'Manrope', sans-serif;
    color: #f8b54a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #f8b54a;
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons .btn-primary {
    background: #f8b54a;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid #f8b54a;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: #f8b54a;
}

/* Services Section */
.services-section {
    padding: 0 0 80px 0;
    background: transparent;
    color: #fff;
    position: relative;
    margin-top: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(17, 17, 17);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-header {
    margin-bottom: 60px;
}

.services-section .section-header .subtitle {
    color: #f8b54a;
}

.services-section .section-header .title {
    color: #fff;
    margin: 15px 0;
}

.services-section .section-header .description {
    color: rgba(255, 255, 255, 0.8);
}

.services-section .shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.services-section .shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 20px;
}

.services-section .shape-bottom .elementor-shape-fill {
    fill: #fff;
}

.service-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    background: #202020;
    flex-direction: column;
    height: 100%;
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 2.5rem;
    color: #f8b54a;
}

.service-card h3 {
    margin: 15px 0;
    color: #fff;
    font-family: 'Gotu', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-card p {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .read-more {
    color: #f8b54a;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-card .read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-card .read-more:hover {
    color: #fff;
}

.service-card .read-more:hover i {
    transform: translateX(5px);
}

/* Fleet Section */
.fleet-section {
    padding: 100px 0;
}

.fleet-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.fleet-card .image {
    position: relative;
    border: 2px solid #f8b54a;
    border-radius: 15px;
}
.fleet-card .image img{
    border-radius: 12px;
}
.fleet-card .price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #f8b54a;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
}

.fleet-card .price span {
    display: block;
    font-size: 0.8rem;
    color: #000;
}

.fleet-card .price h4 {
    margin: 0;
    color: #000;
    font-weight: 700;
}

.fleet-card .content {
    padding: 20px;
}

.fleet-card .specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.fleet-card .spec {
    color: #666;
}

.fleet-card .spec i {
    color: #f8b54a;
    margin-right: 5px;
}

.fleet-card .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #f8b54a;
    color: #333;
}

.fleet-card .btn i {
    transition: transform 0.3s ease;
}

.fleet-card .btn:hover {
    background: #f8b54a;
    color: #000;
    border: 2px solid #f8b54a;
}

.fleet-card .btn:hover i {
    transform: translateX(5px);
}

/* Why Choose Section */
.why-choose-section {
    min-height: 100vh;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.why-choose-section .container {
    padding: 50px 0;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.about-image-box .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.about-image-box:hover .main-image {
    transform: scale(1.05);
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #f8b54a;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(248, 181, 74, 0.2);
}

.experience-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    display: block;
    font-family: 'Gotu', sans-serif;
}

.experience-box .text {
    font-size: 0.9rem;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-box {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stats-box .stat-item {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stats-box .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-box .stat-item i {
    font-size: 2rem;
    color: #f8b54a;
}

.stats-box .stat-content {
    display: flex;
    flex-direction: column;
}

.stats-box .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    font-family: 'Gotu', sans-serif;
}

.stats-box .text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.content-wrapper {
    padding-left: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper .title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-wrapper .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .icon i {
    font-size: 1.8rem;
    color: #f8b54a;
}

.feature-item .text {
    flex: 1;
}

.feature-item .text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Gotu', sans-serif;
}

.feature-item .text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-cta .btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-cta .btn-primary {
    background: #f8b54a;
    border: 2px solid #f8b54a;
    color: #000;
}

.about-cta .btn-outline {
    border: 2px solid #f8b54a;
    color: #000;
}

.about-cta .btn-outline:hover {
    background: #f8b54a;
    border: 2px solid #f8b54a;
}
.about-cta .btn-primary:hover {
    background: #fff;
    border: 2px solid #f8b54a;
    color: #f8b54a;
}

/* Call to Action Section */
.shape-top {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    margin-bottom: -1px;
}

.shape-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 20px;
}

.shape-top .elementor-shape-fill {
    fill: #fff;
}

.parallax-section {
    position: relative;
    min-height: 700px;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/hero-bg-2.png') no-repeat bottom center;
    background-size: cover;
    transform: translateY(-50%);
    height: 120%;
    width: 100%;
    z-index: -1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cta-content .title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 1.5rem;
    color: #f8b54a;
}

.info-item span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cta-buttons a i{
    font-size: 25px;
}

.cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    display: flex;
    align-items: center;
    background: #f8b54a;
    border:2px solid #f8b54a;
    color: #000;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    border:2px solid #f8b54a;
    color: #f8b54a;
}
.cta-buttons .btn-primary:hover i{
    color: #f8b54a;
}

.cta-buttons .btn-outline-light {
    border-width: 2px;
}

.cta-buttons .btn-outline-light:hover {
    background: #f8b54a;
    border-color: #f8b54a;
    color: #000;
}


.shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 20px;
}

.shape-bottom .elementor-shape-fill {
    fill: #fff;
}

/* Footer */
.footer {
    background: #111111;
    padding: 80px 0 0;
    color: #fff;
    position: relative;
}

.footer .about-widget p {
    color: #999;
    margin: 30px 0;
    line-height: 1.8;
}

.footer .logo {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer .logo span {
    color: #f8b54a;
}

.footer .social-links {
    margin-top: 25px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #f8b54a;
    color: #000;
    transform: translateY(-3px);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
    font-family: 'Gotu', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #f8b54a;
}

.footer-widget .links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget .links-list li {
    margin-bottom: 12px;
}

.footer-widget .links-list a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-widget .links-list a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #f8b54a;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-widget .links-list a:hover {
    color: #f8b54a;
    padding-left: 5px;
}

.footer-widget .links-list a:hover::before {
    opacity: 1;
}

.footer-widget.contact-widget .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-widget.contact-widget .contact-info .contact-item i {
    color: #f8b54a;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-widget.contact-widget .contact-info .contact-item p {
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.copyright-row {
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-row .copyright {
    color: #999;
    text-align: center;
}

.copyright-row .copyright p {
    margin: 0;
}

/* Section Separator */
.section-separator {
    position: relative;
    height: 50px;
    margin: -25px 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.separator-line {
    height: 1px;
    background: #29292947;
    width: 600px;
    position: relative;
}

.separator-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.separator-icon svg {
    width: 80%;
    height: 80%;
    fill: #29292947;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    text-decoration: none;
}

.whatsapp-btn-content {
    background: #f8b54a;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(248, 181, 74, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-btn-content {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(248, 181, 74, 0.4);
}

.whatsapp-btn .tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}


/* Page Header */
.page-header {
    position: relative;
    height: 500px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/hero-bg-2.png) no-repeat bottom;
    background-size: cover;
    opacity: 1;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.page-header .title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-family: 'Gotu', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.page-header .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #f8b54a;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-item {
    font-size: 1.1rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #f8b54a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    content: ">";
    font-weight: 300;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: #fff;
}

.about-content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 400px;
}

.about-content-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.about-content-image:hover .main-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: #f8b54a;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(248, 181, 74, 0.2);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    display: block;
    font-family: 'Gotu', sans-serif;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content-text {
    padding-left: 50px;
}

.about-features {
    margin: 30px 0;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-features .feature-item i {
    color: #f8b54a;
    font-size: 1.2rem;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stats-row .stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-row .stat-item:hover {
    transform: translateY(-5px);
}

.stats-row .number {
    font-size: 2rem;
    font-weight: 700;
    color: #f8b54a;
    font-family: 'Gotu', sans-serif;
}

.stats-row .text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-vision-wrapper .info-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.mission-vision-wrapper .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision-wrapper .info-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.mission-vision-wrapper .info-card .icon i {
    font-size: 1.5rem;
    color: #f8b54a;
}

.mission-vision-wrapper .info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Gotu', sans-serif;
    color: #333;
}

.mission-vision-wrapper .info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}


/* Team Section */
.team-section {
    padding: 100px 0;
    background: #fff;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-card .image {
    position: relative;
    overflow: hidden;
}

.team-card .image img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-card:hover .image img {
    transform: scale(1.1);
}

.team-card .content {
    padding: 20px;
    text-align: center;
}

.team-card .content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Gotu', sans-serif;
}

.team-card .content p {
    color: #666;
    margin: 0;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f8b54a;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

.current-lang img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.current-lang span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.current-lang i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-switcher.active .current-lang i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.lang-option:hover {
    background-color: #f5f5f5;
}

.lang-option img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.lang-option span {
    font-size: 14px;
}

/* Fixed header durumunda dil değiştirici stilleri */
.site-header.fixed .current-lang {
    background: rgba(0, 0, 0, 0.1);
}

.site-header.fixed .current-lang:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Services Content Section */
.services-content-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.services-content-section .service-detail-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.services-content-section .service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover .service-image .overlay {
    opacity: 1;
}

.service-content {
    padding: 80px 80px 35px 80px;
    position: relative;
}

.service-content .icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -65px auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-content .icon i {
    font-size: 2rem;
    color: #f8b54a;
    transition: all 0.3s ease;
}

.service-card:hover .service-content .icon {
    background: #f8b54a;
}

.service-card:hover .service-content .icon i {
    color: #fff;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Gotu', sans-serif;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-content .btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid #f8b54a;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-content .btn:hover {
    background: #f8b54a;
    color: #fff;
}


.reason-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    min-height: 500px;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg-2.png') no-repeat bottom center;
    background-size: cover;
    transform: translateY(-50%);
    height: 120%;
    width: 100%;
    z-index: -1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cta-content .title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #f8b54a;
    border-color: #f8b54a;
    color: #000;
}

.cta-buttons .btn-outline-light {
    border-width: 2px;
}

.cta-buttons .btn-outline-light:hover {
    background: #f8b54a;
    border-color: #f8b54a;
    color: #000;
}


/* Vehicle Detail Section */
.vehicle-detail-section {
    padding: 80px 0;
    background: #fff;
}

.vehicle-gallery {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vehicle-gallery .main-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.vehicle-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.thumbnail-images .thumb-item {
    position: relative;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-images .thumb-item:hover {
    border-color: rgba(248, 181, 74, 0.5);
    transform: translateY(-2px);
}

.thumbnail-images .thumb-item.active {
    border-color: #f8b54a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 181, 74, 0.2);
}

.thumbnail-images .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-details {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-header h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Gotu', sans-serif;
}

.detail-specs {
    margin: 30px 0;
}

.detail-specs h3,
.detail-description h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Gotu', sans-serif;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 10px;
}

.spec-item i {
    color: #f8b54a;
    font-size: 1.2rem;
}

.spec-item span {
    color: #333;
    font-weight: 500;
}

.detail-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.detail-cta .btn {
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 30px;
}

.detail-cta .btn-primary {
    background: #f8b54a;
    border-color: #f8b54a;
    color: #000;
}

.detail-cta .btn-outline {
    border: 2px solid #f8b54a;
    color: #333;
}

.detail-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(248, 181, 74, 0.15);
}


/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-wrapper {
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon i {
    font-size: 1.8rem;
    color: #f8b54a;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Gotu', sans-serif;
    color: #333;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card p a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card p a:hover {
    color: #f8b54a;
}

/* Map Section */
.map-section {
    margin-top: 30px;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 767px) {

    [data-aos] {
        opacity: 1 !important;
        transform: translate(0) scale(1) !important;
        visibility: visible !important;
        transition: none !important;
    }

    .top-header .contact-info {
        justify-content: left;
        padding-left: 5px;
        flex-direction: row;
        gap: 15px;
    }

    .top-header .social-links {
        justify-content: center;
        margin-top: 10px;
    }

    .top-header .contact-info a {
        font-size: 12px;
    }

    .top-header .social-links a {
        width: 27px;
        height: 27px;
        font-size: 14px;
    }
    .why-choose-section {
        padding: 60px 0;
    }

    .content-wrapper .title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item .icon {
        width: 50px;
        height: 50px;
    }

    .feature-item .icon i {
        font-size: 1.5rem;
    }

    .cta-content .title {
        font-size: 2rem;
    }

    .cta-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .footer {
        padding: 60px 0 0;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer .social-links {
        margin-bottom: 30px;
    }
    .top-header .contact-info,
    .top-header .social-links {
        text-align: center;
        margin: 5px 0;
    }
    
    .whatsapp-btn .tooltip {
        display: none;
    }
    
    
    .whatsapp-btn-content {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .page-header {
        height: 400px;
    }

    .breadcrumb-item {
        font-size: 1rem;
    }
    .contact-content-section {
        padding: 60px 0;
    }
    .services-content-section {
        padding: 60px 0;
    }

    .map-wrapper iframe {
        height: 350px;
    }
    .page-header {
        height: 300px;
    }

    .page-header .title {
        font-size: 30px;
    }

    .stats-row .stat-item {
        flex: 1 1 100%;
    }

    .info-card {
        margin-bottom: 30px;
    }
    .vehicle-gallery .main-image {
        height: 300px;
    }

    .thumbnail-images .thumb-item {
        height: 80px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 80px 25px 0px 25px;
    
    }
    .service-content p{
        font-size: 14px;
    }
    .service-content h3 {
        font-size: 1.3rem;
    }

    .cta-content .title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .detail-pages-hero{
        margin-top: 100px;
    }
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(17, 17, 17, 0.95);
        border-radius: 10px;
        margin-top: 15px;
        backdrop-filter: blur(10px);
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        gap: 10px;
        padding: 20px;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 0;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        font-size: 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(248, 181, 74, 0.1);
        padding-left: 20px;
    }

    .navbar-nav .book-now {
        background: #f8b54a;
        color: #000 !important;
        text-align: center;
        margin-top: 10px;
    }

    .navbar-nav .book-now:hover {
        background: transparent !important;
        color: #f8b54a !important;
        padding-left: 15px;
    }

    .why-choose-section .container {
        padding: 0 15px;
    }

    .content-wrapper {
        padding-left: 0;
        margin-top: 50px;
        height: auto;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
        text-align: center;
    }

    .stats-box {
        flex-direction: column;
    }

    .experience-box {
        right: 20px;
    }

    .about-content-text {
        padding-left: 0;
        margin-top: 50px;
    }
    .contact-info-card {
        margin-bottom: 30px;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stats-row .stat-item {
        flex: 1 1 calc(50% - 15px);
    }
    .vehicle-gallery {
        margin-bottom: 30px;
    }

    .vehicle-gallery .main-image {
        height: 400px;
    }
    .mission-vision-wrapper {
        margin-top: 2rem;
    }
    
    .mission-vision-wrapper .info-card {
        margin-bottom: 0;
    }
}

/* iPhone 5 ve Küçük Ekranlar için Medya Sorguları (320px) */
@media (max-width: 767px) {
    /* Top Header */
    .top-header {
        padding: 8px 0 0 0;
    }
    .site-header.fixed .top-header {
        display: block;
    }

    .top-header .contact-info a {
        font-size: 11px;
    }

    .top-header .social-links {
        gap: 8px;
    }

    .top-header .social-links a {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .top-header .social-links .facebook-icon {
        display: none;
    }
    .top-header .social-links .insta-icon {
        position: absolute;
        top: 9px;
        right: 13px;
        background: #f8b54a;
        color: #000;
    }

    /* Navbar */
    .navbar-brand h1 {
        font-size: 20px;
    }
    .navbar-brand img {
        width: 40px;
    }

    .navbar {
        padding: 10px 0;
    }

    /* Hero Section */
    .hero-section{
        background-position: 65%;
    }
    .hero-content {
        padding: 75px 0px;
        margin-top: 85px;
    }

    .hero-content .title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content .description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-features .feature {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        display: none;
    }

    /* Services Section */
    .services-section {
        padding: 40px 0;
    }

    .section-header .title {
        font-size: 22px;
    }

    .section-header .subtitle {
        font-size: 12px;
    }

    .section-header .description {
        font-size: 14px;
    }
    .services-container{
        gap: 20px;
    }

    .service-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }
    .service-card .read-more{
        font-size: 14px;
    }

    /* About Us Section */
    .about-cta{
        margin-top: 0;

    }
    .about-cta .btn{
        font-size: 12px;
        padding: 12px 35px;
    }
    .feature-list{
        flex-direction: column;
        margin-bottom: 0;
    }

    /* Fleet Section */

    .fleet-section{
        padding: 65px 0 0px 0;
    }
    .fleet-card {
        margin-bottom: 20px;
    }

    .fleet-card .content {
        padding: 15px;
        text-align: center;
    }

    .fleet-card h3 {
        font-size: 18px;
    }

    .fleet-card .specs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .fleet-card .spec {
        font-size: 12px;
    }

    .fleet-card .btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    /* Why Choose Us Section */
    .content-wrapper .title {
        font-size: 22px;
    }
    .parallax-section{
        padding: 25px 0;
    }

    .content-wrapper .description {
        font-size: 14px;
    }

    .feature-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .feature-item .icon {
        width: 40px;
        height: 40px;
    }

    .feature-item .icon i {
        font-size: 18px;
    }

    .feature-item .text h4 {
        font-size: 16px;
    }

    .feature-item .text p {
        font-size: 13px;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .stats-row .stat-item {
        width: 100%;
        padding: 15px;
    }

    .stats-row .number {
        font-size: 24px;
    }

    .stats-row .text {
        font-size: 14px;
    }

    /* CTA Section */
    .cta-content {
        padding: 30px 15px;
    }

    .cta-content .title {
        font-size: 22px;
    }

    .cta-content .description {
        font-size: 14px;
    }

    .cta-info {
        flex-direction: column;
        gap: 10px;
    }

    .info-item span {
        font-size: 14px !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 10px;
        font-size: 12px;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        right: 20px;
        bottom: 30px;

    }

    .whatsapp-btn i {
        font-size: 25px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer .logo {
        font-size: 24px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-widget .widget-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer .about-widget p{
        font-size: 14px;
    }

    .footer-widget .links-list a {
        font-size: 13px;
    }

    .footer-widget.contact-widget .contact-info .contact-item {
        margin-bottom: 10px;
    }

    .footer-widget.contact-widget .contact-info .contact-item p {
        font-size: 13px;
    }

    .copyright-row .copyright p {
        font-size: 12px;
        text-align: center;
    }
    .cta-buttons a i {
        font-size: 20px;
    }
    .description{
        font-size: 14px;
    }
}

@media (min-width: 321px) and (max-width:767px) {
    .services-section{
        margin-top: -145px;
    }
    .feature-list{
        gap: 20px;
    }
    .hero-content{
        margin-top: 85px;
    }
}

/* Tablet Ekranlar İçin Medya Sorguları */
@media (min-width: 768px) and (max-width: 991px) {
    /* Header ve Hero Section */
    .hero-content {
        margin-top: 200px;
        padding: 40px 0;
    }

    .hero-content .title {
        font-size: 3rem;
    }

    .hero-content .description {
        font-size: 1rem;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        margin-bottom: 30px;
    }

    .service-content {
        padding: 60px 20px 25px;
    }

    /* Fleet Section */
    .fleet-section {
        padding: 60px 0;
    }

    .fleet-card {
        margin-bottom: 30px;
    }

    .fleet-card .content {
        padding: 20px;
    }

    /* Why Choose Section */
    .feature-list {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        width: 100%;
    }

    /* CTA Section */
    .parallax-section {
        padding: 80px 0;
    }

    .cta-content .title {
        font-size: 2.5rem;
    }

    .cta-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .cta-buttons .btn {
        min-width: 200px;
    }

    /* Footer */
    .footer-widget {
        margin-bottom: 40px;
    }

    .footer .about-widget p {
        font-size: 14px;
    }

    /* Whatsapp Button */
    .whatsapp-btn {
        right: 25px;
        bottom: 25px;
    }

    .whatsapp-btn-content {
        width: 55px;
        height: 55px;
    }

    /* Language Switcher */
    .language-switcher .current-lang {
        padding: 6px 10px;
    }

    .language-switcher .current-lang img {
        width: 18px;
        height: 18px;
    }
    .hero-section {
        height: 73vh;
    }
}
@media (min-width: 1919px) {
    .hero-content{
        margin-top: 270px;
    }
}
