/* 
* OCEAN VIEW HOTEL NORMALİ
* Modern Hotel Website CSS
* Renk Paleti: Koyu Yeşil Teal (#2f5d50), Altın (#d4af37), Gri Tonları, Beyaz
*/

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
  --primary-color: #2f5d50;
  --primary-light: rgba(47, 93, 80, 0.1);
  --primary-lighter: rgba(47, 93, 80, 0.05);
  --primary-dark: #264a40;
  --secondary-color: #2f5d50;
  --secondary-light: rgba(212, 175, 55, 0.1);
  --secondary-lighter: rgba(212, 175, 55, 0.05);
  --secondary-dark: #b8952e;
  --tertiary-color: #f4f1e8; /* Krem tonu */
  --text-color: #333;
  --text-light: #666;
  --background-light: #f8f9fa;
  --white: #fff;
  --black: #000;
  --gray-light: #f4f4f4;
  --gray: #ddd;
  --gray-dark: #aaa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Header yüksekliğine göre ayarlanmış padding */
}

body {
  font-family: "Futura PT";
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}
h1 {
  font-family: "Trajan Pro", "Cinzel", "Cormorant Garamond", serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
}
h2,
h3,
h4,
h5,
h6 {
  font-family: "Trajan Pro", "Cinzel", "Cormorant Garamond", serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--secondary-color);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

section {
  padding: 5rem 0;
  position: relative;
  transition: background-color 0.5s ease;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #08392b;
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgb(255 255 255 / 20%);
}

.btn:hover {
  background-color: #08392b;
  color: #ffffff;
  box-shadow: 0 4px 20px rgb(255 255 255 / 40%);
  transform: translateY(-3px);
}

.btn:before {
  content: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(26, 117, 188, 0.1);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 117, 188, 0.4);
  transform: translateY(-3px);
}

.btn-room {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(26, 117, 188, 0.1);
}

.btn-room:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 117, 188, 0.4);
  transform: translateY(-3px);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.separator {
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 1rem auto;
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  transition: all 0.4s ease;
}

#header.scrolled {
  background-color: #2f5d50;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.logo a {
  display: flex;
  align-items: center;
  transition: var(--transition);
  position: relative;
}

.logo-img {
  max-height: 90px;
  width: auto;
  filter: brightness(1);
  transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
  transform: scale(1.05);
}

.logo h1 {
  font-size: 2rem;
  margin-bottom: 0;
  letter-spacing: 2px;
  font-weight: 700;
}

.logo span {
  color: var(--secondary-color);
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.nav-toggle span:nth-child(1) {
  top: 0px;
}

.nav-toggle span:nth-child(2) {
  top: 10px;
}

.nav-toggle span:nth-child(3) {
  top: 20px;
}

.nav-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
}

.nav-menu li {
  margin: 0 5px;
  position: relative;
}

.nav-menu li:not(:last-child)::after {
  content: "•";
  display: inline-block;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
}

.nav-menu li a {
  color: #e2e2e2;
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  transition: var(--transition);
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-menu li a:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 15px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu li a:hover:before,
.nav-menu li a.active:before {
  width: calc(100% - 30px);
}

.nav-menu li a.active {
  color: white;
}

.nav-menu li a:hover {
  color: white;
}

.reservation-btn {
  margin-left: 20px;
}

.reservation-btn a {
  background-color: var(--secondary-color);
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease !important;
  box-shadow: 0 4px 15px rgb(255 255 255 / 30%);
  border: 2px solid var(--secondary-color);
}

.reservation-btn a:hover {
  background-color: transparent !important;
  color: white !important;
  box-shadow: 0 4px 15px rgb(255 255 255 / 60%);
  transform: translateY(-3px);
}

/* Responsive Menu */
@media only screen and (max-width: 991px) {
  .header-container {
    justify-content: space-between;
    position: relative;
  }
  
  .logo {
    flex: 1;
  }
  
  .nav-toggle {
    display: block !important;
    order: 3 !important;
    margin-left: auto !important;
  }
  
  nav {
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: left 0.4s ease-in-out;
    z-index: 999;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-menu li:not(:last-child)::after {
    display: none;
  }

  .nav-menu li a {
    color: var(--white);
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .nav-menu li a:before {
    left: 0;
    bottom: 8px;
  }

  .nav-menu li a:hover:before,
  .nav-menu li a.active:before {
    width: 40px;
  }

  .reservation-btn {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .reservation-btn a {
    display: block;
    text-align: center;
    border-radius: 5px !important;
  }
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
#hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(
    --tertiary-color
  ); /* Siyah arka plan rengi kaldırıldı */
}

.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slider overlay biraz daha açık ton */
.slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Daha açık overlay */
}

.slide-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 800px;
  z-index: 2;
}

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease forwards;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.slider-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 15px;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
}

