/* Custom CSS for PHP Version */

/* Ürün başlık bağlantıları */
.featured__title-link,
.products__title-link,
.new__title-link {
    color: var(--title-color);
    text-decoration: none;
    transition: .3s;
}

.featured__title-link:hover,
.products__title-link:hover,
.new__title-link:hover {
    color: var(--first-color);
}

/* Ürün resmi bağlantıları */
.featured__img,
.products__img,
.new__img {
    cursor: pointer;
}

/* Sepet boş mesajı */
.cart__empty {
    text-align: center;
    padding: 2rem 0;
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
}

/* Newsletter mesajları */
.newsletter__message {
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-radius: .5rem;
    font-size: var(--small-font-size);
    text-align: center;
}

.newsletter__message--success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.newsletter__message--error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

/* Product Details Page Styles */
.product__button {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    background-color: var(--first-color);
    color: #FFF;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    border-radius: 4rem;
    cursor: pointer;
}

.product__button i {
    font-size: 1.25rem;
}

/* Custom styles to override default theme */

/* Featured items grid - show 6 items */
@media screen and (min-width: 576px) {
  .featured__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .featured__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Override swiper to show more slides */
.swiper-wrapper {
  height: auto;
}

.new-swiper {
  overflow: visible;
}

/* Show more slides at once */
@media screen and (min-width: 768px) {
  .new-swiper {
    overflow: hidden;
  }
  
  .new-swiper .swiper-slide {
    width: 33.33% !important;
  }
}

@media screen and (min-width: 1024px) {
  .new-swiper .swiper-slide {
    width: 25% !important;
  }
}

/* Swiper kartları için özel düzenlemeler */
.new-swiper .swiper-wrapper {
    padding: 1rem 0;
}

.new__card {
    min-height: 460px;
    display: flex;
    flex-direction: column;
}

.new__data {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new__title-link {
    color: inherit;
    text-decoration: none;
}

/* Tepki kapasitesi yüksek görünüm için medya sorguları */
@media screen and (max-width: 768px) {
    .new__card {
        min-height: 420px;
    }
}

@media screen and (max-width: 576px) {
    .new__card {
        min-height: 380px;
    }
}

/* Swiper pagination bullet stilleri */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #ddd;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
  opacity: 1;
}

/* Swiper dokunmatik sürükleme göstergesi için stil */
.products-swiper .swiper-wrapper {
  cursor: grab;
  padding: 1.5rem 0;
}

.products-swiper .swiper-wrapper:active {
  cursor: grabbing;
}

/* Kaydırıcı genel stilleri */
.products-swiper {
  padding-bottom: 3.5rem;
  position: relative;
  overflow: visible;
}

/* Hizmet kartları için stil iyileştirmeleri */
.products-swiper .products__card {
  border-radius: 1.25rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 1.5rem 0.8rem;
  height: 450px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.products-swiper .products__card:active {
  cursor: grabbing;
}

.products-swiper .products__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.products-swiper .products__img-link {
  display: block;
  overflow: hidden;
  border-radius: 0.8rem;
  margin-bottom: 1.25rem;
  height: 220px;
}

.products-swiper .products__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.products-swiper .products__card:hover .products__img {
  transform: scale(1.05);
}

.products-swiper .products__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--title-color);
  position: relative;
  display: inline-block;
}

.products-swiper .products__title-link {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}

.products-swiper .products__title-link:hover {
  color: var(--first-color);
}

.products-swiper .products__title-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--first-color);
  transition: width 0.3s ease;
}

.products-swiper .products__title-link:hover::after {
  width: 100%;
}

.products-swiper .products__price {
  color: var(--text-color);
  font-size: var(--small-font-size);
  margin-bottom: 0.75rem;
  font-weight: 600;
  background: rgba(184, 184, 184, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  display: inline-block;
}

.products-swiper .products__description {
  color: black;
  font-size: var(--small-font-size);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Kaydırıcı gezinme butonları için özel stiller */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  color: var(--first-color);
  background-color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-1rem);
}

/* Tüm Hizmetlerimiz bölümü için özel stiller */
.all-services-section {
  padding: 5rem 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.all-services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/story.png');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.all-services-section .section__title {
  font-size: 2.25rem;
  margin-bottom: 3.5rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.all-services-section .section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-top: 0.5rem;
  font-weight: 400;
}

.all-services-section .section__title:after {
  content: '';
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 2px;
}

.all-services-section .products__container {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
  .products-swiper .products__card {
    height: 480px;
    padding: 1.5rem;
  }
  
  .products-swiper .products__img-link {
    height: 180px;
  }
  
  .products-swiper .products__description {
    -webkit-line-clamp: 6;
  }
}

@media screen and (max-width: 576px) {
  .products-swiper .products__card {
    height: 500px;
    margin: 1rem 0.5rem;
  }
}

