/* Global Styles */
:root {
    --yellow: #FFD700;
    --light-yellow: #FFF9C4;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #CCCCCC;
    --dark-gray: #666666;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --max-width: 1400px;
    --section-padding: 5rem 5%;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body {
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

.heading {
    text-align: center;
    margin-bottom: 4rem;
}

.heading span {
    color: var(--yellow);
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.heading h2 {
    font-size: 3.5rem;
    color: var(--black);
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    background: var(--yellow);
    color: var(--black);
    cursor: pointer;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--black);
    z-index: -1;
    transition: 0.3s ease-out;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    color: var(--white);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.active {
    padding: 1.5rem 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-phone {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.header-phone a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: var(--black);
    white-space: nowrap;
}

.header-phone i {
    color: var(--yellow);
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 5rem;
    width: auto;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--black);
    margin: 0 1.5rem;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 0.2rem;
    background: var(--yellow);
    transition: 0.3s ease-out;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

#menu-btn {
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
    display: none;
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fixed-contact a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-phone {
    background: var(--yellow);
    color: var(--black);
}

.contact-whatsapp {
    background: #25D366;
}

.fixed-contact a:hover {
    transform: translateY(-0.3rem);
}

/* Home Section */
.home {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 8rem;
}

.home .slides-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 8rem);
}

.home .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home .slides-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 8rem);
    overflow: hidden;
}

.home .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: translateX(100%);
    z-index: 1;
}

.home .slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.home .slide.prev {
    transform: translateX(-100%);
}

.home .slide.next {
    transform: translateX(100%);
}

.home .slide .content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    opacity: 1;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s ease;
    transition-delay: 0.3s;
}

.home .slide.active .content {
    transform: translateY(0);
    opacity: 1;
}
.home .slide:nth-child(1) .content {
    transform: translateY(100px);
}

.home .slide:nth-child(2) .content {
    transform: translateY(-100px);
}

.home .slide:nth-child(3) .content {
    transform: translateX(-100px);
}

.home .slide.active:nth-child(1) .content,
.home .slide.active:nth-child(2) .content,
.home .slide.active:nth-child(3) .content {
    transform: translate(0, 0);
}

/* Slide specific animations */
.home .slide:nth-child(1) .content {
    transition-delay: 0.3s;
}

.home .slide:nth-child(2) .content {
    transition-delay: 0.5s;
}

.home .slide:nth-child(3) .content {
    transition-delay: 0.7s;
}
/* Yazıların ortalı olması için ek stil */
.home .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Animasyon Keyframes Güncellemeleri */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.home .content h3 {
    font-size: 4rem;
    color: var(--white);
    text-transform: uppercase;
}

.home .content h1 {
    font-size: 6rem;
    color: var(--white);
    line-height: 1.2;
    margin: 1rem 0;
}

.home .content h1 span {
    color: var(--yellow);
    text-transform: uppercase;
}

.home .content p {
    font-size: 1.7rem;
    color: var(--white);
    padding: 1rem 0;
    line-height: 1.5;
}

.home .slide-controls {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 10;
}

