html {
    scroll-behavior: smooth;
}

:root {
    --primary: #1C2C4C;
    --accent: #FF6B35;
    --light: #F2F2F2;
    --white: #ffffff;
    --city24-grey: #edf0f4;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    --whatsapp: #25d366;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--city24-grey);
    color: var(--primary);
}


/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 200px;
}

.nav a {
    font-size: 18px;
    margin: 0 0.8rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links a.active-link {
    color: var(--accent);
}

.nav .dropdown {
    position: relative;
    display: inline-block;
}

/* DROPDOWN İÇERİĞİ (ALT MENÜ) */
.nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 8px;
    z-index: 999;
}

/* MENÜ ELEMANLARI */
.nav .dropdown-content a {
    color: var(--primary);
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f2f2f2;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* HOVER STİLİ */
.nav .dropdown-content a:hover {
    background-color: var(--city24-grey);
    color: var(--accent);
}

/* HOVER OLUNCA AÇILAN HAL */
.nav .dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
}

/* HERO */
.hero {
    background: url('../assets/city24-hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 2rem;
    position: relative;
    text-align: center;
}

.overlay-text {
    font-size: 2rem;
    font-family: var(--font-heading);
    background: rgba(0, 0, 0, 0.4);
    padding-top: 9px;
    color: white;
    width: 100%;
    text-align: center;
    height: 1.5em;
    letter-spacing: 1px;
}

.overlay-text .slide {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    white-space: nowrap;
    pointer-events: none;
}

.overlay-text .slide.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-form-modern {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 95%;
    margin: 2rem auto;
    box-sizing: border-box;
}

.booking-form-modern form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trip-type-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trip-type-toggle {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trip-type-toggle input[type="radio"] {
    display: none;
}

.trip-type-toggle label {
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--primary);
    background-color: white;
}

.trip-type-toggle input[type="radio"]:checked+label {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}


.form-fields-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    align-items: center;
}

.form-fields-row input,
.form-fields-row select,
.form-fields-row button {
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.form-fields-row button {
    background-color: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-fields-row button:hover {
    background-color: #e65a27;
}

.input-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.6rem;
    background-color: white;
}

.input-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.input-icon input,
.input-icon select {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.trip-type-container-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.reservation-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.reservation-btn:hover {
    background-color: #e65a27;
}

.date-wrapper {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
}

.date-wrapper input {
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    background: transparent;
}


/* STEPS */
.steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.step-item {
    flex: 1;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0px;
}

.step-item:not(:last-child) {
    border-right: 1px solid white;
}


/* SERVICES */
.image-slider-section {
    padding: 4rem 2rem;
}

.image-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.image-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 600%;
}

.image-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
}

.image-slide img {
    width: 50%;
    border-radius: 12px;
    object-fit: cover;
}

.slide-content {
    width: 45%;
    text-align: center;
}

.slide-content h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
}

.slide-content button {
    padding: 0.7rem 1.5rem;
    background-color: var(--accent);
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-content button:hover {
    background-color: #e65a27;
}

.dots {
    text-align: center;
    margin-top: 1rem;
}

.dots span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dots span.active {
    background-color: var(--accent);
}


/* MOTTO SECTION */
.motto {
    text-align: center;
    padding: 2rem 2rem;
    font-family: var(--font-body);
    color: var(--primary);
}

.motto h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.motto p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 1px;
    font-style: italic;
}