/* Login ve Register Stilleri */
.login {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.login__content {
    position: relative;
    background-color: var(--container-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 350px;
    transition: transform .3s;
    transform: translateY(-20px);
}

.login__title {
    font-size: var(--h3-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.login__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    color: var(--text-color-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.login__close:hover {
    color: var(--first-color);
}

.login__form {
    width: 100%;
}

.login__group {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.login__item {
    position: relative;
}

.login__input {
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--container-color);
    color: var(--text-color);
    padding: .75rem 1rem .75rem 2.5rem;
    border-radius: .5rem;
    transition: border .3s, box-shadow .3s;
}

.login__input:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 0 2px rgba(var(--first-color-rgb), 0.1);
    outline: none;
}

.login__icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.15rem;
    color: var(--text-color-light);
    transition: .3s;
}

.login__input:focus + .login__icon {
    color: var(--first-color);
}

.login__forgot {
    text-align: right;
    margin-bottom: 1.5rem;
}

.login__forgot-link {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    transition: .3s;
}

.login__forgot-link:hover {
    color: var(--first-color);
}

.login__buttons {
    display: flex;
    justify-content: center;
}

.login__button {
    width: 100%;
    background-color: var(--first-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .5rem;
    padding: .85rem 1.5rem;
    border: none;
    outline: none;
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: .3s;
}

.login__button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(var(--first-color-rgb), 0.3);
}

.login__message {
    background-color: #f8f9fa;
    border-radius: .5rem;
    padding: .75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: var(--smaller-font-size);
    color: var(--text-color);
    border-left: 3px solid var(--text-color-light);
}

.login__message--error {
    background-color: rgba(255, 87, 87, 0.1);
    border-left-color: #ff5757;
    color: #ff5757;
}

.login__message--success {
    background-color: rgba(64, 192, 87, 0.1);
    border-left-color: #40c057;
    color: #40c057;
}

.show-login {
    opacity: 1;
    visibility: visible;
}

.show-login .login__content {
    transform: translateY(0);
}

/* Dark theme adjustments */
.dark-theme .login {
    background-color: rgba(0, 0, 0, 0.5);
}

.dark-theme .login__content {
    background-color: var(--container-color-dark);
}

.dark-theme .login__input {
    background-color: var(--container-color-dark);
    border-color: var(--border-color-dark);
    color: var(--text-color-dark);
}

.dark-theme .login__message {
    background-color: var(--container-color-dark);
    border-left-color: var(--border-color-dark);
}

/* Responsive adjustments */
@media screen and (max-width: 576px) {
    .login__content {
        padding: 1.5rem;
        max-width: 90%;
    }
}

/* Nav login icon */
.nav__login {
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--title-color);
  margin-left: 1rem;
}

/* Login error message */
.login__message {
  margin-bottom: 1.5rem;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: var(--small-font-size);
}

.login__message--error {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
}

.login__message--success {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

/* Kullanıcı profil ve menü stilleri */
.nav__user {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 1rem;
  cursor: pointer;
}

.nav__user-name {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--title-color);
  margin-right: 0.25rem;
}

.nav__user:after {
  content: '\25BC';
  font-size: 8px;
  color: var(--text-color);
  margin-left: 0.25rem;
}

.nav__user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 180px;
  background-color: var(--container-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  z-index: var(--z-fixed);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav__user:hover .nav__user-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__user-menu ul {
  list-style: none;
}

.nav__user-menu ul li {
  margin: 0;
  padding: 0;
}

.nav__user-menu ul li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: all 0.3s;
  text-decoration: none;
}

.nav__user-menu ul li a:hover {
  background-color: rgba(247, 193, 120, 0.1);
  color: var(--first-color);
}

.nav__icon-link {
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--title-color);
  margin-left: 1rem;
  transition: 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__icon-link:hover {
  color: var(--first-color);
}

.nav__icon {
  font-size: 1.25rem;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown__menu {
    display: block;
}

.dropdown__link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--title-color);
    transition: 0.3s;
}

.dropdown__link:hover {
    background-color: var(--container-color);
    color: var(--first-color);
    padding-left: 2rem;
}

/* Admin dashboard icon */
.nav__icon-link {
    font-size: 1.25rem;
    color: var(--title-color);
    margin-right: .5rem;
    transition: .3s;
}

.nav__icon-link:hover {
    color: var(--first-color);
}

/* Login form messages */
.login__message {
    margin-bottom: 1rem;
    padding: .75rem;
    border-radius: .5rem;
    font-size: .875rem;
}

.login__message--error {
    background-color: #ffebee;
    color: #f44336;
    border: 1px solid #f44336;
}

.login__message--success {
    background-color: #e8f5e9;
    color: #4caf50;
    border: 1px solid #4caf50;
}

/* Add your other custom styles below */
/* Dark theme adjustments for dropdown */
.dark-theme .dropdown__menu {
    background-color: var(--container-color);
}

.dark-theme .dropdown__link:hover {
    background-color: var(--body-color);
}

/* Mobile menu adjustments */
@media screen and (max-width: 767px) {
    .dropdown__menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        margin-top: .5rem;
        margin-bottom: .5rem;
        display: none;
    }
    
    .dropdown.active .dropdown__menu {
        display: block;
    }
    
    .nav__dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown__link {
        padding: 0.75rem 1rem;
    }
    
    .dropdown__link:hover {
        padding-left: 1.5rem;
    }
}

/* Service pages styles */
.service__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.service__image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service__image-container:hover .service__img {
    transform: scale(1.03);
}

.service__image-accent {
    position: absolute;
    width: 40%;
    height: 40%;
    background-color: rgba(var(--first-color-rgb), 0.2);
    bottom: -20px;
    right: -20px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.service__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service__content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.service__content h2 {
    font-size: 1.5rem;
    color: var(--title-color);
    margin: 2rem 0 1rem;
}

.service__content h3 {
    font-size: 1.25rem;
    color: var(--title-color);
    margin: 1.5rem 0 0.75rem;
}

.service__content p {
    margin-bottom: 1rem;
}

.service__content ul, .service__content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service__content li {
    margin-bottom: 0.5rem;
}

/* Service info box */
.service__info-box {
    background-color: var(--container-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(var(--first-color-rgb), 0.08);
}

.service__info-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--title-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.service__info-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--first-color);
    border-radius: 5px;
}

.service__info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service__info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(var(--first-color-rgb), 0.1);
}

.service__info-item:last-child {
    border-bottom: none;
}

.service__info-icon {
    color: var(--first-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service__action {
    margin-top: 1.5rem;
}

.service__action-button {
    width: 100%;
    justify-content: center;
}

.button--flex {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button__icon {
    font-size: 1.25rem;
}

/* Call to action */
.service__cta {
    background-color: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(var(--first-color-rgb), 0.1);
}

.service__cta-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--title-color);
}

.service__cta-text {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Services Section */
.related-services {
    padding-top: 5rem;
    padding-bottom: 7rem;
    position: relative;
    overflow: hidden;
}

.related-services::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    background-color: var(--container-color);
    z-index: -1;
    border-radius: 100% 100% 0 0 / 15%;
}

.related-services__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-service__card {
    background-color: var(--body-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-service__image {
    overflow: hidden;
    height: 200px;
}

.related-service__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.related-service__card:hover .related-service__img {
    transform: scale(1.1);
}

.related-service__data {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-service__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--title-color);
}

.related-service__description {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.related-service__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--first-color);
    font-weight: var(--font-medium);
    transition: all 0.3s;
}

.related-service__button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.related-service__button:hover i {
    transform: translateX(4px);
}

/* Testimonials section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--container-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    left: -50%;
    top: 0;
    background-color: var(--container-color);
    z-index: -1;
}

.testimonials__container {
    padding-bottom: 3rem;
    margin-top: 2rem;
}

.testimonial__card {
    background-color: var(--body-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial__quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(var(--first-color-rgb), 0.1);
    line-height: 1;
}

.testimonial__description {
    position: relative;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    z-index: 1;
}

.testimonial__user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--first-color);
}

.testimonial__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--title-color);
}

.testimonial__company {
    font-size: 0.85rem;
    color: var(--text-color-light);
}

/* Swiper pagination customization */
.testimonials .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.testimonials .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--first-color-lighter);
    opacity: 0.5;
    transition: all 0.3s;
}