.home .slide-controls span {
    width: 4rem;
    height: 4rem;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home .slide-controls span:hover {
    background: var(--black);
    color: var(--white);
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.about .container .image {
    flex: 1 1 40rem;
}

.about .container .image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about .container .content {
    flex: 1 1 40rem;
}

.about .container .content span {
    color: var(--yellow);
    font-size: 2rem;
    font-weight: 600;
}

.about .container .content h2 {
    font-size: 3.5rem;
    color: var(--black);
    margin: 1rem 0;
}

.about .container .content p {
    font-size: 1.6rem;
    color: var(--dark-gray);
    line-height: 1.8;
    padding: 1rem 0;
}

.about .container .content .info {
    margin-top: 2rem;
}

.about .container .content .info .box {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.about .container .content .info .box i {
    font-size: 3rem;
    color: var(--yellow);
    background: var(--light-yellow);
    padding: 1.5rem;
    border-radius: 50%;
}

.about .container .content .info .box h3 {
    font-size: 1.7rem;
    color: var(--black);
}

.about .container .content .info .box p {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

/* Services Section */
.services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.services .box-container .box {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background: var(--white);
    transition: 0.3s ease-out;
}

.services .box-container .box:hover {
    transform: translateY(-1rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.services .box-container .box i {
    font-size: 4rem;
    color: var(--yellow);
    margin-bottom: 2rem;
}

.services .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.services .box-container .box p {
    font-size: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Blog Section */
.blog .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.blog .box-container .box {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background: var(--white);
    overflow: hidden;
}

.blog .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.blog .box-container .box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s ease-out;
}

.blog .box-container .box:hover .image img {
    transform: scale(1.1);
}

.blog .box-container .box .content {
    padding: 2rem;
    position: relative;
}

.blog .box-container .box .content .date {
    position: absolute;
    top: -3rem;
    right: 2rem;
    background: var(--yellow);
    color: var(--black);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.blog .box-container .box .content .date span {
    display: block;
    font-size: 1.5rem;
}

.blog .box-container .box .content h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.blog .box-container .box .content p {
    font-size: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    padding: 1rem 0;
}

/* Gallery Section */
.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.gallery .box-container .box {
    height: 25rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
}

.gallery .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s ease-out;
}

.gallery .box-container .box:hover img {
    transform: scale(1.1);
}

.gallery .box-container .box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease-out;
}

.gallery .box-container .box:hover .overlay {
    opacity: 1;
}

.gallery .box-container .box .overlay h3 {
    font-size: 2.5rem;
    color: var(--white);
    transform: translateY(2rem);
    transition: 0.3s ease-out;
}

.gallery .box-container .box:hover .overlay h3 {
    transform: translateY(0);
}

/* Contact Section */
.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact .row form {
    flex: 1 1 50rem;
}

.contact .row .image {
    flex: 1 1 30rem;
}

.contact .row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.contact .row form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .row form .inputBox input {
    width: 49%;
    padding: 1.5rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: var(--black);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact .row form textarea {
    width: 100%;
    padding: 1.5rem;
    margin: 1rem 0;
    font-size: 1.7rem;
    color: var(--black);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    resize: none;
    height: 15rem;
}

/* Footer Section */
.footer {
    background: var(--black);
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-left: 7%;
}

.footer .box-container .box h3 {
    font-size: 2.2rem;
    color: var(--white);
    padding: 1rem 0;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    color: var(--gray);
    padding: 1rem 0;
}

.footer .box-container .box a i {
    padding-right: 0.5rem;
    color: var(--yellow);
}

.footer .box-container .box a:hover {
    color: var(--yellow);
}

.footer .credit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    font-size: 2rem;
    color: var(--white);
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer .credit span {
    color: var(--yellow);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    height: 4rem;
    width: 4rem;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-out;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--black);
    color: var(--white);
}

/* Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
    
    :root {
        --max-width: 1200px;
        --section-padding: 5rem 5%;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    
    :root {
        --max-width: 100%;
        --section-padding: 3rem 2rem;
    }
    
    .header-phone span {
        display: inline;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    
    
    .home .content h3 {
        font-size: 3rem;
    }
    
    .home .content h1 {
        font-size: 4rem;
    }
    
    .home .slide-controls {
        bottom: 3rem;
    }
    
    .fixed-contact {
        left: 0.5rem;
        bottom: 0.5rem;
    }
    
    .fixed-contact a {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
    }
    
    .contact .row form .inputBox input {
        width: 100%;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        height: 3rem;
        width: 3rem;
        font-size: 1.5rem;
    }

}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    
    .heading h2 {
        font-size: 3rem;
    }
    
    .home .content h3 {
        font-size: 2rem;
    }
    
    .home .content h1 {
        font-size: 3rem;
    }
    
    .home .slide-controls {
        bottom: 2rem;
    }
    
    .home .slide-controls span {
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem;
    }
    
    .fixed-contact {
        flex-direction: row;
        bottom: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.7);
        padding: 0.5rem;
        border-radius: 2rem;
    }
    
    .fixed-contact a {
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem;
    }
    
    
    .about .container {
        flex-direction: column;
    }
    
    .contact .row {
        flex-direction: column;
    }
    
    .contact .row .image {
        order: -1;
        height: 25rem;
    }
}

/* Large screens */
@media (min-width: 1600px) {
    :root {
        --max-width: 1600px;
        --section-padding: 6rem 10%;
    }
    
    html {
        font-size: 68.75%; /* 11px */
    }
}

@media (min-width: 2000px) {
    :root {
        --max-width: 1800px;
        --section-padding: 7rem 15%;
    }
    
    html {
        font-size: 75%; /* 12px */
    }
    
    .home .slide .content {
        max-width: 1400px;
    }
    
    .home .content h3 {
        font-size: 5rem;
    }
    
    .home .content h1 {
        font-size: 7rem;
    }
    
    .home .content p {
        font-size: 2rem;
    }
}


/* Toggle Switch Stilleri */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 120px; /* Genişliği artırdık */
    height: 34px;
    margin-left: 15px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--yellow);
    transition: .4s;
    border-radius: 34px;
    /* Slider'ın genişliğini sınırla */
    width: 70px; /* Butonun kayacağı alan */
    margin: 0 auto; /* Ortala */
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.theme-switch input:checked + .slider {
    background-color: #4ecca3; /* Pet taxi rengi */
}

.theme-switch input:checked + .slider:before {
    transform: translateX(40px); /* Yeni genişliğe göre ayarlandı */
}

/* Switch üzerindeki yazılar */
.pet-label,
.taxi-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: bold;
    color: var(--black);
    width: 50px; /* Yazı alanı genişliği */
    text-align: center;
    pointer-events: none; /* Tıklamalara engel olma */
}

.pet-label {
    left: 0px;
    display: none;
}

.taxi-label {
    right: 0px;
}

.theme-switch input:checked ~ .pet-label {
    display: block;
}

.theme-switch input:checked ~ .taxi-label {
    display: none;
}

/* Logo hizalamasını güncelle */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
    .theme-switch {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
        z-index: 1001; /* Menü butonundan daha yüksek */
        position: relative; /* z-index'in çalışması için */
    }
    
    .slider:before {
        height: 20px;
        width: 20px;
    }
    
    .theme-switch input:checked + .slider:before {
        transform: translateX(42px);
    }
    
    .pet-label, .taxi-label {
        font-size: 10px;
    }
}





/* Mobile Styles */
@media (max-width: 768px) {
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.active {
    padding: 1rem 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-and-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    order: 1;
    flex: 1;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.logo img {
    height: 4rem;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 30px;
    margin-left: 1rem;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--yellow);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.theme-switch input:checked + .slider {
    background-color: #4ecca3;
}

.theme-switch input:checked + .slider:before {
    transform: translateX(50px);
}

.pet-label, .taxi-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: bold;
    color: var(--black);
}

.pet-label {
    left: 10px;
    display: none;
}

.taxi-label {
    right: 10px;
}

.theme-switch input:checked ~ .pet-label {
    display: block;
}

.theme-switch input:checked ~ .taxi-label {
    display: none;
}

.header-phone {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.header-phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: var(--black);
}

.header-phone i {
    color: var(--yellow);
}

.header-menu {
    order: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#menu-btn {
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
    display: block;
}

.navbar {
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.navbar a {
    font-size: 1.7rem;
    color: var(--black);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.navbar a:hover, .navbar a.active {
    background: var(--light-yellow);
    color: var(--black);
}
}











@media (min-width: 769px) {
    .header .container {
        display: flex;
        align-items: center;
        padding: 2rem 0;
    }

    .header-phone {
        flex: 0 0 auto;
        margin-right: 10rem; /* Telefon numarası ile logo arası boşluk */
        margin-left: 3.5rem;
    }

    .logo-and-toggle {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        margin-right: 5rem; /* Logo ile navbar arası boşluk */
        margin-left: 3.5rem;
    }

    .logo {
        display: flex;
        align-items: center;
        margin-right: 1.5rem; /* Logo yazısı ile toggle arası boşluk */
    }

    .theme-switch {
        margin-right: 3rem; /* Toggle ile navbar arası boşluk */
    }

    .navbar {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        margin-right: 3.5rem;
    }

    .navbar a {
        margin: 0 1.5rem; /* Nav item'lar arası boşluk */
    }

    #menu-btn {
        display: none;
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
}

.logo-and-toggle {
    display: flex;
    align-items: center;
}

















/* Pet Taxi Specific Styles */
.pet-home .slide img {
    filter: brightness(0.7);
}

.pet-home .content h3,
.pet-home .content h1,
.pet-home .content p {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.pet-home .content h1 span {
    color: #4ecca3;
}

.pet-btn {
    background: #4ecca3;
    color: #fff;
}

.pet-btn:hover {
    color: #fff;
    background: #3aa789;
}

.pet-btn::before {
    background: #3aa789;
}

/* Pet About Section */
.pet-about .content span {
    color: #4ecca3;
}

/* Pet Services Section */
.pet-services .box-container .box {
    border: 1px solid rgba(78, 204, 163, 0.2);
}

.pet-services .box-container .box:hover {
    border-color: #4ecca3;
    transform: translateY(-1rem);
}

.pet-services .box-container .box i {
    color: #4ecca3;
}

/* Pet Gallery Section */
.pet-gallery .box .overlay h3 {
    color: #4ecca3;
}

/* Pet Contact Section */
.pet-contact form .btn {
    background: #4ecca3;
    color: #fff;
}

.pet-contact form .btn:hover {
    background: #3aa789;
}

/* Pet Theme Colors */
.pet-theme {
    --yellow: #4ecca3;
    --light-yellow: rgba(78, 204, 163, 0.1);
}

/* Pet Slider Controls */
.pet-home .slide-controls span {
    background: #4ecca3;
    color: #fff;
}

.pet-home .slide-controls span:hover {
    background: #3aa789;
}

/* Responsive Adjustments for Pet Content */
@media (max-width: 768px) {
    .pet-home .content h3 {
        font-size: 2.5rem;
    }
    
    .pet-home .content h1 {
        font-size: 3.5rem;
    }
    
    .pet-home .content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 450px) {
    .pet-home .content h3 {
        font-size: 2rem;
    }
    
    .pet-home .content h1 {
        font-size: 2.8rem;
    }
}


#back-to-top-main {
    bottom: 2rem; /* Diğer butonlarla çakışmaması için */
    right: 2rem;
    background: var(--yellow);
    color: var(--black);
}

#back-to-top-main:hover {
    background: var(--black);
    color: var(--white);
}