.dots {
  display: flex;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--white);
  width: 14px;
  height: 14px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# About Section – Styled
--------------------------------------------------------------*/
.about-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f6f0, #f4f1e8);
}

.about-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 14px 36px;
  border: 2px solid #2f5d50;
  background: transparent;
  color: #2f5d50;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  box-shadow: 0 3px 8px rgba(47, 93, 80, 0.1);
}

.option-btn:hover,
.option-btn.active {
  background: #2f5d50;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(47, 93, 80, 0.2);
}

.about-content {
  position: relative;
}

.about-item {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.about-item.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.about-image {
  flex: 1;
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

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

.about-text h3 {
  color: #2f5d50;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-text p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-item .count {
  font-size: 40px;
  font-weight: 800;
  color: #2f5d50;
    display: inline;  
  margin-right: 2px;  
}

.count {
  display: inline-block;
  vertical-align: middle;
  font-size: 2rem;
  line-height: 1;
}

.stat-item p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-item.active {
    flex-direction: column;
  }

  .about-image {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-text {
    padding-left: 0;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-options {
    flex-direction: column;
    align-items: center;
  }

  .option-btn {
    width: 100%;
    max-width: 300px;
  }

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

  .about-text h3 {
    font-size: 26px;
  }

  .about-text p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Rooms Section
--------------------------------------------------------------*/
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.room-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

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

.room-price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 3px;
  text-align: center;
}

.room-price span {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.room-price p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.room-details {
  padding: 1.5rem;
  background-color: var(--white);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.room-features span {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.room-features i {
  color: var(--primary-color);
  margin-right: 5px;
}

.view-all-btn {
  text-align: center;
  margin-top: 2rem;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  background-color: var(--primary-lighter);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

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

.service-card {
  background-color: var(--white);
  border-radius: 5px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(26, 117, 188, 0.1);
  color: var(--primary-color);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  background-color: var(--secondary-lighter);
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.testimonial-content {
  background-color: var(--white);
  border-radius: 5px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-content:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(26, 117, 188, 0.1);
  font-size: 4rem;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
}

.rating {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background-color: #2f5d50;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  text-align: center;
  padding: 5rem 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.newsletter-form .btn {
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-info {
  flex: 1 1 400px;
  margin-right: 2rem;
}

.contact-form {
  flex: 1 1 500px;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-item i {
  width: 50px;
  height: 50px;
  background-color: rgba(26, 117, 188, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(26, 117, 188, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.map-container {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media only screen and (max-width: 991px) {
  .contact-info {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #222;
  color: #a9a9a9;
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1 1 350px;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #333;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-links,
.footer-services,
.footer-contact {
  flex: 1 1 200px;
  margin-bottom: 2rem;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-services ul li a {
  color: #a9a9a9;
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #a9a9a9;
  margin-left: 1.5rem;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: none;
}

.scroll-to-top a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.scroll-to-top a:hover {
  background-color: var(--secondary-color);
}

.scroll-to-top.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-about,
  .footer-links,
  .footer-services,
  .footer-contact {
    margin-right: 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 1rem;
  }

  .footer-bottom-links a {
    margin: 0 0.75rem;
  }
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
  .slide-content h2 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 991px) {
  section {
    padding: 4rem 0;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .rooms-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form .btn {
    border-radius: 30px;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
}

@media only screen and (max-width: 576px) {
  h2 {
    font-size: 2rem;
  }

  .rooms-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Utilities */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Hakkımızda Sayfası Stilleri
--------------------------------------------------------------*/
/* Hero Section */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80")
      no-repeat center/cover;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  font-size: 1.2rem;
}

/* Intro Section */
.about-intro {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-intro-text {
  flex: 1 1 500px;
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
}

.about-intro-text h2 span {
  color: var(--primary-color);
}

.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.signature {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.signature img {
  height: 60px;
  margin-right: 1rem;
}

.signature h4 {
  margin-bottom: 0.2rem;
}

.signature p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.about-intro-image {
  flex: 1 1 500px;
}

.about-intro-image .image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-intro-image .image-container:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-intro-image .image-container:hover img {
  transform: scale(1.05);
}

/* Timeline Section */
.about-timeline {
  background-color: var(--primary-lighter);
  position: relative;
}

.about-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232f5d50' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M0 .5A.5.5 0 01.5 0h15a.5.5 0 01.5.5v15a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5V.5zm1 1v13h14V1.5H1z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.about-timeline .container {
  position: relative;
  z-index: 2;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  opacity: 0.2;
}

.timeline-item {
  padding: 1rem 3rem;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-date {
  position: absolute;
  top: 12px;
  right: -120px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -120px;
  right: auto;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--white);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.timeline-content p {
  margin-bottom: 0;
}

/* Values Section */
.about-values {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.value-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(26, 117, 188, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(360deg);
  transition: all 0.5s ease;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.about-team {
  background-color: var(--tertiary-color);
  position: relative;
}

.about-team::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm1 15H9v-2h2v2zm0-4H9V4h2v7z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.about-team .container {
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.team-member {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.member-social {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  background-color: rgba(26, 117, 188, 0.8);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.team-member:hover .member-social {
  bottom: 0;
}

.member-social a {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.member-position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Achievements Section */
.about-achievements {
  background-color: var(--secondary-lighter);
  position: relative;
}

.about-achievements::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpath d='M10 0l10 10-10 10L0 10 10 0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.about-achievements .container {
  position: relative;
  z-index: 2;
}

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

.achievement-card {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.achievement-year {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-year {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.achievement-content h3 {
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.achievement-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Mission & Vision Section */
.about-mission-vision {
  padding: 5rem 0;
  background-color: var(--white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 40px;
}

.mission-card,
.vision-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.mission-content,
.vision-content {
  padding: 2rem;
}

.mission-content h2,
.vision-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.mission-content .separator,
.vision-content .separator {
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.mission-content p,
.vision-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* CTA Section - About Page */
.about-cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  text-align: center;
  padding: 5rem 0;
}

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

.about-cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.about-cta-content .btn {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.about-cta-content .btn:hover {
  background-color: transparent;
  color: var(--white);
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .about-hero-content h1 {
    font-size: 3rem;
  }

  .timeline-container::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-dot {
    left: 21px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 21px;
  }

  .timeline-date {
    right: auto;
    left: 70px;
    top: -30px;
  }

  .timeline-item:nth-child(even) .timeline-date {
    left: 70px;
    right: auto;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .about-hero {
    height: 40vh;
  }

  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .about-intro {
    padding: 3rem 0;
  }

  .about-intro-text,
  .about-intro-image {
    flex: 1 1 100%;
  }

  .about-intro-text {
    order: 2;
  }

  .about-intro-image {
    order: 1;
    margin-bottom: 2rem;
  }

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

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 576px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

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

  .achievement-year {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

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

/*--------------------------------------------------------------
# İletişim Sayfası Stilleri
--------------------------------------------------------------*/
/* Hero Section */
.contact-hero {
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #f4f1e8, transparent);
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://akmanormanciftligi.com/images/iletisimslider.webp") no-repeat
      center/cover;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.contact-hero-content p {
  font-size: 1.2rem;
}

/* Contact Info Cards */
.contact-info-section {
  background: linear-gradient(
    135deg,
    var(--tertiary-color) 0%,
    rgba(47, 93, 80, 0.05) 100%
  );
  position: relative;
  padding: 5rem 0;
  border-top: 1px solid rgba(47, 93, 80, 0.05);
  border-bottom: 1px solid rgba(47, 93, 80, 0.05);
}

.contact-info-section::after {
  content: none; /* Deseni kaldırdım */
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 3rem;
}

.contact-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
}

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

.contact-card-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(26, 117, 188, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.contact-card-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-card-content p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-card-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card-link i {
  margin-right: 5px;
}

.contact-card-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Contact Form & Map */
.contact-form-map {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-form-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-container,
.contact-map-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
}

.contact-form-container h2,
.contact-map-container h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-container .separator,
.contact-map-container .separator {
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.contact-form-container p,
.contact-map-container p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-form {
  margin-top: 2rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26, 117, 188, 0.1);
  outline: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.form-footer-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.map-responsive {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.map-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
}

.map-info-item i {
  width: 45px;
  height: 45px;
  background-color: rgba(26, 117, 188, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.map-info-item h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.map-info-item p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Social Media Section */
.contact-social {
  background-color: var(--secondary-lighter);
  position: relative;
}

.contact-social::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.contact-social .container {
  position: relative;
  z-index: 2;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.social-box {
  display: block;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.social-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.social-icon.facebook {
  background-color: #3b5998;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-icon.twitter {
  background-color: #1da1f2;
}

.social-icon.tripadvisor {
  background-color: #00af87;
}

.social-box:hover .social-icon {
  transform: scale(1.1) rotate(10deg);
}

.social-box h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.social-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.follow-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-box:hover .follow-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

/* FAQ Section */
.contact-faq {
  background-color: var(--tertiary-color);
  position: relative;
}

.contact-faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232f5d50' fill-opacity='0.07'%3E%3Cpath d='M5 0h1L0 6V5zm1 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.contact-faq .container {
  position: relative;
  z-index: 2;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  padding-right: 30px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.faq-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
}

.faq-item.active .faq-question {
  background-color: rgba(26, 117, 188, 0.05);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Call to Action - Contact Page */
.contact-cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  text-align: center;
  padding: 5rem 0;
}

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

.contact-cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: transparent;
  color: var(--white);
}

.btn i {
  margin-right: 8px;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
  .contact-form-map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-container {
    order: 2;
  }

  .contact-map-container {
    order: 1;
  }

  .map-info {
    grid-template-columns: 1fr;
  }

  .map-info-item {
    margin-bottom: 1.5rem;
  }

  .map-info-item:last-child {
    margin-bottom: 0;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .social-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .contact-hero {
    height: 40vh;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-footer-text {
    margin-top: 1rem;
  }

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

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

  .cta-buttons .btn {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-form-container,
  .contact-map-container {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

/* Rezervasyon Section - Krem tonu arka plan */
.reservation-section {
  background-color: var(--tertiary-color);
  position: relative;
}

.reservation-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232f5d50' fill-opacity='0.03'%3E%3Cpath d='M0 0h2v2H0V0zm4 4h2v2H4V4zm4 0h2v2H8V4zm4 0h2v2h-2V4zm0-4h2v2h-2V0zM0 8h2v2H0V8zm0 4h2v2H0v-2zm0 4h2v2H0v-2zm4 0h2v2H4v-2zm4 0h2v2H8v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2zm-4-4h2v2h-2v-2zm4 0h2v2h-2v-2zm4-4h2v2h-2V8zm0-4h2v2h-2V4zm0-4h2v2h-2V0zm0 12h2v2h-2v-2z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

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

/* About Timeline Section - Ana rengin açık tonu */
.about-timeline {
  background-color: var(--primary-lighter);
  position: relative;
}

.about-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232f5d50' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M0 .5A.5.5 0 01.5 0h15a.5.5 0 01.5.5v15a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5V.5zm1 1v13h14V1.5H1z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.about-timeline .container {
  position: relative;
  z-index: 2;
}

/* About Team Section - Krem tonu arka plan */
.about-team {
  background-color: var(--tertiary-color);
  position: relative;
}

.about-team::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm1 15H9v-2h2v2zm0-4H9V4h2v7z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.about-team .container {
  position: relative;
  z-index: 2;
}

/* About Achievements Section - İkincil rengin açık tonu */
.about-achievements {
  background-color: var(--secondary-lighter);
  position: relative;
}

.about-achievements::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpath d='M10 0l10 10-10 10L0 10 10 0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.about-achievements .container {
  position: relative;
  z-index: 2;
}

/* Contact FAQ Section - Krem arka plan */
.contact-faq {
  background-color: var(--tertiary-color);
  position: relative;
}

.contact-faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232f5d50' fill-opacity='0.07'%3E%3Cpath d='M5 0h1L0 6V5zm1 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.contact-faq .container {
  position: relative;
  z-index: 2;
}

/* Gallery Section - Sade desenli arka plan */
.gallery-section {
  background-color: var(--white);
  position: relative;
}

.gallery-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f5d50' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

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

/* İçerik elementleri için z-index ayarı - tüm containerlar için */
.container {
  position: relative;
  z-index: 2;
}

/* Hover efektleri için section geçişlerini yumuşatma */
section {
  padding: 5rem 0;
  position: relative;
  transition: background-color 0.5s ease;
}

/* =============================================
   FOTO GALERİ SAYFASI - SABİT POZİSYON STİLLERİ
============================================= */

/* Galeri Konteyneri - Statik Grid Düzeni */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  position: relative;
  will-change: contents;
  transition: height 0.4s ease-in-out;
}

/* Galeri Öğesi - Sabit Pozisyon */
.gallery-item {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 1;
  height: 300px;
  transform: translate3d(0, 0, 0); /* GPU hızlandırma */
  will-change: opacity;
  transition: opacity 0.5s ease-in-out;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.gallery-item.mixitup-hide {
  pointer-events: none;
  display: none;
}

/* Galeri Öğesi Hover Efekti - Sadece Harici Shadow */
.gallery-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* İç Konteyner - Sabit */
.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateZ(0);
}

/* Resim - Sadece Yukarı Kayma Efekti */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.5s ease-in-out;
  display: block;
  will-change: transform;
}

/* Hover Efekti - Sadece Resim Yukarı Kayar */
.gallery-item:hover .gallery-image {
  transform: translateY(-10px);
}

/* Overlay - Sabit, Sadece Opaklık */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 67, 86, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  transform: translateZ(0);
}

/* Overlay İçeriği - Yerinde Söndür/Aç */
.gallery-info {
  text-align: center;
  padding: 20px;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  will-change: transform, opacity;
}

/* Hover Durumunda İçerik */
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

/* MixItUp Özel Stilleri */
.mix {
  display: block;
}

.mix.mixitup-hide {
  display: none;
}

/* Filtreleme Butonları */
.filter-btn {
  background: transparent;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  z-index: 1;
  margin: 0 5px 10px;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.3s ease;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  background-color: #1e4356;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
}

/* Responsive Düzenlemeler */
@media only screen and (max-width: 991px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-item {
    height: 250px;
  }
}

@media only screen and (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .gallery-item {
    height: 200px;
  }
}

@media only screen and (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item {
    height: 180px;
  }
}

/* =============================================
   FOTO GALERİ SAYFASI - SABİT POZİSYON STİLLERİ
============================================= */

/* Hero Section */
.gallery-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.8)),
    url("../images/slider1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 80px;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}

.gallery-hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.gallery-hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gallery-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Ana Galeri Bölümü */
.main-gallery-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

/* Filtreleme Butonları */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.filter-btn {
  background: transparent;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  z-index: 1;
  margin: 0 5px 10px;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.3s ease;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  background-color: #1e4356;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
}

/* ÖNEMLİ: MixItUp Düzeltmesi - Galeri Konteyneri */
.gallery-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 30px !important;
  width: 100% !important;
  position: relative !important;
  transition: none !important;
  margin-bottom: 50px !important;
  overflow: visible !important;
}

/* ÖNEMLİ: MixItUp Düzeltmesi - Galeri Öğeleri */
.gallery-item {
  width: 100% !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  position: static !important; /* Öğelerin pozisyonu static olmalı */
  height: 300px !important;
  transform: none !important; /* Transform özelliği yok */
  transition: opacity 0.4s ease !important; /* Sadece opacity değişimi */
  animation: none !important; /* Animasyon kapalı */
  top: auto !important;
  left: auto !important;
  visibility: visible !important;
}

/* Gizli öğeler */
.gallery-item.mixitup-hide {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* İç konteyner */
.gallery-item-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  transform: none !important;
}

/* Resim stilleri */
.gallery-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

/* Hover efekti - sadece resim ölçeği */
.gallery-item:hover .gallery-image {
  transform: scale(1.1) !important;
}

/* Overlay */
.gallery-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(30, 67, 86, 0.8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

/* İçerik */
.gallery-info {
  text-align: center !important;
  padding: 20px !important;
  color: #fff !important;
  transform: translateY(10px) !important;
  transition: transform 0.4s ease, opacity 0.4s ease !important;
  opacity: 0 !important;
}

/* Hover durumunda */
.gallery-item:hover .gallery-overlay {
  opacity: 1 !important;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Içerik detayları */
.gallery-info h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
}

.gallery-info p {
  font-size: 14px !important;
  margin-bottom: 15px !important;
  opacity: 0.9 !important;
}

/* Lightbox düğmesi */
.gallery-popup {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: #fff !important;
  color: #1e4356 !important;
  border-radius: 50% !important;
  font-size: 16px !important;
  transition: background 0.3s ease, color 0.3s ease !important;
}

.gallery-popup:hover {
  background: #1e4356 !important;
  color: #fff !important;
}

/* MixItUp özel sınıfları */
.mix {
  display: block !important;
}

.mixitup-control-active {
  color: #fff !important;
}

/* Gallery Info Section */
.gallery-info-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.info-content {
  padding: 30px 0;
}

.info-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e4356;
}

.info-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.info-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.info-image:hover img {
  transform: scale(1.05);
}

/* Responsive ayarlar */
@media only screen and (max-width: 991px) {
  .gallery-hero-content h1 {
    font-size: 40px;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 20px !important;
  }

  .gallery-item {
    height: 250px !important;
  }
}

@media only screen and (max-width: 768px) {
  .gallery-hero {
    height: 40vh;
    min-height: 300px;
  }

  .gallery-hero-content h1 {
    font-size: 32px;
  }

  .gallery-hero-content p {
    font-size: 16px;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 14px;
    white-space: nowrap;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 15px !important;
  }

  .gallery-item {
    height: 200px !important;
  }
}

@media only screen and (max-width: 576px) {
  .gallery-hero-content h1 {
    font-size: 28px;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .gallery-item {
    height: 180px !important;
  }
}

/* ... existing code ... */

/* =============================================
   FOTO GALERİ SAYFASI - MIXITUP DÜZELTMELERİ
============================================= */

/* TEMEL LAYOUT - SABİT POZİSYONLAMA */
.gallery-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 30px !important;
  width: 100% !important;
  position: relative !important;
  transition: none !important;
  margin-bottom: 50px !important;
  overflow: visible !important;
}

/* GALERİ ÖĞELER - FİLTRELEME UYUMLU */
.gallery-item {
  width: 100% !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  position: static !important; /* Öğelerin pozisyonu static olmalı */
  height: 300px !important;
  transform: none !important; /* Transform özelliği yok */
  transition: opacity 0.4s ease !important; /* Sadece opacity değişimi */
  animation: none !important; /* Animasyon kapalı */
  top: auto !important;
  left: auto !important;
  display: block !important;
}

/* MIX SINIFI - MIXITUP GEREKLİLİĞİ */
.mix {
  display: block !important; /* Gizlemeden göster */
}

/* GİZLİ ÖĞELER */
.gallery-item.mixitup-hide {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* İÇ KONTEYNER */
.gallery-item-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  transform: none !important;
  background-color: #f9f9f9 !important; /* Resim yüklenmezse arka plan rengi */
}

/* RESİM STİLLERİ */
.gallery-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

/* HOVER EFEKTİ */
.gallery-item:hover .gallery-image {
  transform: scale(1.1) !important;
}

/* FİLTRELEME BUTONLARI */
.gallery-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-bottom: 40px !important;
  gap: 10px !important;
}

.filter-btn {
  background: transparent !important;
  color: #333 !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  cursor: pointer !important;
  z-index: 1 !important;
  margin: 0 5px 10px !important;
  outline: none !important;
}

.filter-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: #f5f5f5 !important;
  border-radius: 30px !important;
  z-index: -1 !important;
  transition: all 0.3s ease !important;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  background-color: #1e4356 !important;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff !important;
}

/* MixItUp plugin özel düzeltmeleri */
.mixitup-control-active {
  color: #fff !important;
}

/* ... existing code ... */

/* =============================================
   FOTO GALERİ - MIXITUP TEMEL DÜZELTMELER
============================================= */

/* Galeri konteyner */
.gallery-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 30px !important;
  width: 100% !important;
  margin-bottom: 50px !important;
  min-height: 300px !important;
}

/* Galeri öğeleri */
.gallery-item {
  width: 100% !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  height: 300px !important;
  background-color: #f9f9f9 !important;
  transition: opacity 0.4s ease !important;
  position: relative !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* MixItUp için kritik olan kısım */
.gallery-item.mixitup-hide {
  display: none !important;
}

/* Çok önemli */
.mix,
.gallery-item {
  display: block !important;
}

/* Galeri iç konteyner */
.gallery-item-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

/* Galeri görsel */
.gallery-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

/* Hover durumunda görsel */
.gallery-item:hover .gallery-image {
  transform: scale(1.1) !important;
}

/* Galeri overlay */
.gallery-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(30, 67, 86, 0.8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

/* Galeri içerik */
.gallery-info {
  text-align: center !important;
  padding: 20px !important;
  color: #fff !important;
  transform: translateY(10px) !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  opacity: 0 !important;
}

/* Hover durumunda overlay ve içerik */
.gallery-item:hover .gallery-overlay {
  opacity: 1 !important;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Filtre butonları */
.gallery-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-bottom: 40px !important;
  gap: 10px !important;
}

.filter-btn {
  background: transparent !important;
  color: #333 !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  cursor: pointer !important;
  z-index: 1 !important;
  margin: 0 5px 10px !important;
  outline: none !important;
}

.filter-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: #f5f5f5 !important;
  border-radius: 30px !important;
  z-index: -1 !important;
  transition: all 0.3s ease !important;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  background-color: #1e4356 !important;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff !important;
}

/* MixItUp'un aktif kontrol elementleri */
.mixitup-control-active {
  color: #fff !important;
}

/* ... existing code ... */