.testimonials .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background-color: var(--first-color);
    opacity: 1;
}

/* Reveal animations */
.service__content,
.service__cta,
.testimonials__container,
.related-services__container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Dark theme adjustments for modern service styles */
.dark-theme .testimonial__card {
    background-color: var(--container-color);
}

.dark-theme .testimonial__quote {
    color: rgba(255, 255, 255, 0.05);
}

/* Updated Hero Section - Completely New Design */
.service-hero {
    padding: 3rem 0 6rem;
    position: relative;
    color: var(--title-color);
    background-color: transparent;
    overflow: visible;
    margin-bottom: 7rem;
}

.service-hero__overlay {
    display: none;
}

.service-hero__container {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero__content {
    padding-right: 2rem;
}

.service-hero__title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    color: var(--title-color);
}

.service-hero__title span {
    color: var(--first-color);
    position: relative;
    display: inline-block;
}

.service-hero__title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.2rem;
    background-color: var(--first-color);
    left: 0;
    bottom: 0.3rem;
    z-index: -1;
    opacity: 0.3;
}

.service-hero__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    animation: fadeIn 1s ease-out 0.3s both;
}

.service-hero__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.service-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--first-color);
    color: #fff;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s;
}

.service-hero__button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--first-color-rgb), 0.3);
}

.service-hero__button--outline {
    background-color: transparent;
    color: var(--title-color);
    border: 1px solid rgba(var(--text-color-rgb), 0.2);
}

.service-hero__button--outline:hover {
    background-color: transparent;
    border-color: var(--first-color);
    color: var(--first-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-hero__image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.service-hero__image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: all 0.5s;
}

.service-hero:hover .service-hero__image {
    transform: rotate(0);
}

.service-hero__badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(var(--first-color-rgb), 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.service-hero__badge i {
    font-size: 1.5rem;
}

.service-hero__accent-1,
.service-hero__accent-2 {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

.service-hero__accent-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(var(--first-color-rgb), 0.05);
    top: -50px;
    right: -80px;
    animation: float 8s ease-in-out infinite alternate;
}

.service-hero__accent-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(var(--first-color-rgb), 0.08);
    bottom: -70px;
    left: 30%;
    animation: float 6s ease-in-out infinite alternate-reverse;
}

.dark-theme .service-hero__accent-1 {
    background-color: rgba(255, 255, 255, 0.03);
}

.dark-theme .service-hero__accent-2 {
    background-color: rgba(255, 255, 255, 0.05);
}

/* New keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) rotate(3deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(3deg);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .service-hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero__content {
        padding-right: 0;
        order: 2;
    }
    
    .service-hero__image-wrapper {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        padding: 2rem 0 4rem;
        margin-bottom: 5rem;
    }
    
    .service-hero__title {
        font-size: 2.5rem;
    }
    
    .service-hero__badge {
        bottom: -1.5rem;
        left: -1rem;
        padding: 0.75rem;
    }
    
    .service-hero__buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .service-hero {
        padding: 1rem 0 3rem;
    }
    
    .service-hero__title {
        font-size: 2rem;
    }
    
    .service-hero__description {
        font-size: 1rem;
    }
    
    .breadcrumb__item {
        font-size: 0.8rem;
    }
}

/* Breadcrumb - Yeni Tasarım */
.breadcrumb {
    padding: 0;
    margin-top: 5rem;
    position: relative;
    z-index: 5;
}

.breadcrumb__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background-color: transparent;
    padding: 1rem 0;
    position: relative;
}

.breadcrumb__content::before {
    content: '';
    position: absolute;
    left: -100vw;
    right: -100vw;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(var(--first-color-rgb), 0.1) 20%,
        rgba(var(--first-color-rgb), 0.3) 50%,
        rgba(var(--first-color-rgb), 0.1) 80%,
        transparent 100%);
}

.breadcrumb__content::after {
    content: '';
    position: absolute;
    left: -100vw;
    right: -100vw;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(var(--first-color-rgb), 0.1) 20%,
        rgba(var(--first-color-rgb), 0.3) 50%,
        rgba(var(--first-color-rgb), 0.1) 80%,
        transparent 100%);
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-light);
    transition: all 0.3s;
    position: relative;
}

.breadcrumb__item i {
    font-size: 1rem;
    color: var(--first-color);
}

.breadcrumb__item:hover {
    color: var(--first-color);
}

.breadcrumb__arrow {
    color: var(--text-color-light);
    font-size: 0.75rem;
    opacity: 0.5;
}

.breadcrumb__item--active {
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.breadcrumb__item--active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--first-color);
    border-radius: 2px;
}

.dark-theme .breadcrumb__content::before,
.dark-theme .breadcrumb__content::after {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 80%,
        transparent 100%);
}

/* Admin Dashboard Styles */
.admin-stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--container-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--first-color), var(--first-color-lighter));
}

.admin-stat-title {
    font-size: var(--h3-font-size);
    color: var(--text-color-light);
    margin-bottom: 0.75rem;
}

