/* ==========================================================================
   #BASE STYLES
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Set default box sizing to border-box.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  box-sizing: border-box; /* 3 */
}

*,
*::before,
*::after {
  box-sizing: inherit; /* 3 */
}

/**
 * Remove default margin and padding.
 */

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/**
 * Remove default list styles.
 */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * Remove default anchor styles.
 */

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Remove default button styles.
 */

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/**
 * Images and embedded iframes should be responsive by default.
 */

img,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/**
 * Tables should have collapsed borders by default.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Form elements should inherit font styles.
 */

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* ==========================================================================
   #TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a252f;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* ==========================================================================
   #UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: #2c3e50;
  color: #fff;
}

.btn--primary:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: #e74c3c;
  color: #fff;
}

.btn--secondary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* ==========================================================================
   #HEADER
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo__img {
  height: 50px;
  width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-menu-btn__line {
  height: 3px;
  width: 100%;
  background-color: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .mobile-menu-btn__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .mobile-menu-btn__line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .mobile-menu-btn__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Main Navigation */
.main-nav__list {
  display: flex;
}

.main-nav__item {
  margin-left: 30px;
}

.main-nav__link {
  position: relative;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e74c3c;
  transition: width 0.3s ease;
}

.main-nav__link:hover,
.main-nav__link.active {
  color: #e74c3c;
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
  width: 100%;
}

/* Language Selector */
.language-selector {
  position: relative;
  margin-left: 30px;
}

.language-selector__btn {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2c3e50;
  padding: 8px 12px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector__btn:hover {
    background: #e9ecef;
}

.language-selector__btn i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.language-selector__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.language-selector__option.active {
    background: #e74c3c;
    color: white;
}

.language-selector:hover .language-selector__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-selector__option {
  display: block;
  padding: 8px 15px;
  transition: background-color 0.3s ease;
}

.language-selector__option:hover {
  background-color: #f8f9fa;
}

/* Sticky Header */
.header.sticky {
  height: 70px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header.sticky .header__inner {
  height: 70px;
}

.header.sticky .logo__img {
  height: 40px;
}

/* ==========================================================================
   #HERO SECTION
   ========================================================================== */

.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/media/dad.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: #fff;
}

.hero__title {
color: #eee;}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ==========================================================================
   #SECTION STYLES
   ========================================================================== */

.section {
  padding: 100px 0;
}

.section__header {
  margin-bottom: 60px;
  text-align: center;
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: black;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e74c3c;
}

.section__subtitle {
  font-size: 1.1rem;
  color: #666;
}

/* ==========================================================================
   #ABOUT SECTION
   ========================================================================== */

.about__content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about__text {
  flex: 1;
}

.about__image {
  flex: 1;
}

.about__img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.about__features {
  margin-top: 30px;
}

.about__features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about__features i {
  color: #e74c3c;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* ==========================================================================
   #SERVICES SECTION
   ========================================================================== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card__icon {
  width: 70px;
  height: 70px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #e74c3c;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background-color: #e74c3c;
  color: #fff;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card__text {
  color: #666;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  color: #e74c3c;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card__link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.service-card__link:hover {
  color: #c0392b;
}

/* ==========================================================================
   #TEAM SECTION
   ========================================================================== */

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.team-card:hover {
  transform: translateY(-10px);
}

.team-card__image {
  position: relative;
  overflow: hidden;
}

.team-card__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-card__social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(231, 76, 60, 0.8);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-card:hover .team-card__social {
  transform: translateY(0);
}

.team-card__social a {
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.team-card__social a:hover {
  transform: translateY(-5px);
}

.team-card__info {
  padding: 25px;
  text-align: center;
}

.team-card__name {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-card__position {
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-card__bio {
  color: #666;
}

/* ==========================================================================
   #TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-slider {
    position: relative;
    margin: 0 auto 60px;
    max-width: 800px;
}

.testimonial-slide {
    padding: 0 15px;
    outline: none;
    display: none; /* Slick.js bunu yönetecek */
}

/* Slick initial olana kadar ilk slide gözüksün */
.testimonials-slider:not(.slick-initialized) .testimonial-slide:first-child {
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

.testimonials-slider.slick-initialized .testimonial-slide {
    display: block !important;
}

.testimonial__content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Slick Dots Stilleri - GÜNCELLENMİŞ */
.slick-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto !important;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: auto;
    height: auto;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #bdc3c7;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 0;
    display: block;
}

.slick-dots li.slick-active button {
    background: #2c3e50;
    transform: scale(1.2);
}

.slick-dots li button:hover {
    background: #95a5a6;
}

/* Slider container için önemli stiller */
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

/* Slick initial olunca tüm slide'ları gizle */
.testimonials-slider.slick-initialized .testimonial-slide:not(.slick-active) {
    display: none;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .testimonial__content {
        padding: 30px 20px;
    }
    
    .slick-dots {
        bottom: -30px;
    }
}


/* ==========================================================================
   #BLOG SECTION
   ========================================================================== */

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card__image {
  position: relative;
}

.blog-card__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card__date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e74c3c;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.blog-card__day {
  font-size: 1.5rem;
  font-weight: 700;
}

.blog-card__month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.blog-card__content {
  padding: 25px;
}

.blog-card__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-card__excerpt {
  color: #666;
  margin-bottom: 20px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  color: #e74c3c;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card__link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.blog-card__link:hover {
  color: #c0392b;
}

.blog__more {
  text-align: center;
  margin-top: 50px;
}

/* Blog List Styles */
.blog-list {
    padding: 4rem 0;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.blog-card__excerpt {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-card__link {
    color: #3498db;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

/* Blog Detail Styles */
.blog-detail {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.3;
}

.blog-detail__meta {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.blog-detail__image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.blog-detail__content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.blog-detail__content p {
    margin-bottom: 1.5rem;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 5px;
}

.pagination__link {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination__link:hover {
    background: #3498db;
    color: white;
}

.pagination__link.active {
    background: #3498db;
    color: white;
    font-weight: bold;
}


/* ==========================================================================
   #CONTACT SECTION
   ========================================================================== */

.contact__content {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}

.contact__info {
  flex: 1;
}

.contact__form {
  flex: 1;
}

.contact-info__item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info__icon {
  width: 60px;
  height: 60px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #e74c3c;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info__title {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-info__description {
  color: #666;
  margin: 0;
}

.form__group {
  position: relative;
  margin-bottom: 25px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: #e74c3c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.form__label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating label stilleri */
.floating-label {
  position: absolute;
  top: -0.5rem;
  left: 0.8rem;
  padding: 0 0.3rem;
  background-color: white;
  font-size: 0.8rem;
  color: #555;
  transition: all 0.2s;
  pointer-events: none;
}

/* Seçim yapıldığında label'ın kaybolması */
.form__select:not(:placeholder-shown) + .floating-label,
.form__select:focus + .floating-label {
  opacity: 0;
  transform: translateY(10px);
}

* Placeholder seçeneğini tamamen gizle */
.form__select option[disabled][hidden] {
  display: none;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label,
.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background-color: #fff;
  padding: 0 5px;
  color: #e74c3c;
}

.form__submit {
  width: 100%;
}

.contact__map {
  height: 450px;
  background-color: #f8f9fa;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */

.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 80px 0 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer__logo-img {
  height: 50px;
  margin-bottom: 20px;
}

.footer__about-text {
  color: #bbb;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: #e74c3c;
  transform: translateY(-5px);
}

.footer__title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e74c3c;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: #bbb;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: #e74c3c;
  padding-left: 5px;
}

.footer__newsletter-text {
  color: #bbb;
  margin-bottom: 20px;
}

.footer__form {
  display: flex;
}

.footer__input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.footer__submit {
  width: 50px;
  background-color: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer__submit:hover {
  background-color: #c0392b;
}

.footer__bottom {
  background-color: #1a252f;
  padding: 20px 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  color: #bbb;
  font-size: 0.9rem;
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  color: #bbb;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: #e74c3c;
}

/* ==========================================================================
   #BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e74c3c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #c0392b;
  transform: translateY(-5px);
}

/* ==========================================================================
   #RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  .hero__title {
    font-size: 3rem;
  }
  
  .about__content {
    flex-direction: column;
  }
  
  .contact__content {
    flex-direction: column;
  }
  
  .contact__info {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

  .container {
    max-width: 540px;
  }
  
  .header__inner {
    height: 70px;
  }
  
  .logo__img {
    height: 40px;
  }
  
  .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav__list {
        flex-direction: column;
        gap: 0;
    }
  
  .main-nav__item {
    margin: 0;
    width: 100%;
  }
  
  .main-nav__link {
    padding: 15px 0;
    display: block;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: #333;
  }
  
  .language-selector {
    margin-left: 0;
    margin-top: 20px;
  }
  
  .hero {
    min-height: 600px;
    padding-top: 70px;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__text {
    font-size: 1rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .team__grid {
    grid-template-columns: 1fr;
  }
  
  .blog__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .section__title {
    font-size: 1.8rem;
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Additional responsive styles to complement style.css */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .about__content {
        flex-direction: column;
    }
    
    .contact__content {
        flex-direction: column;
    }
    
    .contact__info {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .header__inner {
        height: 70px;
    }
    
    .logo__img {
        height: 40px;
    }

    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav__list {
        flex-direction: column;
    }
    
    .main-nav__item {
        margin: 0 0 20px;
    }
    
    .main-nav__link {
        font-size: 1.1rem;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .hero {
        min-height: 600px;
        padding-top: 70px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__text {
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .container {
        max-width: 100%;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Modal içeriğinin farklı dillerde düzgün görünmesi için */
.modal-content {
  direction: ltr; /* Varsayılan */
}

[lang="ar"] .modal-content,
[lang="he"] .modal-content {
  direction: rtl;
  text-align: right;
}

.modal .close {
  font-size: 24px; /* İkon boyutu */
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  line-height: 1;
}

/* Metin görünürken ikonu gizle */
.modal .close::before {
  content: '×';
}


/* Çeviri aktifken */
[data-translate] .modal .close::before {
  content: '';
}
[data-translate] .modal .close span {
  display: inline;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

/* ==========================================================================
   #PRICES
   ========================================================================== */
    .price-category {
        margin-top: 20px;
        color: #2c3e50;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }
    
    .price-item {
        margin: 15px 0;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 5px;
    }
    
    .price-service {
        font-weight: bold;
        font-size: 1.1em;
        color: #2c3e50;
    }
    
    .price-value {
        color: #e74c3c;
        font-weight: bold;
        margin: 5px 0;
    }
    
    .price-duration {
        font-style: italic;
        color: #7f8c8d;
        margin: 5px 0;
    }
    
    .price-description {
        margin-top: 10px;
        color: #34495e;
    }
    
    .loading-spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        animation: spin 1s linear infinite;
        margin: 20px auto;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .error-message {
        color: #e74c3c;
        padding: 20px;
        text-align: center;
    }
    
    .no-prices {
        color: #7f8c8d;
        padding: 20px;
        text-align: center;
    }

/* Kürtçe (Kurmanci) için özel stiller - LTR (soldan sağa) */
html[lang="ku"] {
    direction: ltr;
    text-align: left;
}

/* Arapça ve Farsça için RTL (sağdan sola) */
html[lang="ar"],
html[lang="fa"] {
    direction: rtl;
    text-align: right;
}

/* Kürtçe dilinde özel font desteği (isteğe bağlı) */
html[lang="ku"] body {
    font-family: 'Montserrat', 'Noto Sans Kurdish', 'Scheherazade New', sans-serif;
}

/* Navigation için dil bazlı hizalama */
html[lang="ku"] .main-nav__list {
    direction: ltr;
    text-align: left;
}

html[lang="ar"] .main-nav__list,
html[lang="fa"] .main-nav__list {
    direction: rtl;
    text-align: right;
}

/* Form elemanları için dil bazlı hizalama */
html[lang="ku"] .form__input,
html[lang="ku"] .form__textarea,
html[lang="ku"] .form__select {
    direction: ltr;
    text-align: left;
}

html[lang="ar"] .form__input,
html[lang="ar"] .form__textarea,
html[lang="ar"] .form__select,
html[lang="fa"] .form__input,
html[lang="fa"] .form__textarea,
html[lang="fa"] .form__select {
    direction: rtl;
    text-align: right;
}

/* Footer için dil bazlı hizalama */
html[lang="ku"] .footer__content {
    direction: ltr;
    text-align: left;
}

html[lang="ar"] .footer__content,
html[lang="fa"] .footer__content {
    direction: rtl;
    text-align: right;
}


/* Dil değiştirici stilleri - GÜNCELLENMİŞ */
.language-switcher {
    position: relative;
    margin-left: 15px;
}

.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.language-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1000;
    margin-top: 5px;
}

.language-dropdown-menu.show {
    display: block;
}

.language-option {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
    text-decoration: none;
    transition: background 0.3s;
    text-align: left;
    font-size: 14px;
}

.language-option:hover, .language-option.active {
    background: #f0f0f0;
    color: #000 !important;
}

/* Mobil dil değiştirici */
.language-switcher-mobile {
    display: none;
    margin-top: 20px;
    padding: 0 20px;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.language-switcher-mobile .language-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
}

.language-switcher-mobile .language-btn.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .language-switcher-desktop {
        display: none;
    }
    
    .language-switcher-mobile {
        display: flex;
    }
    
    /* Mobil menü düzeltmeleri */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav__list {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav__item {
        width: 100%;
        margin: 10px 0;
    }
    
    .main-nav__link {
        color: #333;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        display: block;
    }
    
    /* Mobil açık menüde hamburger ikonunu X yap */
    .mobile-menu-btn.active .mobile-menu-btn__line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .mobile-menu-btn__line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .mobile-menu-btn__line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Mobile Menu için no-scroll class */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Floating labels için */
.form__label.floating {
    top: -10px !important;
    left: 10px !important;
    font-size: 0.8rem !important;
    background-color: #fff !important;
    color: #e74c3c !important;
    padding: 0 5px !important;
}

/* Dil dropdown stilleri */
.language-switcher-desktop {
    position: relative;
    margin-left: 20px;
}

.language-dropdown-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.language-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1000;
    margin-top: 5px;
    animation: fadeIn 0.3s ease;
}

.language-dropdown-menu.show {
    display: block;
}

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

.language-option {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
    text-decoration: none;
    transition: background 0.3s;
    text-align: left;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.language-option:hover, 
.language-option.active {
    background: #f0f0f0;
    color: #000 !important;
}

/* Mobile dil değiştirici */
.language-switcher-mobile {
    display: none;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    padding: 0 20px;
}

.language-switcher-mobile .language-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switcher-mobile .language-btn.active,
.language-switcher-mobile .language-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Mobile menu için özel stiller */
@media (max-width: 768px) {
    .language-switcher-desktop {
        display: none;
    }
    
    .language-switcher-mobile {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav__list {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav__item {
        width: 100%;
        margin: 0;
    }
    
    .main-nav__link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 16px;
    font-weight: 500;
  }
    
}

@media (min-width: 769px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Header sticky olduğunda dil butonu stilleri */
.header.sticky .language-dropdown-toggle {
    background: rgba(44, 62, 80, 0.1);
    border-color: rgba(44, 62, 80, 0.2);
    color: #2c3e50;
}

.header.sticky .language-dropdown-toggle:hover {
    background: rgba(44, 62, 80, 0.2);
}

/* ==========================================================================
   #MOBILE MENU FIXES
   ========================================================================== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav__list {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav__item {
        width: 100%;
        margin: 0;
    }
    
    .main-nav__link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        color: #333;
        font-size: 16px;
        font-weight: 500;
    }
    
    .language-switcher-mobile {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
    }
    
    .language-switcher-mobile .language-btn {
        padding: 10px 15px;
        border: 1px solid #ddd;
        background: #f5f5f5;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .language-switcher-mobile .language-btn.active,
    .language-switcher-mobile .language-btn:hover {
        background: #e74c3c;
        color: white;
        border-color: #e74c3c;
    }
    
}

/* ==========================================================================
   #ACCESSIBILITY IMPROVEMENTS
   ========================================================================== */
.mobile-menu-btn:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.main-nav__link:focus {
    outline:none;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-nav__link {
        border: 2px solid transparent;
    }
    
    .main-nav__link:focus {
        border-color: #e74c3c;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .main-nav {
        transition: none;
    }
}

/* Mobil menü için ek stiller */
@media (max-width: 768px) {
    .header__inner {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        z-index: 1001;
    }
    
    /* Dil değiştiriciyi düzelt */
    .language-switcher-mobile {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
    }
    
    .language-switcher-mobile .language-btn {
        padding: 10px 15px;
        border: 1px solid #ddd;
        background: #f5f5f5;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .language-switcher-mobile .language-btn.active,
    .language-switcher-mobile .language-btn:hover {
        background: #e74c3c;
        color: white;
        border-color: #e74c3c;
    }
    
    /* Masaüstü dil değiştiriciyi gizle */
    .language-switcher {
        display: none;
    }
}

/* Masaüstü görünüm */
@media (min-width: 769px) {
    .language-switcher-mobile {
        display: none;
    }
    
    .language-switcher {
        display: flex;
        gap: 10px;
    }
}

/* Animasyon için */
.main-nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Yükleme optimizasyonu */
.mobile-menu-btn {
    will-change: transform;
}

.mobile-menu-btn__line {
    will-change: transform, opacity;
}