/* ABOUT - FEATURE */
.about {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1 1 45%;
    text-align: center;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-text button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-text button:hover {
    background-color: var(--primary);
}

.feature-image {
    flex: 1 1 45%;
    text-align: center;
}

.feature-image img {
    width: 75%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* FOOTER */
.footer {
    background: #333;
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--whatsapp);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem 1rem;
    font-family: var(--font-body);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-left,
.footer-right {
    flex: 1 1 300px;
}

.footer-left h3 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-right h4 {
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons {
    justify-content: center;
    display: flex;
    gap: 1rem;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}






/* FİLO SAYFASI */
.fleet-full {
    padding: 2rem;
    background-color: var(--city24-grey);
    font-family: var(--font-body);
    color: var(--primary);
    text-align: center;
}

.fleet-intro h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fleet-image-center img {
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
}

.fleet-double-text {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.fleet-double-text div {
    font-size: 1rem;
}

.fleet-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0 0 1rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.fleet-card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.fleet-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.fleet-card hr {
    width: 20%;
    border: 1px solid var(--accent);
}

.fleet-card-info {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    font-size: 1rem;
    width: 100%;
}

.fleet-card-info i {
    color: var(--accent);
    margin-right: 6px;
}

.fleet-card button {
    margin-top: auto;
    padding: 0.6rem 1.2rem;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fleet-card button:hover {
    background-color: var(--primary);
}

/* NEW FLEET SLIDER STYLES */
.fleet-slider-section {
    padding: 2rem 0;
    background-color: var(--city24-grey);
}

.fleet-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fleet-image-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.fleet-image-slide {
    display: flex;
    justify-content: space-around;
    /* Distribute images */
    align-items: center;
    min-width: 100%;
    /* Each slide takes full width of wrapper */
    box-sizing: border-box;
    padding: 1rem;
    background-color: var(--white);
}

.fleet-image-slide img {
    width: 48%;
    /* Adjust as needed, leaving space for gaps */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fleet-slider-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.fleet-slider-dots span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fleet-slider-dots span.active {
    background-color: var(--accent);
}

/* ABOUT - FEATURE */
.fleet-about {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem;
}

.fleet-feature-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fleet-feature-row.reverse {
    flex-direction: row-reverse;
}

.fleet-feature-text {
    flex: 1 1 45%;
    text-align: center;
}

.fleet-feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.fleet-feature-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.fleet-feature-text button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fleet-feature-text button:hover {
    background-color: var(--primary);
}

.fleet-feature-text .whatsapp {
    background-color: var(--whatsapp);
    margin-right: 1.8rem;
}

.fleet-feature-image {
    flex: 1 1 45%;
    text-align: center;
}

.fleet-feature-image img {
    width: 75%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fleet-faq {
    margin: 4rem 0 2rem;
}

.fleet-faq h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    max-width: 800px;
    margin: 1.5rem auto;
    text-align: center;
    font-style: italic;
}

.faq-item p {
    font-style: normal;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.fleet-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.fleet-buttons button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fleet-buttons button.whatsapp {
    background-color: var(--whatsapp);
}

.fleet-buttons button:hover {
    background-color: var(--primary);
}

.fleet-highlights {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1rem;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 1rem;
    color: #333;
}




/* HİZMETLER SAYFASI */
/* HIZMETLER - HERO BANNER */
.hero.hizmetler-hero {
    height: 70vh;
    background: url('../assets/city24-hizmetler.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero.hizmetler-hero .overlay-text {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    padding: 1rem;
    width: 100%;
    text-align: center;
}

/* HIZMETLER - 2 COLUMN SECTION */
.hizmetler-feature {
    width: 80%;
    margin: 4rem auto;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hizmetler-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmetler-feature-text {
    background-color: var(--primary);
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hizmetler-feature-text h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 1.5px;
}

.hizmetler-feature-text .buttons {
    display: flex;
    gap: 1rem;
}

/* HIZMETLER - REZERVASYON BUTONU */
.hizmetler-rezervasyon-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.hizmetler-rezervasyon-button.whatsapp {
    background-color: var(--whatsapp);
}

.hizmetler-rezervasyon-button i {
    margin-right: 0.5rem;
}

.hizmetler-rezervasyon-button:hover {
    background-color: var(--white);
    color: var(--primary);
}

.hizmetler-fleet-faq {
    margin: 4rem 0 2rem;
}

.hizmetler-fleet-faq h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;

}


.hizmetler-fleet-highlights {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
    text-align: center;
}

.hizmetler-highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.hizmetler-highlight-item p {
    font-size: 1rem;
    color: #333;
}


.hero.hakkimizda-hero {
    height: 80vh;
    background: url('../assets/hakkimizda-city24.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero.iletisim-hero {
    height: 70vh;
    background: url('../assets/city24-iletisim.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    text-align: center;
}

.special-cards-section {
    padding: 3rem 1rem 5rem;
}

.special-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-card {
    position: relative;
    background-color: var(--primary);
    border: 6px solid var(--accent);
    /* Kalın border: 3px */
    border-radius: 16px;
    text-align: center;
    overflow: visible;
    color: white;
}

.special-card img {
    width: calc(100% + 2px);
    /* sağ ve sol kenar ile hizalama */
    margin-left: -1px;
    margin-right: -1px;
    margin-top: -1px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    object-fit: cover;
    display: block;
}

.special-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    /* daha ince yazı */
    letter-spacing: 1px;
    font-family: var(--font-heading);
    margin: 1rem 0 2.5rem;
}

.special-card button {
    position: absolute;
    bottom: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    text-transform: uppercase;
    /* Hepsi büyük harf */
    font-weight: 600;
    letter-spacing: 1px;
}

.special-card button:hover {
    background-color: #e65a27;
}

.popular-routes-section {
    padding: 3rem 1rem 5rem;
}

.popular-routes-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1C2C4C;
}

.popular-routes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.route-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.route-card h3 {
    text-align: center;
    font-size: 1.1rem;
    margin: 10px 0 5px;
    color: #1C2C4C;
}

.route-details {
    list-style: none;
    padding: 0 16px;
    margin: 10px 0;
    font-size: 0.95rem;
    color: #333;
}

.route-details li {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px solid #eee;
}

.route-details span {
    font-weight: 500;
}

.route-strip {
    background-color: #1C2C4C;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 0.9rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.route-strip i {
    margin-right: 6px;
}


/* General Mobile Styles (Applies to screens smaller than 768px) */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    /* Header */
    .header {
        flex-direction: column;
        padding: 1rem;
        align-items: flex-start;
    }

    .logo img {
        width: 150px;
        margin-bottom: 1rem;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav {
        width: 100%;
        text-align: center;
    }

    .nav a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav .dropdown {
        display: block;
        /* Make dropdown a block element for better mobile stacking */
        width: 100%;
    }

    .nav .dropdown-content {
        display: none;
    }

    .nav .dropdown-content a {
        padding: 10px 15px;
        font-size: 15px;
        text-align: center;
    }

    .nav .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Hero Section */
    .hero {
        background: url('../assets/city24-hero.jpg') center/cover no-repeat fixed;
        height: 800px;
        padding-bottom: 1rem;
    }

    /* Booking Form */
    .booking-form-modern {
        padding: 1rem;
        width: 98%;
        margin: 1rem auto;
    }

    .trip-type-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-fields-row {
        grid-template-columns: 1fr;
        /* Stack inputs vertically */
        gap: 1rem;
    }

    .input-icon {
        padding: 0.8rem;
    }

    .reservation-btn {
        width: 100%;
        /* Make button full width */
        justify-content: center;
    }

    /* Steps Section */
    .steps {
        flex-direction: column;
        /* Stack steps vertically */
        font-size: 1.1rem;
        margin: 0;
    }

    .step-item {
        margin: 10px 0;
        padding: 1.5rem 1rem;
        border-right: none !important;
        /* Remove vertical border */
        border-bottom: 1px solid white;
        /* Add horizontal border */
    }

    .step-item:last-child {
        border-bottom: none;
    }

    /* Services Section (Image Slider) */
    .image-slider-section {
        padding: 2rem 1rem;
    }

    .image-slider {
        width: 100%;
        /* Reset width for mobile, controlled by transform */
    }

    .image-slide {
        flex-direction: column;
        /* Stack image and content vertically */
        gap: 1.5rem;
        padding: 1rem;
        width: 100vw;
        /* Occupy full viewport width for slides */
    }

    .image-slide img {
        width: 90%;
        /* Adjust image width */
        height: auto;
    }

    .slide-content {
        width: 90%;
        /* Adjust content width */
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    /* Motto Section */
    .motto {
        padding: 1.5rem 1rem;
    }

    .motto h2 {
        font-size: 1.8rem;
    }

    .motto p {
        font-size: 1.2rem;
    }

    /* About / Feature Section (Homepage) */
    .about {
        padding: 1rem;
        gap: 2.5rem;
    }

    .feature-row {
        flex-direction: column;
        /* Stack elements vertically */
        gap: 2rem;
    }

    .feature-row.reverse {
        flex-direction: column;
        /* Ensure reverse also stacks vertically */
    }

    .feature-text,
    .feature-image {
        flex: 1 1 100%;
        /* Take full width */
        width: 100%;
    }

    .feature-image img {
        width: 90%;
        /* Adjust image size */
    }

    /* Footer */
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        /* Stack footer columns vertically */
        gap: 1.5rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex: 1 1 100%;
        /* Take full width */
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 0.8rem;
        margin-top: 1.5rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button img {
        width: 40px;
        height: 40px;
    }

    .special-card h3 {
        font-size: 1rem;
    }

    .special-card button {
        font-size: 0.9rem;
        padding: 0.5rem 1.1rem;
    }

    .popular-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Specific Mobile Styles for Fleet Page */
@media (max-width: 768px) {
    .fleet-full {
        padding: 1.5rem 1rem;
    }

    .fleet-intro h1 {
        font-size: 2rem;
    }

    .fleet-image-center img {
        width: 90%;
        margin: 1.5rem auto;
    }

    .fleet-double-text {
        flex-direction: column;
        /* Stack text divs vertically */
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    /* NEW FLEET SLIDER MOBILE STYLES */
    .fleet-slider-section {
        padding: 1rem 0;
    }

    .fleet-slider-wrapper {
        box-shadow: none;
        /* Remove shadow on mobile for a cleaner look if desired */
    }

    .fleet-image-slide {
        flex-direction: column;
        /* Stack images vertically on mobile */
        padding: 0.5rem;
    }

    .fleet-image-slide img {
        width: 90%;
        /* Make images take more width */
        margin-bottom: 1rem;
        /* Add space between stacked images */
    }


    /* Fleet Feature Section */
    .fleet-about {
        padding: 1rem;
        gap: 2.5rem;
    }

    .fleet-feature-row {
        flex-direction: column;
        /* Stack elements vertically */
        gap: 2rem;
    }

    .fleet-feature-row.reverse {
        flex-direction: column;
        /* Ensure reverse also stacks vertically */
    }

    .fleet-feature-text,
    .fleet-feature-image {
        flex: 1 1 100%;
        /* Take full width */
        width: 100%;
    }

    .fleet-feature-image img {
        width: 90%;
        /* Adjust image size */
    }

    .fleet-feature-text .whatsapp {
        margin-right: 0.8rem;
        /* Adjust margin */
    }

    .fleet-faq {
        margin: 3rem 0 1.5rem;
    }

    .fleet-faq h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .faq-item {
        margin: 1rem auto;
        padding: 0 10px;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .fleet-buttons {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 1rem;
        margin: 1.5rem 0 3rem;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .fleet-buttons button {
        width: 100%;
        /* Make buttons full width */
    }

    .fleet-highlights {
        grid-template-columns: 1fr;
        /* Stack highlights vertically */
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .highlight-item h4 {
        font-size: 1.2rem;
    }
}

/* Specific Mobile Styles for Services Page (Hizmetler) */
@media (max-width: 768px) {
    .overlay-text {
        font-size: 1.5rem;
    }

    .hero.hizmetler-hero {
        height: 50vh;
        /* Adjust hero height */
    }

    .hero.hizmetler-hero .overlay-text {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    .hizmetler-feature {
        width: 90%;
        margin: 2rem auto;
        flex-direction: column;
        /* Stack image and text vertically */
    }

    .hizmetler-feature-image {
        width: 100%;
        /* Make image take full width */
        height: 200px;
        /* Set a fixed height or adjust as needed */
        overflow: hidden;
        /* Hide overflow if image is larger */
    }

    .hizmetler-feature-text {
        padding: 1.5rem;
    }

    .hizmetler-feature-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hizmetler-feature-text .buttons {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 0.8rem;
        width: 100%;
    }

    .hizmetler-rezervasyon-button {
        width: 100%;
        /* Make buttons full width */
        justify-content: center;
        padding: 0.7rem 1rem;
    }

    .hizmetler-fleet-faq {
        margin: 2.5rem 0 1rem;
    }

    .hizmetler-fleet-faq h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hizmetler-fleet-highlights {
        grid-template-columns: 1fr;
        /* Stack highlights vertically */
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hizmetler-highlight-item h4 {
        font-size: 1.2rem;
    }

    .hero.hakkimizda-hero {
        height: 60vh;
    }

    .hero.iletisim-hero {
        height: 60vh;
    }
}

/* Tablet Styles (Adjustments for screens between 768px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Header */
    .header {
        padding: 1rem 1.5rem;
    }

    .logo img {
        width: 180px;
    }

    .nav a {
        font-size: 17px;
        margin: 0 0.6rem;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
    }

    .overlay-text {
        font-size: 1.8rem;
    }

    /* Booking Form */
    .booking-form-modern {
        max-width: 90%;
    }

    .form-fields-row {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    /* Steps Section */
    .steps {
        font-size: 1.2rem;
        margin: 20px 0;
    }

    /* Services Section (Image Slider) */
    .image-slider-section {
        padding: 3rem 1.5rem;
    }

    .image-slide {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .image-slide img {
        width: 48%;
    }

    .slide-content {
        width: 48%;
    }

    /* Motto Section */
    .motto h2 {
        font-size: 2.2rem;
    }

    .motto p {
        font-size: 1.6rem;
    }

    /* About / Feature Section (Homepage) */
    .about {
        padding: 1.5rem;
        gap: 3rem;
    }

    .feature-text h3 {
        font-size: 1.6rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    /* Fleet Page */
    .fleet-intro h1 {
        font-size: 2.2rem;
    }

    .fleet-image-center img {
        width: 70%;
    }

    .fleet-double-text {
        gap: 2rem;
    }

    /* NEW FLEET SLIDER TABLET STYLES */
    .fleet-slider-section {
        padding: 1.5rem 0;
    }

    .fleet-image-slide img {
        width: 45%;
        /* Slightly reduce width for tablet view */
    }

    .fleet-feature-text h3 {
        font-size: 1.6rem;
    }

    .fleet-feature-text p {
        font-size: 1rem;
    }

    .fleet-faq h2 {
        font-size: 1.8rem;
    }

    .fleet-buttons {
        gap: 1.5rem;
    }

    /* Services Page (Hizmetler) */
    .hero.hizmetler-hero {
        height: 60vh;
    }

    .hero.hizmetler-hero .overlay-text {
        font-size: 1.8rem;
    }

    .hizmetler-feature {
        width: 90%;
    }

    .hizmetler-feature-text h2 {
        font-size: 1.8rem;
    }

}

@media screen and (max-width: 600px) {
    .popular-routes-grid {
        grid-template-columns: 1fr;
    }
}