.admin-stat-value {
    font-size: 2.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.admin-stat-link {
    font-size: var(--small-font-size);
    color: var(--first-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.admin-stat-link:hover {
    color: var(--first-color-alt);
    transform: translateX(5px);
}

.admin-dashboard-sections {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.admin-dashboard-section {
    background-color: var(--container-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.admin-dashboard-section h2 {
    margin-bottom: 1.5rem;
    font-size: var(--h3-font-size);
    color: var(--title-color);
    position: relative;
    display: inline-block;
}

.admin-dashboard-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--first-color);
    border-radius: 3px;
}

.admin-dashboard-more {
    margin-top: 1.5rem;
    text-align: right;
}

/* Dark theme adjustments */
.dark-theme .admin-stat-card,
.dark-theme .admin-dashboard-section {
    background-color: var(--container-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .admin-stat-cards {
        grid-template-columns: 1fr;
    }
    
    .admin-stat-value {
        font-size: 2rem;
    }
}

/* Admin Table Styles */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.admin-table thead {
    background-color: var(--first-color-lighter);
    color: var(--title-color);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    font-weight: var(--font-semi-bold);
    position: sticky;
    top: 0;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.admin-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.07);
    color: var(--text-color);
}

.admin-table tbody tr {
    transition: all 0.3s ease;
}

.admin-table tbody tr:hover {
    background-color: rgba(var(--first-color-rgb), 0.05);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
}

.admin-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--title-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.admin-action-button:hover {
    background-color: var(--first-color-lighter);
    color: var(--first-color);
    transform: translateY(-2px);
}

.admin-action-button i {
    font-size: 1rem;
}

/* Dark theme adjustments for admin table */
.dark-theme .admin-table {
    background-color: var(--container-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dark-theme .admin-table thead {
    background-color: rgba(var(--first-color-rgb), 0.1);
}

.dark-theme .admin-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-theme .admin-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.dark-theme .admin-action-button:hover {
    background-color: rgba(var(--first-color-rgb), 0.2);
}

/* Responsive styles for admin table */
@media screen and (max-width: 768px) {
    .admin-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem;
    }
    
    .admin-action-button {
        width: 28px;
        height: 28px;
    }
}

/* Admin Panel General Styles */
.admin-main {
    padding: 5rem 0 3rem;
    min-height: calc(100vh - 180px);
}

.admin-header {
    margin-bottom: 2rem;
    margin-top: 1rem;
    position: relative;
}

.admin-header h1 {
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
    color: var(--title-color);
    position: relative;
    display: inline-block;
}

.admin-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--first-color);
    border-radius: 2px;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    padding-top: 0.5rem;
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.1);
    overflow-x: auto;
}

.admin-tab {
    padding: 0.75rem 1.5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admin-tab:hover {
    color: var(--first-color);
    background-color: rgba(var(--first-color-rgb), 0.05);
}

.admin-tab.active {
    color: var(--first-color);
    position: relative;
    font-weight: var(--font-semi-bold);
}

.admin-tab.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--first-color);
    border-radius: 3px 3px 0 0;
}

.admin-content {
    background-color: var(--body-color);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.admin-link {
    color: var(--first-color);
    text-decoration: none;
    transition: all 0.3s;
}

.admin-link:hover {
    text-decoration: underline;
    color: var(--first-color-alt);
}

/* Dark theme adjustments */
.dark-theme .admin-content {
    background-color: var(--container-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dark-theme .admin-tabs {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .admin-tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .admin-main {
        padding: 4.5rem 0 2rem;
    }
    
    .admin-content {
        padding: 1.75rem;
        border-radius: 1rem;
    }
    
    .admin-header h1 {
        font-size: var(--h2-font-size);
        margin-top: 0.5rem;
    }
    
    .admin-tabs {
        gap: 0.5rem;
    }
    
    .admin-tab {
        padding: 0.5rem 1rem;
        font-size: var(--small-font-size);
    }
}

/* Admin Form Styles */
.admin-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form-label {
    font-size: var(--normal-font-size);
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.admin-form-help {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    margin-top: 0.25rem;
}

.admin-form-input,
.admin-form-textarea,
.admin-form-select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(var(--text-color-rgb), 0.15);
    border-radius: 0.5rem;
    background-color: var(--body-color);
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: all 0.3s;
    width: 100%;
}

.admin-form-input:focus,
.admin-form-textarea:focus,
.admin-form-select:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(var(--first-color-rgb), 0.1);
    outline: none;
}

.admin-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.admin-form-select {
    cursor: pointer;
}

.admin-form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    transition: all 0.3s;
    cursor: pointer;
}

.admin-button--primary {
    background-color: var(--first-color);
    color: #fff;
    border: none;
}

.admin-button--primary:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--first-color-rgb), 0.3);
}

.admin-button--secondary {
    background-color: transparent;
    color: var(--title-color);
    border: 1px solid rgba(var(--text-color-rgb), 0.2);
}

.admin-button--secondary:hover {
    border-color: var(--first-color);
    color: var(--first-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.admin-button--danger {
    background-color: #f44336;
    color: #fff;
    border: none;
}

.admin-button--danger:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.admin-button i {
    font-size: 1.25rem;
}

/* Admin Image Upload Styles */
.admin-image-upload {
    border: 2px dashed rgba(var(--text-color-rgb), 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: rgba(var(--text-color-rgb), 0.02);
    position: relative;
    overflow: hidden;
}

.admin-image-upload:hover {
    border-color: var(--first-color);
    background-color: rgba(var(--first-color-rgb), 0.03);
}

.admin-image-upload.dragging {
    border-color: var(--first-color);
    background-color: rgba(var(--first-color-rgb), 0.05);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(var(--first-color-rgb), 0.1);
}

.admin-image-upload__icon {
    font-size: 2.5rem;
    color: rgba(var(--text-color-rgb), 0.3);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.admin-image-upload:hover .admin-image-upload__icon {
    color: var(--first-color);
}

.admin-image-upload__text {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.admin-image-upload__help {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

.admin-image-upload__preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    display: none;
    margin-bottom: 1rem;
}

.admin-image-upload.has-image .admin-image-upload__preview {
    display: block;
}

.admin-image-upload.has-image .admin-image-upload__icon,
.admin-image-upload.has-image .admin-image-upload__text {
    display: none;
}

/* Editor Styles */
.pell {
    border: 1px solid rgba(var(--text-color-rgb), 0.15);
    border-radius: 0.5rem;
    box-shadow: none;
    height: auto;
    min-height: 300px;
}

.pell-content {
    min-height: 250px;
    padding: 0.75rem 1rem;
}

.pell-actionbar {
    background-color: rgba(var(--text-color-rgb), 0.05);
    padding: 0.5rem;
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.1);
    border-radius: 0.5rem 0.5rem 0 0;
}

.pell-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 32px;
    width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    color: var(--title-color);
    transition: all 0.3s;
}

.pell-button:hover {
    background-color: rgba(var(--first-color-rgb), 0.1);
    color: var(--first-color);
}

.pell-button.pell-button-selected {
    background-color: rgba(var(--first-color-rgb), 0.15);
    color: var(--first-color);
}

/* Dark Theme Adjustments */
.dark-theme .admin-form-input,
.dark-theme .admin-form-textarea,
.dark-theme .admin-form-select {
    background-color: var(--container-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .admin-image-upload {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .admin-image-upload:hover {
    background-color: rgba(var(--first-color-rgb), 0.05);
}

.dark-theme .pell {
    background-color: var(--container-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .pell-actionbar {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .pell-button {
    color: var(--title-color);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .admin-form {
        gap: 1rem;
    }
    
    .admin-form-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .admin-button {
        width: 100%;
    }
    
    .admin-image-upload {
        padding: 1.5rem;
    }
}

/* Admin Empty State Styles */
.admin-empty-state {
    background-color: var(--container-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px dashed rgba(var(--text-color-rgb), 0.15);
    margin: 1rem 0;
}

.admin-empty-state p {
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.dark-theme .admin-empty-state {
    border-color: rgba(255, 255, 255, 0.1);
}

/* İletişim Sayfası Stilleri */
.contact__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact__description {
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.contact__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact__card {
    background-color: var(--container-color);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.contact__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(var(--first-color-rgb), 0.15);
}

.contact__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(var(--first-color-rgb), 0.1);
    color: var(--first-color);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.4s;
}

.contact__card:hover .contact__card-icon {
    background-color: var(--first-color);
    color: #fff;
}

.contact__card-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.contact__card-data {
    color: var(--text-color);
    line-height: 1.6;
}

.contact__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--container-color);
    color: var(--title-color);
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.4s;
}

.contact__social-link:hover {
    background-color: var(--first-color);
    color: #fff;
    transform: translateY(-5px);
}

.contact__form-container {
    background-color: var(--container-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact__form {
    display: grid;
    gap: 1.5rem;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__label {
    font-size: var(--normal-font-size);
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.contact__label .required {
    color: #f44336;
}

.contact__input {
    width: 100%;
    background-color: var(--body-color);
    border: 1px solid rgba(var(--text-color-rgb), 0.15);
    outline: none;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    font-family: var(--body-font);
    transition: all 0.3s;
}

.contact__input:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(var(--first-color-rgb), 0.1);
}

.contact__textarea {
    resize: vertical;
    min-height: 150px;
}

.contact__button {
    justify-self: start;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--first-color);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.contact__button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(var(--first-color-rgb), 0.3);
}

.contact__message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.contact__message--success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #388e3c;
}

.contact__message--error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #d32f2f;
}

.map__container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.map__iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__info {
        text-align: center;
    }
    
    .contact__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .contact__content {
        grid-template-columns: 1fr;
    }
    
    .contact__card {
        padding: 1.25rem;
    }
    
    .contact__form-container {
        padding: 1.5rem;
    }
    
    .contact__button {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Theme Adjustments */
.dark-theme .contact__card {
    background-color: var(--container-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dark-theme .contact__card-icon {
    background-color: rgba(var(--first-color-rgb), 0.2);
}

.dark-theme .contact__form-container {
    background-color: var(--container-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.dark-theme .contact__input {
    background-color: var(--body-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .contact__input:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(var(--first-color-rgb), 0.2);
}

.dark-theme .contact__social-link {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Modern Lokasyon Bölümü Stilleri */
.location {
    padding: 6rem 0;
    position: relative;
    background-color: var(--body-color);
    overflow: hidden;
}

.location::before,
.location::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(var(--first-color-rgb), 0.05);
    z-index: 0;
}

.location::before {
    top: -100px;
    left: -100px;
}

.location::after {
    bottom: -100px;
    right: -100px;
}

.location__description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    line-height: 1.7;
}

.location__wrapper {
    position: relative;
    z-index: 2;
}

.location__content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    background-color: var(--container-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.location__info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location__subtitle {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.location__subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--first-color);
    border-radius: 3px;
}

.location__data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location__data-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location__icon {
    color: var(--first-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.location__data-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.location__directions {
    padding-top: 1rem;
    border-top: 1px dashed rgba(var(--text-color-rgb), 0.15);
}

.location__directions-title {
    font-size: 1.1rem;
    color: var(--title-color);
    margin-bottom: 1rem;
}

.location__directions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location__directions-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.location__directions-list li i {
    color: var(--first-color);
    font-size: 1.1rem;
}

.location__map-container {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.location__map {
    height: 100%;
    width: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.5s ease;
}

.location__map:hover {
    filter: grayscale(0%) contrast(1);
}

.location__marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.location__marker-pin {
    width: 20px;
    height: 20px;
    background-color: var(--first-color);
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.location__marker-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.location__marker-pulse {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--first-color-rgb), 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .location__content {
        grid-template-columns: 1fr;
    }
    
    .location__info {
        order: 2;
    }
    
    .location__map-container {
        order: 1;
        border-radius: 1.5rem 1.5rem 0 0;
    }
}

@media screen and (max-width: 576px) {
    .location {
        padding: 4rem 0;
    }
    
    .location__info {
        padding: 1.5rem;
    }
}

/* Dark Theme Adjustments */
.dark-theme .location {
    background-color: var(--body-color);
}

.dark-theme .location::before,
.dark-theme .location::after {
    background-color: rgba(255, 255, 255, 0.03);
}

.dark-theme .location__content {
    background-color: var(--container-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-theme .location__directions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .location__map {
    filter: grayscale(30%) contrast(0.9) brightness(0.8);
}

.dark-theme .location__map:hover {
    filter: grayscale(10%) contrast(1) brightness(0.9);
}

/* Breadcrumb Area için Düzeltmeler */
.breadcrumb-area {
    margin-top: 0; /* Header yüksekliğini body padding-top ile hallettik */
    position: relative;
    z-index: 100;
    background-color: var(--body-color);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.05);
}

.breadcrumb__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breadcrumb__title {
    font-size: var(--h3-font-size);
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__link {
    color: var(--text-color);
    font-size: var(--small-font-size);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb__link:hover {
    color: var(--first-color);
}

.breadcrumb__divider {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--first-color-lighter);
    border-radius: 50%;
    margin: 0 0.75rem;
}

.breadcrumb__active {
    color: var(--first-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

/* Dark theme adjustments */
.dark-theme .breadcrumb-area {
    background-color: var(--body-color);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .breadcrumb-area {
        margin-top: 5rem;
        padding: 0.75rem 0;
    }
    
    .breadcrumb__title {
        font-size: var(--h3-font-size);
    }
}

/* Header Düzeltmeleri */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--body-color);
    transition: .4s;
}

body {
    padding-top: 4.5rem;
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: var(--body-color);
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: rgba(var(--first-color-rgb), 0.04);
    z-index: 0;
}

.about-hero::before {
    top: -150px;
    right: -150px;
}

.about-hero::after {
    bottom: -150px;
    left: -150px;
}

.about-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-hero__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--first-color);
    border-radius: 4px;
}

.about-hero__description {
    color: var(--text-color);
    line-height: 1.8;
}

.about-hero__description p {
    margin-bottom: 1rem;
}

.about-hero__description p:last-child {
    margin-bottom: 0;
}

.about-hero__image-wrapper {
    position: relative;
    padding: 1rem;
    z-index: 1;
    background-color: var(--first-color-lighter);
    border-radius: 1rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero__image-wrapper::before {
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    font-weight: var(--font-bold);
    position: absolute;
}

.about-hero__image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-hero__image-wrapper:hover .about-hero__image {
    transform: translateY(-10px);
}

.about-hero__image-accent {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 3px solid var(--first-color);
    border-radius: 1rem;
    z-index: -1;
    transition: transform 0.3s;
}

.about-hero__image-wrapper:hover .about-hero__image-accent {
    transform: translate(10px, 10px);
}

/* Misyon Vizyon Bölümü */
.mission-vision {
    padding: 6rem 0;
    background-color: var(--container-color);
}

.mission-vision__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-vision__card {
    padding: 3rem;
    background-color: var(--body-color);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-vision__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-vision__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(var(--first-color-rgb), 0.1);
    color: var(--first-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-vision__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    margin-bottom: 1rem;
}

.mission-vision__text {
    color: var(--text-color);
    line-height: 1.7;
}

/* İstatistikler Bölümü */
.about-stats {
    padding: 6rem 0;
    background-color: var(--body-color);
    position: relative;
    overflow: hidden;
}

.about-stats__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stats__item {
    text-align: center;
    padding: 2rem;
    background-color: var(--container-color);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.about-stats__item:hover {
    transform: translateY(-10px);
}

.about-stats__number {
    display: block;
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: var(--first-color);
    margin-bottom: 0.5rem;
}

.about-stats__label {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Takım Bölümü */
.team {
    padding: 6rem 0;
    background-color: var(--container-color);
}

.team__description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.team__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team__member {
    background-color: var(--body-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team__member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team__image-wrapper {
    overflow: hidden;
    height: 250px;
    background-color: var(--first-color-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: var(--font-medium);
}

.team__image-wrapper::before {
    content: attr(data-name);
}

.team__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team__member:hover .team__image {
    transform: scale(1.1);
}

.team__info {
    padding: 1.5rem;
    text-align: center;
}

.team__name {
    font-size: var(--h3-font-size);
    color: var(--title-color);
    margin-bottom: 0.25rem;
}

.team__position {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.team__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team__social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(var(--first-color-rgb), 0.1);
    color: var(--first-color);
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
}

.team__social-link:hover {
    background-color: var(--first-color);
    color: #fff;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .about-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats__container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mission-vision__container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .about-stats__container {
        grid-template-columns: 1fr;
    }
    
    .team__container {
        grid-template-columns: 1fr;
    }
    
    .about-hero__title {
        font-size: var(--h2-font-size);
    }
}

/* Dark Theme Adjustments */
.dark-theme .about-hero,
.dark-theme .about-stats {
    background-color: var(--body-color);
}

.dark-theme .mission-vision {
    background-color: var(--container-color);
}

.dark-theme .mission-vision__card,
.dark-theme .team__member {
    background-color: var(--body-color);
}

.dark-theme .about-stats__item {
    background-color: var(--container-color);
}

.dark-theme .team {
    background-color: var(--container-color);
}

/* Admin Hızlı İşlemler */
.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.admin-message--success {
    background-color: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.admin-message--error {
    background-color: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* Dil Seçimi Dropdown Stilleri */
.nav__language {
    position: relative;
    margin-right: 1rem;
}

.nav__language-current {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--title-color);
    font-size: var(--small-font-size);
    transition: all 0.3s;
}

.nav__language-current i {
    font-size: 1.25rem;
    margin-left: 0.25rem;
}

.nav__language-dropdown {
    position: absolute;
    top: 125%;
    right: 0;
    width: 150px;
    background-color: var(--container-color);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    transform: translateY(10px);
}

.nav__language.show-dropdown .nav__language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__language-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.nav__language-item:hover {
    background-color: rgba(var(--first-color-rgb), 0.1);
}

.nav__language-flag {
    width: 20px;
    height: 15px;
    margin-right: 0.5rem;
    object-fit: cover;
    border-radius: 2px;
}

.nav__language-name {
    font-size: var(--smaller-font-size);
    color: var(--text-color);
}

/* Dark Theme Adjustments */
.dark-theme .nav__language-dropdown {
    background-color: var(--container-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-theme .nav__language-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .nav__language {
        margin-right: 0.5rem;
    }
}

/* GTranslate styles */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

#gtranslate_element {
    display: inline-block;
    position: relative;
    z-index: 99;
}

/* Fix the body position after Google Translate is loaded */
body {
    top: 0 !important;
}

/* Hide the original Google bar */
.goog-te-gadget-simple {
    display: none !important;
}

/* Fixed language dropdown styles - new */
.nav__language {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 1rem;
    z-index: 101;
}

.nav__language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.nav__language-current:hover {
    background-color: rgba(var(--first-color-rgb), 0.1);
}

.nav__language-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 150px;
    background-color: var(--body-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    max-height: 350px;
    overflow-y: auto;
}

#language-dropdown.show-dropdown .nav__language-dropdown,
.nav__language.show-dropdown .nav__language-dropdown,
.show-dropdown .nav__language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__language-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav__language-item:hover {
    background-color: rgba(var(--first-color-rgb), 0.05);
}

.nav__language-flag {
    width: 1.25rem;
    height: auto;
    margin-right: 0.75rem;
    object-fit: cover;
}

.nav__language-name {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--title-color);
}

/* Dark theme adjustments for language dropdown */
.dark-theme .nav__language-current:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .nav__language-dropdown {
    background-color: var(--container-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.dark-theme .nav__language-name {
    color: var(--text-color-light);
}

.dark-theme .nav__language-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media screen and (max-width: 768px) {
    .nav__language {
        margin-right: 0.5rem;
    }
    
    .nav__language-dropdown {
        right: -20px;
    }
}

/* Fix Google Translate positioning and display issues */
body {
    top: 0 !important;
    position: relative !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

.goog-te-gadget {
    height: 0;
    overflow: hidden;
}

.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

.goog-te-menu-frame {
    max-width: 100% !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
}

.goog-te-menu2 {
    max-width: 100% !important;
    overflow: auto !important;
    border-radius: 8px !important;
    border: none !important;
}

/* Custom translation selector styles that we already have */
.nav__language {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 1rem;
    z-index: 101;
}

.nav__language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.nav__language-current:hover {
    background-color: rgba(var(--first-color-rgb), 0.1);
}

.nav__language-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 150px;
    background-color: var(--body-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    max-height: 350px;
    overflow-y: auto;
}

#language-dropdown.show-dropdown .nav__language-dropdown,
.nav__language.show-dropdown .nav__language-dropdown,
.show-dropdown .nav__language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Language dropdown styles - unified */
.nav__language {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: 1rem;
    z-index: 999;
}

.nav__language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
    cursor: pointer;
}

.nav__language-current:hover {
    background-color: rgba(var(--first-color-rgb), 0.1);
}

.nav__language-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 150px;
    background-color: var(--body-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 350px;
    overflow-y: auto;
}

.nav__language-dropdown.show-dropdown,
#language-dropdown.show-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__language-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav__language-item:hover {
    background-color: rgba(var(--first-color-rgb), 0.05);
}

.nav__language-flag {
    width: 1.25rem;
    height: auto;
    margin-right: 0.75rem;
    object-fit: cover;
}

.nav__language-name {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--title-color);
}

/* Dark theme adjustments for language dropdown */
.dark-theme .nav__language-current:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .nav__language-dropdown {
    background-color: var(--container-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.dark-theme .nav__language-name {
    color: var(--text-color-light);
}

.dark-theme .nav__language-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media screen and (max-width: 768px) {
    .nav__language {
        margin-right: 0.5rem;
    }
    
    .nav__language-dropdown {
        right: -20px;
    }
}

/* Fix language dropdown display issues */
.nav__language {
    position: relative;
    margin-right: 1rem;
    cursor: pointer;
}

.nav__language-current {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s;
}

.nav__language-current:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav__language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 180px;
    background-color: var(--container-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

/* Show the dropdown when the show-dropdown class is added */
.nav__language-dropdown.show-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__language-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav__language-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav__language-flag {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav__language-name {
    font-size: 0.875rem;
    color: var(--title-color);
}

/* Dark theme adjustments */
.dark-theme .nav__language-current:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .nav__language-dropdown {
    background-color: var(--container-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-theme .nav__language-name {
    color: var(--title-color);
}

.dark-theme .nav__language-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media screen and (max-width: 768px) {
    .nav__language {
        margin-right: 0.5rem;
    }
    
    .nav__language-dropdown {
        right: -1rem;
    }
}

/* Hide Google translate element properly */
.goog-te-banner-frame, 
.skiptranslate {
    display: none !important;
}

/* Fix body position after translation */
body {
    top: 0 !important;
}

/* Make language dropdown class work properly */
#language-dropdown.show-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Override any existing conflicting styles */
.nav__language-dropdown.show-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hide Google Translate elements completely */
.goog-te-banner-frame, 
.skiptranslate,
.goog-te-gadget,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-gadget-icon,
img.goog-te-gadget-icon,
.goog-te-menu-value span {
    display: none !important;
}

/* Fix body positioning that Google Translate might break */
body {
    top: 0 !important;
    position: inherit !important;
}

/* Logo styling */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo-img {
    width: 180px;
    height: auto;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s;
}

.nav__logo:hover .nav__logo-img {
    transform: translateY(-3px);
}

.nav__logo-text {
    display: none; /* Hide the text since the logo already includes text */
    font-weight: var(--font-semi-bold);
    font-size: var(--h3-font-size);
    color: var(--title-color);
}

/* Dark theme logo switch */
.dark-theme .nav__logo-img {
    filter: brightness(0) invert(1); /* Make the logo white in dark mode */
}

@media screen and (max-width: 768px) {
    .nav__logo-img {
        width: 120px;
        max-height: 36px;
    }
}

/* Admin Dashboard Link Styles */
.admin-dashboard-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--first-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
}

.admin-dashboard-link:hover {
    background-color: var(--first-color-alt);
}

.nav__icon-text {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

.admin-link {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

/* Modern Services Section Styles */
.all-services-section {
    position: relative;
    padding: 4rem 0;
    background: var(--body-color);
}

.all-services-section .section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.all-services-section .section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.all-services-section .section__subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.products__container {
    padding: 1rem 0;
}

.products__card {
    background: var(--container-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.products__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.products__img-link {
    display: block;
    margin-bottom: 1.5rem;
    border-radius: 0.8rem;
    overflow: hidden;
    position: relative;
}

.products__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products__card:hover .products__img {
    transform: scale(1.1);
}

.products__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.products__title-link {
    color: var(--title-color);
    transition: color 0.3s ease;
}

.products__title-link:hover {
    color: var(--first-color);
}

.products__description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Swiper Navigation Styles */
.products-swiper {
    padding: 2rem 0;
}

.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
    background: var(--container-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.products-swiper .swiper-button-next:after,
.products-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    color: var(--title-color);
}

.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-prev:hover {
    background: var(--first-color);
}

.products-swiper .swiper-button-next:hover:after,
.products-swiper .swiper-button-prev:hover:after {
    color: #fff;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .all-services-section .section__title {
        font-size: 2rem;
    }
    
    .products__card {
        padding: 1rem;
    }
    
    .products__img {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .all-services-section .section__title {
        font-size: 1.75rem;
    }
    
    .products__img {
        height: 160px;
    }
}

/* Modern Services Grid & Card Styles (Yudiz Codepen uyarlaması - 3 Sütunlu Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Sabit 3 sütun */
    gap: 2.5rem; /* Kartlar arası boşluk */
    margin-top: 3rem;
    z-index: 1;
    position: relative;
    padding: 0 1rem; /* Yatay padding */
}

/* Her bir hizmet kartı */
.service-card {
    background: var(--container-color); /* Tema değişkeni kullan */
    /* border-radius: 1.5rem; */ /* Yuvarlak köşeler */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Daha belirgin gölge */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    will-change: transform, box-shadow; /* Performans optimizasyonu */
}

/* Kart üzerine gelince */
.service-card:hover {
    transform: translateY(-15px) scale(1.04); /* Daha yukarı kalkma ve büyüme */
    box-shadow: 0 20px 45px rgba(0,0,0,0.2); /* Daha belirgin gölge */
}

/* Resim etrafındaki wrapper */
.service-card__img-wrapper {
    width: 100%;
    height: 200px; /* Resim yüksekliği */
    overflow: hidden;
    background: var(--body-color); /* Tema değişkeni kullan */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kart içindeki resim */
.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya sığdır */
    transition: transform 0.6s cubic-bezier(.21,1.02,.73,1.01), filter 0.4s; /* Animasyon */
    filter: grayscale(30%); /* Hafif grayscale */
}

/* Resim üzerine gelince */
.service-card:hover .service-card__img {
    transform: scale(1.15) rotate(-3deg); /* Daha belirgin efekt */
    filter: grayscale(0%); /* Grayscale kaldır */
}

/* Kart içerik alanı (başlık, açıklama, buton) */
.service-card__content {
    padding: 2rem 1.5rem; /* İç boşluk */
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Açıklamanın yüksekliği doldurması için */
    text-align: center; /* İçeriği ortala */
}

/* Kart başlığı */
.service-card__title {
    font-size: 1.4rem; /* Daha büyük başlık */
    font-weight: 700;
    color: var(--title-color); /* Tema değişkeni kullan */
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

/* Kart açıklaması */
.service-card__desc {
    color: var(--text-color); /* Tema değişkeni kullan */
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Sınırı 4 satıra ayarla */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Detaylar butonu */
.service-card__btn {
    display: inline-block; /* Kendi satırında ve ortalanabilir olsun */
    align-self: center; /* Ortala */
    background: var(--first-color); /* Tema değişkeni kullan */
    color: var(--body-color); /* Tema değişkeni kullan */
    padding: 0.8rem 2rem; /* Buton boyutu */
    border-radius: 2.5rem; /* Daha yuvarlak buton */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(var(--first-color-rgb),0.3); /* Gölge */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Animasyon */
}

.service-card__btn:hover {
    background: var(--title-color); /* Hover rengi */
    color: var(--body-color); /* Hover yazı rengi */
    transform: translateY(-3px); /* Hafif yukarı kalkma */
    box-shadow: 0 6px 20px rgba(var(--title-color-rgb),0.4); /* Yeni gölge */
}

/* Responsive Ayarlamalar */

/* Tablet ve daha küçük ekranlar (max 992px) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 2rem;
        padding: 0 1rem;
    }
    .service-card__img-wrapper {
        height: 180px; /* Tablette resim yüksekliği */
    }
    .service-card__content {
        padding: 1.5rem 1rem;
    }
    .service-card__title {
        font-size: 1.3rem;
    }
    .service-card__desc {
        font-size: 0.95rem;
        -webkit-line-clamp: 5; /* Tablette 5 satır */
    }
    .service-card__btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Küçük mobil ekranlar (max 576px) */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 sütun */
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    .service-card__img-wrapper {
        height: 160px; /* Mobilde resim yüksekliği */
    }
     .service-card__content {
        padding: 1.2rem 0.8rem;
    }
    .service-card__title {
        font-size: 1.2rem;
    }
    .service-card__desc {
        font-size: 0.9rem;
         -webkit-line-clamp: 6; /* Mobilde 6 satır */
    }
    .service-card__btn {
         padding: 0.6rem 1.2rem;
         font-size: 0.9rem;
    }
}

/* Dark Theme Ayarlamaları */
.dark-theme .service-card {
    background: var(--container-color-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.dark-theme .service-card:hover {
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.dark-theme .service-card__img-wrapper {
    background: var(--body-color-dark);
}

.dark-theme .service-card__img {
     filter: grayscale(40%);
}

.dark-theme .service-card:hover .service-card__img {
    filter: grayscale(0%);
}

.dark-theme .service-card__title {
    color: var(--title-color-dark);
}

.dark-theme .service-card__desc {
    color: var(--text-color-dark);
}

.dark-theme .service-card__btn {
    background: var(--first-color-alt);
    color: var(--title-color-dark);
     box-shadow: 0 4px 15px rgba(var(--first-color-rgb),0.4);
}

.dark-theme .service-card__btn:hover {
    background: var(--first-color);
    color: var(--body-color-dark);
     box-shadow: 0 6px 20px rgba(var(--first-color-rgb),0.5);
}

/* Swiper'a ait eski stil kalıntılarını temizle (eğer kaldıysa) */
/* Örneğin: */
.products__container .swiper-wrapper {
    display: grid !important; /* Grid yapısını zorla */
    padding: 0 !important;
    box-sizing: border-box;
}

.products__card.swiper-slide {
    width: auto !important; /* Genişliği otomatik yap */
    margin: 0 !important; /* Marginleri sıfırla */
}

/* Eğer .all-services-section içinde .products__container varsa, onu da sıfırla */
.all-services-section .products__container {
    padding: 0 !important;
}